/* ========== BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
#navbar {
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 95, 70, 0.08);
}

#navbar.scrolled {
  background: rgba(255, 248, 240, 0.95);
  box-shadow: 0 4px 30px rgba(6, 95, 70, 0.08);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F59E0B;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ========== BUTTONS ========== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #065f46;
  color: #FFF8F0;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #065f46;
  cursor: pointer;
}

.cta-btn:hover {
  background: #047857;
  border-color: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 95, 70, 0.3);
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #065f46;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #065f46;
  cursor: pointer;
}

.cta-btn-outline:hover {
  background: #065f46;
  color: #FFF8F0;
  transform: translateY(-2px);
}

/* ========== MOBILE MENU ========== */
#mobile-menu {
  max-height: 0;
}

#mobile-menu.open {
  max-height: 400px;
}

.mobile-nav-link {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(6, 95, 70, 0.08);
}

/* ========== HERO GEOMETRIC SHAPES ========== */
.geo-shape {
  position: absolute;
  pointer-events: none;
}

.shape-circle-1 {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: #d1fae5;
  border-radius: 50%;
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}

.shape-circle-2 {
  top: 60%;
  left: 2%;
  width: 120px;
  height: 120px;
  background: #a7f3d0;
  border-radius: 50%;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite reverse;
}

.shape-square-1 {
  top: 15%;
  right: 48%;
  width: 80px;
  height: 80px;
  background: #F59E0B;
  opacity: 0.25;
  border-radius: 16px;
  transform: rotate(45deg);
  animation: spin 20s linear infinite;
}

.shape-triangle-1 {
  bottom: 20%;
  right: 45%;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid #6ee7b7;
  opacity: 0.2;
  animation: float 10s ease-in-out infinite;
}

.shape-ring-1 {
  top: 40%;
  left: 42%;
  width: 60px;
  height: 60px;
  border: 4px solid #34d399;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 7s ease-in-out infinite reverse;
}

.shape-dots {
  bottom: 10%;
  left: 8%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, #065f46 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes spin {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

/* ========== SCROLL LINE ========== */
.scroll-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, #065f46);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -40%; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ========== EXPERIENCE CARDS ========== */
.exp-card {
  position: relative;
}

/* ========== MENU CARDS ========== */
.menu-card {
  position: relative;
}

/* ========== GALLERY ========== */
.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 95, 70, 0);
  transition: background 0.3s ease;
  border-radius: inherit;
}

.gallery-item:hover::after {
  background: rgba(6, 95, 70, 0.1);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .scroll-line {
    animation: none;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .shape-circle-1 {
    width: 120px;
    height: 120px;
  }

  .shape-circle-2 {
    width: 80px;
    height: 80px;
  }

  .shape-square-1 {
    width: 50px;
    height: 50px;
  }
}
