/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2b2b2b;
  line-height: 1.6;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('images/hero-vegetables.jpg') center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  color: white;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 20px;
  opacity: 0.9;
  margin-top: 10px;
}
.tagline {
  font-size: 20px;
  opacity: 0.9;
  margin-top: 12px;
  line-height: 1.4;
}

/* SECTIONS */
section {
  padding: 80px 20px;
}

/* ABOUT */
.about {
  background: #f5f2ed;
}

.about-container {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
}

.about h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #c4a484;
  margin-top: 10px;
}

.about p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

/* GALLERY */
.gallery {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* CONTACT */
.contact {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.contact-card {
  background: #f5f2ed;
  padding: 30px;
  border-radius: 12px;
  display: inline-block;
  text-align: center;
  line-height: 2;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-card p {
  margin-bottom: 8px;
}

.contact-card a {
  color: #2b2b2b;
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  background: #f0ebe5;
  font-size: 14px;
  color: #555;
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-card {
    text-align: center;
  }
}