/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #4a7c59;
  --green-light:#6aab7a;
  --green-dark: #2d4f38;
  --cream:      #f5f0e8;
  --dark:       #1e2a1e;
  --text:       #333;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Navigation ───────────────────────────────────────────── */
header {
  background: var(--green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  overflow: visible;
  position: relative;
  z-index: 10;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.logo-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  position: relative;
  top: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  height: 64px;
}

nav ul a {
  color: #fff;
  font-family: sans-serif;
  font-size: 0.92rem;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--cream); text-decoration: none; }

.btn-facebook {
  background: #1877f2 !important;
  color: #fff !important;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  font-size: 0.85rem;
}
.btn-facebook:hover { background: #1565d8; text-decoration: none !important; }

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff !important;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  font-size: 0.85rem;
}
.btn-instagram:hover { opacity: 0.85; text-decoration: none !important; }

.burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-bottom: 0.75rem;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-family: sans-serif;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover { background: var(--green-dark); text-decoration: none; color: #fff; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.9rem; }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-green { background: var(--cream); }
.section-dark { background: var(--dark); color: #eee; }
.section-dark h2 { color: #fff; }
.section-dark a { color: var(--green-light); }

.container { max-width: 1100px; margin: 0 auto; }

h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--green-dark);
  margin-bottom: 2.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--green-light);
  display: inline-block;
}

/* ── Two Column ───────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.text p { margin-bottom: 1rem; }

.info-box {
  background: var(--cream);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--green);
}
.info-box h3 { color: var(--green-dark); margin: 1.2rem 0 0.5rem; font-size: 1.05rem; }
.info-box h3:first-child { margin-top: 0; }
.info-box p { font-size: 0.95rem; }

/* ── Gallery ──────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── Cards ────────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 8px;
  border-top: 4px solid var(--green);
  text-align: center;
}

.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3 { color: var(--green-dark); margin-bottom: 0.75rem; }
.card p { margin-bottom: 1.25rem; font-size: 0.95rem; }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-info p { margin-bottom: 0.75rem; font-size: 1rem; }
.contact-info a { color: var(--green-light); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid #555;
  border-radius: 4px;
  background: #2a3a2a;
  color: #eee;
  font-family: sans-serif;
  font-size: 0.95rem;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #888; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-light);
}

/* ── Lightbox ─────────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  overflow: hidden;
}
#lightbox.active { display: flex; }

#lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

#lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}
#lightbox-close:hover { opacity: 1; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: #111;
  color: #888;
  text-align: center;
  padding: 1.5rem;
  font-family: sans-serif;
  font-size: 0.85rem;
}
footer a { color: #aaa; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 1.5rem;
    gap: 1rem;
    border-top: 1px solid #333;
  }
  nav ul.open { display: flex; }
  .burger { display: block; }

  .hero { height: 70vh; }
}
