/* Hero */
.hero {
  position: relative;
  height: 90vh;
  background: url('../img/hero.jpg') center/cover no-repeat; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(0,0,0,0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  color: #ffffff;
  /*padding: 0 16px;*/
  background-color: rgba(0,0,0,0.6);
  padding:1em;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.2;
  word-break: break-word;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.btn-primary {
  background-color: #ec4899;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #d02678;
}

/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 64px 0;
}

.about-text {
  flex: 1;
  min-width: 300px;
  font-size:1.25em;
  padding:16px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.embedded-map {
  flex: 1;
  min-width: 300px;
}

.embedded-map iframe {
  width: 100%;
  max-width: 100%;
  height: 350px; /* adjust as needed */
  border: 0;
  display: block;
}

/* Shop Section */
.info {
  padding: 64px 0;
  text-align: center;
}

.info h2 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /*grid-template-columns: repeat(auto-fit, minmax(250px, max-content));*/
  gap: 24px;

  justify-content: center;
  justify-items: center; 
  padding-inline: 24px;
}

.info-item {
  background-color: rgb(212, 199, 173);
  max-width: 320px;
  width: 100%;
  padding: 16px;
  padding-bottom: 5em;
}

.info-item img {
  width: 100%;
  border-radius: 8px;
}

.info-item h3 {
  margin-top: 12px;
  font-size: 1.2rem;
}

.info-item p {
  margin-top: 4px;
  color: #000;
  font-weight: bold;
}

/* Testimonials */
/*
.testimonials {
  padding: 64px 0;
  background-color: #fff1f2;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.testimonial {
  background-color: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial p {
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 12px;
  font-weight: bold;
  color: #ec4899;
}
*/

/* Contact Section */
/*.contact {
  padding: 64px 0;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact p {
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  align-self: center;
}*/
