body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: linear-gradient(180deg, #F7F4EA 0%, #EAF3E4 45%, #DDECD8 100%);
  color: #2E3A2F;
}

header {
  background: rgba(46, 94, 78, 0.92);
  color: white;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.brand h1 {
  margin: 0;
  font-size: 28px;
  color: white;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.75;
}

.hero {
  background: linear-gradient(rgba(34, 55, 40, 0.45), rgba(34, 55, 40, 0.45)),
    url("images/images-garden-hero.jpg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 140px 20px;
  text-align: center;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #FFFDF7;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.hero p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #F8F5EA;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.hero-button,
.workshop-button,
.contact-button,
.dynamic-form button {
  display: inline-block;
  background: #2E5E4E;
  color: white;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font: inherit;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-button {
  background: #C9A227;
  padding: 14px 28px;
}

.hero-button:hover,
.workshop-button:hover,
.contact-button:hover,
.dynamic-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

section {
  padding: 90px 8%;
  max-width: 1100px;
  margin: 0 auto;
}

section h2 {
  font-size: 36px;
  color: #2E5E4E;
  margin-bottom: 18px;
}

section p,
section li {
  line-height: 1.8;
}

.about-intro {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
}

.about-intro p {
  font-size: 18px;
  line-height: 1.9;
}

.about-grid,
.project-grid,
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.about-card,
.project-card,
.workshop-card,
.contact-box,
.dynamic-form {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.workshop-card {
  background: rgba(238, 248, 239, 0.92);
  border: 1px solid #d7e8d9;
}

.about-card h3,
.project-card h3,
.workshop-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #2E5E4E;
  font-size: 24px;
}

.about-card p,
.project-card p,
.workshop-card p,
.contact-box p {
  margin: 0 0 12px;
  color: #4b5563;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.youtube-button {
  background: #c4302b;
}

.facebook-button {
  background: #1877f2;
}

.project-card,
.workshop-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover,
.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.project-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.video-frame {
  max-width: 900px;
  margin: 24px auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.video-grid .video-frame {
  margin: 0;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
}

.dynamic-form {
  display: grid;
  gap: 16px;
}

.dynamic-form label {
  display: grid;
  gap: 8px;
  color: #2E5E4E;
  font-weight: 600;
}

.dynamic-form input,
.dynamic-form select,
.dynamic-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd8ca;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: #2E3A2F;
  background: white;
}

.dynamic-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 600;
  color: #2E5E4E;
}

footer {
  background: #2E5E4E;
  color: white;
  text-align: center;
  padding: 50px 20px;
  margin-top: 60px;
}

.footer-content {
  max-width: 700px;
  margin: 0 auto;
}

.footer-content h3 {
  margin-top: 0;
  font-size: 28px;
  margin-bottom: 12px;
}

.footer-content p {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 14px 0;
}

.footer-social-links a {
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.footer-social-links a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    justify-content: center;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero h2 {
    font-size: 34px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }
}
/* ---------- Mobile Responsive Fix ---------- */

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
}

/* Tablet */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .brand {
    flex-direction: column;
    gap: 10px;
  }

  .brand h1 {
    font-size: 28px;
  }

  nav {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    font-size: 15px;
  }

  .hero {
    min-height: 70vh;
    padding: 80px 20px;
    text-align: center;
  }

  .hero-content h2 {
    font-size: 36px;
    line-height: 1.2;
  }

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

  section {
    padding: 60px 20px;
  }

  section h2 {
    font-size: 32px;
  }

  .about-container,
  .project-grid,
  .gallery-grid,
  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .about-card,
  .project-card,
  .workshop-card,
  .contact-box {
    padding: 25px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .site-logo {
    width: 80px;
  }

  .brand h1 {
    font-size: 24px;
  }

  .hero-content h2 {
    font-size: 30px;
  }

  .hero-button,
  .contact-button,
  .workshop-card a,
  button {
    width: 100%;
    display: block;
    text-align: center;
  }

  footer {
    padding: 50px 20px;
  }

  .footer-content h3 {
    font-size: 26px;
  }

  .footer-content p {
    font-size: 15px;
    word-break: break-word;
  }
}
