/* palette: teal-gold */
:root {
  --primary-color: #004D40;
  --secondary-color: #006B5C;
  --accent-color: #C9A227;
  --background-color: #F0FAFE;
  --dark-color: #111111;
  --text-color: #333333;
  --border-color: rgba(0,0,0,0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
  --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px; --radius-xl: 32px;
  --main-font: 'Nunito', sans-serif;
  --alt-font: 'DM Sans', sans-serif;
}

/* Base resets and Typography */
body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
}

h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
}

h3 {
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 600;
}

p {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
}

/* BOLD-GEOMETRIC Presets copied literally */
section{padding:56px 16px;margin:0} @media(min-width:1024px){section{padding:64px 24px}} #hero{clip-path:polygon(0 0,100% 0,100% 92%,0 100%)} section:nth-child(even){clip-path:polygon(0 3%,100% 0,100% 97%,0 100%)} .btn{width:100%;max-width:360px;display:block;margin:0 auto} h2{font-size:clamp(2rem,5vw,3.2rem)}

#contact-faq {
  padding-top: 80px;
}
/* Header & Navigation (CSS-only Burger) */
header {
  background: var(--primary-color);
  padding: 16px;
  color: white;
  position: relative;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 40px;
  width: auto;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 30px;
  height: 24px;
  justify-content: space-between;
  z-index: 1000;
}

.burger-btn .bar {
  height: 3px;
  background: white;
  width: 100%;
  transition: transform 0.3s, opacity 0.3s;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--secondary-color);
  z-index: 999;
  padding: 24px;
}

.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-nav a {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.15s;
}

.site-nav a:hover {
  color: var(--accent-color);
}

#menu-toggle:checked ~ .site-nav {
  display: block;
}

#menu-toggle:checked ~ .burger-btn .bar:first-child {
  transform: translateY(9px) rotate(45deg);
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked ~ .burger-btn .bar:last-child {
  transform: translateY(-10px) rotate(-45deg);
}

@media(min-width:768px) {
  .burger-btn {
    display: none;
  }
  .site-nav {
    display: flex !important;
    position: static;
    background: transparent;
    padding: 0;
  }
  .site-nav ul {
    flex-direction: row;
    gap: 24px;
  }
}

/* Hero Section (stats-anchored) */
#hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px 16px;
  z-index: 2;
}

.hero-stats-bar {
  background: var(--primary-color);
  width: 100%;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
  z-index: 2;
  border-top: 2px solid var(--accent-color);
}

@media(min-width: 768px) {
  .hero-stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Animations (CSS-only Counters using @property) */
@property --count {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

.stat-num {
  --target: 80;
  animation: count-up 2s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 60%;
  counter-reset: n var(--count);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  font-family: var(--main-font);
}

.stat-num::after {
  content: counter(n);
}

@keyframes count-up {
  from { --count: 0; }
  to { --count: var(--target); }
}

/* Sections & Cards styling */
section {
  background-color: var(--background-color);
}

.section-alt {
  background-color: #FFFFFF;
}

.section-dark {
  background-color: var(--primary-color);
  color: white;
}

.card {
  background: #FFFFFF;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

/* Scroll-reveal */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

/* Buttons */
.btn {
  padding: 12px 32px;
  font-family: var(--main-font);
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  min-height: 44px;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #111111;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,162,39,0.4);
}

/* About Section */
.about-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid var(--accent-color);
}

.bullet-icon {
  color: var(--accent-color);
  font-weight: bold;
}

/* Stats Counter Section specific */
.stat-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 3px solid var(--accent-color);
  border-radius: var(--radius-sm);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .main-img {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* Forms & Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--alt-font);
  background-color: #FFFFFF;
  color: var(--dark-color);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

/* FAQ Section */
.faq-item {
  border-left: 4px solid var(--accent-color);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 48px 16px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

footer img[alt="logo"] {
  filter: brightness(0) invert(1);
  max-height: 40px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media(min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-nav {
    flex-direction: row;
    gap: 24px;
  }
}