:root {
  --green-bg: #0f2f1f;
  --green-bg-alt: #123524;
  --green-accent: #4caf50;
  --green-accent-soft: #7adf7f;
  --text-light: #f5f5f5;
  --text-muted: #c8e6c9;
  --charcoal: #333333;
  --light-gray: #f5f5f5;
  --white: #ffffff;

  /* Goldenrod CTA color */
  --gold: #DAA520;
  --gold-dark: #c4951d;
}

* {
  box-sizing: border-box;
}

/* Global body font */
body {
  font-family: 'Lora', serif;
}

/* Logo text */
.header-left .brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Navigation */
.header-center nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* Hero tagline */
.hero-tagline {
  font-family: 'Lora', serif;
  font-weight: 500;
  letter-spacing: 0.18em;
}

/* Hero headline */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Buttons */
.btn,
.btn-outline {
  font-family: 'Lora', serif;
  font-weight: 600;
}

/* HEADER */

header {
  background: var(--green-bg);
  color: var(--white);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-left img {
  /*height: 46px;*/
  height: 60px;
}

.header-left .brand-text {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 16px;
  /*text-transform: uppercase;*/
}

.header-center nav {
  display: flex;
  gap: 18px;
}

.header-center nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.header-center nav a:hover {
  color: var(--green-accent-soft);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-right img {
  height: 22px;
}

/* MOBILE NAV */

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
}

#mobileMenu {
  display: none;
  flex-direction: column;
  background: var(--green-bg);
  padding: 16px 24px;
  gap: 12px;
  transition: max-height 0.3s ease;
}

#mobileMenu a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 16px;
  padding: 6px 0;
}

#mobileMenu.open {
  display: flex;
}

/* HERO — Supreme Green Style */

.hero {
  position: relative;
  padding: 180px 20px;
  color: var(--text-light);
  overflow: hidden;

  /* Full background image */
  background-image: url("../images/hero/hero.jpg"); /* update path */
  /*background-image: url("https://picsum.photos/1600/900");*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Cinematic zoom */
  animation: heroZoom 18s ease-in-out infinite alternate;
}

/* Dark edges + bright center overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.20) 0%,   /* bright center */
      rgba(18, 53, 36, 0.00) 38%,     /* smooth transition */
      rgba(18, 53, 36, 0.65) 100%     /* dark edges */
    ),
    linear-gradient(
      to bottom,
      rgba(18, 53, 36, 0.35) 0%,
      rgba(18, 53, 36, 0.85) 100%
    );
}

/* Centered content */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Tagline */
.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Headline */
.hero-title {
  margin: 0;
  line-height: 1.05;
  font-size: 56px;
  font-weight: 700;
}

.hero-title-white {
  color: #ffffff;
}

.hero-title-green {
  color: var(--green-accent-soft);
  font-style: italic;
}

/* Subtitle */
.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 20px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Row */
.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* CTA Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(218, 165, 32, 0.15);
}

.hero-phone-icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* Zoom animation */
@keyframes heroZoom {
  from { background-size: 100%; }
  to   { background-size: 108%; }
}

/* SECTIONS */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section h1,
.section h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.section p {
  margin-top: 0;
  margin-bottom: 16px;
}

/* GRID CARDS */

.services-grid,
.gallery-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* GALLERY TABS */

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.gallery-tab-card {
  flex: 1 1 140px;
  min-width: 140px;
  background: var(--white);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.gallery-tab-card.active {
  border-color: var(--green-accent);
  background: #e8f5e9;
  color: var(--green-bg);
}

.gallery-category {
  display: none;
}

.gallery-category.active {
  display: grid;
}

/* TESTIMONIALS */

.testimonial-quote {
  font-style: italic;
  margin-bottom: 8px;
}

.testimonial-name {
  font-weight: 600;
}

/* FORM */

form.card {
  max-width: 600px;
}

form label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  margin-top: 10px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

form button {
  margin-top: 16px;
  border: none;
  cursor: pointer;
}

/* FOOTER */

footer {
  background: var(--green-bg);
  color: var(--text-light);
  text-align: center;
  padding: 18px 12px 24px;
  font-size: 13px;
}

.footer-social {
  /*margin-top: 10px;*/
  display: flex;
  align-items: center; /* Vertical center */
  justify-content: center;
  gap: 12px;
}

.footer-social img {
  height: 24px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .header-center nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 140px 20px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}
