/* ============================================================
   Anna's Garden - Earth Tone Green & Beige Theme
   ============================================================ */

/* --- CSS Variables (Earth Tone Palette) --- */
:root {
  --green-dark: #2D4A2D;
  --green-primary: #4A7B4A;
  --green-medium: #6B9E6B;
  --green-light: #8FB88F;
  --green-pale: #D4E8D4;

  --beige-dark: #C4B59A;
  --beige-primary: #E8DCC8;
  --beige-light: #F5F0E8;
  --beige-pale: #FAF7F2;

  --brown-accent: #8B7355;
  --brown-warm: #A0845C;

  --text-dark: #2C3E2C;
  --text-medium: #4A5F4A;
  --text-light: #F5F0E8;

  --shadow-sm: 0 2px 8px rgba(45, 74, 45, 0.08);
  --shadow-md: 0 4px 20px rgba(45, 74, 45, 0.12);
  --shadow-lg: 0 8px 40px rgba(45, 74, 45, 0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.3s ease;
  --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Georgia', 'Times New Roman', serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--beige-pale);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green-dark);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--text-medium);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--green-primary);
  margin: 16px auto 24px;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font-primary);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--green-primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--beige-primary);
  color: var(--green-dark);
  border: 2px solid var(--green-primary);
}

.btn-secondary:hover {
  background: var(--green-primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}

.btn-outline:hover {
  background: var(--green-primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 123, 74, 0.15);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige-light);
  font-size: 1.2rem;
}

.logo span {
  color: var(--green-primary);
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-list li a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: all var(--transition);
  position: relative;
}

.nav-list li a:hover,
.nav-list li a.active {
  color: var(--green-dark);
  background: rgba(74, 123, 74, 0.08);
}

.nav-list li a.active {
  color: var(--green-primary);
  font-weight: 600;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-medium) 100%);
}

/* Hero background image with overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  
  inset: 0;
  
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  
  pointer-events: none;
}

.hero-content {
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  padding: 0 24px;
  position: relative;
  z-index: 1;

}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 8px;
  margin-top: 100px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-content .tagline {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 8px;
  opacity: 0.9;
  -webkit-text-stroke: 2px black;
  ;
}

.hero-content .subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  background: var(--beige-light);
  color: var(--green-dark);
  font-weight: 600;
}

.hero-buttons .btn:hover {
  background: var(--beige-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-buttons .btn-outline-light {
  background: transparent;
  color: var(--beige-light);
  border: 2px solid var(--beige-light);
}

.hero-buttons .btn-outline-light:hover {
  background: var(--beige-light);
  color: var(--green-dark);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

.scroll-indicator .arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================================
   ABOUT / HOME INTRO
   ============================================================ */
.home-intro {
  background: var(--beige-pale);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--green-pale);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 4rem;
  position: relative;
}

.intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 123, 74, 0.1), transparent);
}

.intro-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.intro-text p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.intro-text .btn {
  margin-top: 8px;
}

/* ============================================================
   FEATURES / HIGHLIGHTS
   ============================================================ */
.features {
  background: var(--beige-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--beige-pale);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(74, 123, 74, 0.08);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74, 123, 74, 0.2);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--green-primary);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ============================================================
   VOLUNTEER PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--text-light);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  margin-bottom: 12px;
  position: relative;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.volunteer-opportunities {
  background: var(--beige-pale);
}

.opportunity-list {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.opportunity-card {
  background: var(--beige-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-primary);
  transition: all var(--transition);
}

.opportunity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.opportunity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.opportunity-card .meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--brown-accent);
}

.opportunity-card .meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.opportunity-card p {
  color: var(--text-medium);
  margin-bottom: 16px;
}

.volunteer-cta {
  text-align: center;
  margin-top: 48px;
  padding: 48px;
  background: var(--beige-primary);
  border-radius: var(--radius-lg);
}

.volunteer-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.volunteer-cta p {
  color: var(--text-medium);
  margin-bottom: 24px;
}

/* ============================================================
   BOARD MEMBERS PAGE
   ============================================================ */
.board-page {
  background: var(--beige-pale);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.board-card {
  background: var(--beige-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
  border: 1px solid rgba(74, 123, 74, 0.08);
}

.board-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74, 123, 74, 0.2);
}

.board-card-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 32px auto 16px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--green-primary);
  overflow: hidden;
}

.board-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.board-card .role {
  color: var(--brown-accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.board-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  padding: 0 24px 32px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page {
  background: var(--beige-pale);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green-primary);
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 74, 45, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--beige-light);
  font-size: 1.1rem;
  font-weight: 500;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  background: var(--beige-pale);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  background: var(--beige-light);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-primary);
}

.contact-info-item h4 {
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--beige-light);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--beige-pale);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================================
   LINKS PAGE
   ============================================================ */
.links-page {
  background: var(--beige-pale);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.link-card {
  background: var(--beige-light);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(74, 123, 74, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-primary);
}

.link-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-primary);
}

.link-card-content h3 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.link-card-content p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.link-card-content a {
  color: var(--green-primary);
  font-weight: 500;
  word-break: break-all;
}

.link-card-content a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-dark);
  color: var(--beige-light);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.footer-about p {
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--beige-primary);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.footer-links ul li a:hover {
  color: var(--beige-primary);
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-bottom a {
  color: inherit;
}

.footer-bottom a:hover {
  color: inherit;
  text-decoration: underline;
}

/* ============================================================
   PAGE HEADER (for inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  padding: 120px 0 60px;
  text-align: center;
  color: var(--text-light);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-content .tagline {
    font-size: 1.1rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-image {
    order: -1;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-header h1,
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobile Navigation */
  .menu-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(245, 240, 232, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid var(--green-primary);
  }

  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-list li a {
    display: block;
    padding: 14px 20px;
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .board-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 16px;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
