
/* style.css — State-of-the-Art 2026 Edition (Corrected) */
/* Earthy Minimalism + Nigerian Indigenous Flair + Modern UI/UX */

:root {
  /* Refined 2026 Earthy Palette */
  --terracotta: #E27D60;      /* Vibrant clay */
  --terracotta-dark: #C06A4E;
  --forest: #2E5A3E;           /* Deep Nasarawa green */
  --forest-light: #4A7C59;
  --cream: #FDFBF7;            /* Warm off-white */
  --ochre: #D4A373;            /* Accent highlight */
  --text-dark: #2C2B28;
  --text-soft: #4A4640;
  --bg-light: #F7F4EF;
  
  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 15px 30px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --border-radius-card: 16px;
  --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
img { max-width: 100%; display: block; }

/* ---------- Image Classes (replacing inline styles) ---------- */
.img-intro {
  max-height: 280px;
  width: 100%;
  object-fit: cover;
}
.img-village {
  max-height: 200px;
  width: 100%;
  object-fit: cover;
}
.footer-motif-img {
  height: 60px;
  border-radius: 30px;
}
.img-history-main {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}
.img-history-arch {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}
.img-pottery {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.img-agriculture,
.img-festival {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.img-contact-village,
.img-contact-arch {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}

/* ---------- Sticky Navigation (Glassmorphism) ---------- */
.navbar {
  background: rgba(253, 251, 247, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 163, 115, 0.2);
  padding: 0.8rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.brand-main { color: var(--terracotta); }
.brand-sep { color: var(--ochre); font-weight: 300; margin: 0 4px; }
.brand-sub { color: var(--forest); }
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--text-soft) !important;
  padding: 0.5rem 1rem !important;
  margin: 0 0.2rem;
  border-radius: 40px;
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--terracotta) !important;
  background: rgba(226, 125, 96, 0.08);
}

/* ---------- Hero Section (Modern Overlay) ---------- */
.hero-modern {
  position: relative;
  min-height: 100vh;
  width: 100%;
  color: white;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(46, 90, 62, 0.7) 0%, rgba(226, 125, 96, 0.5) 100%);
}
.z-2 { z-index: 2; position: relative; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-title-modern {
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}
.hero-description {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.btn-primary {
  background: var(--terracotta);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(226, 125, 96, 0.4);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(226, 125, 96, 0.5);
}
.btn-outline-light {
  border: 2px solid white;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}
.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid white;
  border-radius: 20px;
  display: inline-block;
  position: relative;
}
.wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ---------- Glass Cards & Bento Grid ---------- */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 163, 115, 0.2);
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(226, 125, 96, 0.3);
  background: rgba(255, 255, 255, 0.8);
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.bento-item {
  padding: 2rem 1.8rem;
  border-radius: var(--border-radius-card);
}
.bento-item-1 { grid-column: span 2; grid-row: span 1; }
.bento-item-2 { grid-column: span 1; grid-row: span 1; }
.bento-item-3 { grid-column: span 1; grid-row: span 1; }
.bento-item-4 { grid-column: span 2; grid-row: span 1; }
.bento-item-large { grid-column: span 2; grid-row: span 2; }
.bento-icon {
  font-size: 2.5rem;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.gallery-card {
  background: var(--cream);
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  overflow: hidden;
}
.gallery-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-image img {
  transform: scale(1.05);
}

/* Page Hero Subpages */
.page-hero-modern {
  background: linear-gradient(135deg, #FDFBF7 0%, #F0EADE 100%);
  padding: 8rem 0 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(226, 125, 96, 0.15);
}

/* Footer */
.footer-modern {
  background: #2C2B28;
  color: #FDFBF7;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--ochre);
}
.footer-link {
  color: #AAA;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--terracotta); }
.social-links a {
  color: white;
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--terracotta); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-item-1, .bento-item-4 { grid-column: span 2; }
}
@media (max-width: 768px) {
  .navbar-brand { font-size: 1.5rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item-1, .bento-item-2, .bento-item-3, .bento-item-4 { grid-column: span 1; }
  .hero-title-modern { font-size: 3rem; }
}