/* ============================================
   RANU KUMBOLO - Main Stylesheet
   Theme: Natural Emerald Elegance
   ============================================ */

:root {
  --forest:       #1a3a2e;
  --forest-mid:   #2d5a45;
  --forest-light: #3d7a5e;
  --emerald:      #2ecc71;
  --emerald-soft: #4ade80;
  --jade:         #27ae60;
  --sage:         #7fb99a;
  --mist:         #d4ede3;
  --dew:          #eef7f2;
  --water:        #5b9bd5;
  --sky:          #87ceeb;
  --gold:         #f0c040;
  --cream:        #faf9f5;
  --text-dark:    #1c2b24;
  --text-mid:     #3d5c4a;
  --text-light:   #6b8c7a;
  --white:        #ffffff;
  --shadow-sm:    0 2px 12px rgba(26,58,46,0.08);
  --shadow-md:    0 8px 32px rgba(26,58,46,0.14);
  --shadow-lg:    0 20px 60px rgba(26,58,46,0.18);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--forest);
  line-height: 1.25;
}
.text-accent { color: var(--emerald); }
.text-forest { color: var(--forest); }

/* ============ NAVBAR ============ */
#mainNavbar {
  background: transparent;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#mainNavbar.scrolled {
  background: rgba(26, 58, 46, 0.97);
  backdrop-filter: blur(16px);
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.navbar-brand { text-decoration: none; }
.brand-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white;
  flex-shrink: 0;
}
.brand-text {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: white; letter-spacing: 0.3px;
}
.brand-sub {
  font-size: 0.65rem; color: rgba(255,255,255,0.6);
  font-weight: 300; letter-spacing: 0.5px;
}
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.875rem; font-weight: 500;
  padding: 6px 12px !important;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: white !important;
  background: rgba(255,255,255,0.1);
}
.nav-link.active::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--emerald);
}
.nav-admin-btn {
  border-color: rgba(255,255,255,0.5) !important;
  color: white !important;
  font-size: 0.8rem !important;
  transition: all var(--transition) !important;
}
.nav-admin-btn:hover {
  background: var(--emerald) !important;
  border-color: var(--emerald) !important;
  color: white !important;
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--forest);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Ranu_Kumbolo.jpg/1280px-Ranu_Kumbolo.jpg');
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroPan 20s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.05) translateX(0); }
  to   { transform: scale(1.08) translateX(-2%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,58,46,0.72) 0%,
    rgba(26,58,46,0.45) 50%,
    rgba(26,58,46,0.7) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,204,113,0.18); border: 1px solid rgba(46,204,113,0.4);
  backdrop-filter: blur(8px);
  color: var(--emerald-soft); font-size: 0.8rem; font-weight: 500;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.hero-badge i { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: white; font-weight: 700;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}
.hero h1 .highlight {
  color: var(--emerald-soft);
  display: block;
}
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 580px; margin-bottom: 2rem; font-weight: 300;
}
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stat {
  display: flex; flex-direction: column;
  border-left: 2px solid var(--emerald);
  padding-left: 12px;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: white; line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.72rem; color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-top: 2px;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--emerald), var(--jade));
  border: none; color: white;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(46,204,113,0.35);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(46,204,113,0.45);
  color: white;
}
.btn-hero-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5); color: white;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 500; font-size: 0.95rem;
  transition: all var(--transition);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white; color: white;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero-scroll span {
  font-size: 0.65rem; color: rgba(255,255,255,0.5);
  letter-spacing: 2px; text-transform: uppercase;
}
.scroll-dot {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3); border-radius: 100px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot::before {
  content: '';
  width: 4px; height: 8px;
  background: var(--emerald); border-radius: 100px;
  animation: scrollBounce 1.6s infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity:1; }
  50% { transform: translateY(10px); opacity:0.3; }
}

/* ============ SECTION COMMONS ============ */
section { padding: 96px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--jade); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before, .section-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--jade));
}
.section-label::before { background: linear-gradient(to left, transparent, var(--jade)); }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--forest); margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem; color: var(--text-light);
  max-width: 560px; margin: 0 auto;
}
.divider-leaf {
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--emerald), var(--jade));
  border-radius: 100px; margin: 16px 0;
}
.divider-leaf.mx-auto { margin-left: auto; margin-right: auto; }

/* ============ FEATURE CARDS ============ */
.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(46,204,113,0.08);
  transition: all var(--transition);
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46,204,113,0.2);
}
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--dew), var(--mist));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--jade);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--jade), var(--emerald));
  color: white;
}
.feature-card h5 { color: var(--forest); margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ============ GALLERY GRID ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,46,0.85) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content h6 {
  color: white; font-family: 'Playfair Display', serif;
  margin-bottom: 4px; font-size: 1rem;
}
.gallery-overlay-content span {
  color: var(--emerald-soft); font-size: 0.75rem;
}
.gallery-overlay .gallery-zoom {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-zoom { background: var(--emerald); }

/* ============ INFO STRIP ============ */
.info-strip {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: white; padding: 60px 0;
}
.info-strip-item {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.info-strip-item:last-child { border-right: none; }
.info-strip-item i { font-size: 2rem; color: var(--emerald); margin-bottom: 12px; display: block; }
.info-strip-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: white; line-height: 1;
}
.info-strip-item .lbl {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 4px;
}

/* ============ TESTIMONIAL / BUKU TAMU ============ */
.testimonial-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid rgba(46,204,113,0.1);
  transition: all var(--transition); height: 100%;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--emerald);
}
.t-quote { color: var(--emerald); font-size: 2.5rem; line-height: 1; margin-bottom: 12px; font-family: Georgia; }
.t-text { color: var(--text-mid); font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--jade), var(--forest-mid));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.95rem;
  flex-shrink: 0;
}
.t-name { font-weight: 600; color: var(--forest); font-size: 0.9rem; }
.t-origin { font-size: 0.78rem; color: var(--text-light); }
.t-stars { color: var(--gold); font-size: 0.8rem; }

/* ============ CTA SECTION ============ */
.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--forest) 0%, #0f2318 100%);
  padding: 100px 0;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1478432780021-b8d273730d8c?w=1200');
  background-size: cover; background-position: center;
  opacity: 0.12;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 2rem; }

/* ============ ABOUT PAGE ============ */
.about-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.about-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.about-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(26,58,46,0.9); backdrop-filter: blur(8px);
  color: white; padding: 10px 16px; border-radius: 10px;
  font-size: 0.8rem;
}
.about-img-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--emerald); font-weight: 700;
}
.timeline-item {
  display: flex; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid rgba(46,204,113,0.1);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--dew), var(--mist));
  display: flex; align-items: center; justify-content: center;
  color: var(--jade); font-size: 1.2rem; flex-shrink: 0;
}
.timeline-content h6 { color: var(--forest); font-weight: 600; margin-bottom: 4px; }
.timeline-content p { color: var(--text-light); font-size: 0.875rem; margin: 0; }

/* ============ CONTACT PAGE ============ */
.contact-hero {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-light) 100%);
  padding: 140px 0 70px;
}
.contact-card {
  background: white; border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--mist);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--dew); color: var(--jade);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-item h6 { color: var(--forest); font-weight: 600; margin-bottom: 4px; }
.contact-info-item p { color: var(--text-light); font-size: 0.875rem; margin: 0; }

/* ============ FORM STYLES ============ */
.form-label { font-weight: 500; color: var(--text-mid); font-size: 0.875rem; }
.form-control, .form-select {
  border: 1.5px solid rgba(46,204,113,0.2);
  border-radius: 10px; padding: 10px 14px;
  font-size: 0.9rem; color: var(--text-dark);
  background: var(--dew);
  transition: all var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(46,204,113,0.12);
  background: white;
}
.btn-green {
  background: linear-gradient(135deg, var(--jade), var(--forest-mid));
  color: white; border: none;
  padding: 12px 28px; border-radius: 10px;
  font-weight: 600; font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(39,174,96,0.35);
  color: white;
}

/* ============ BUKU TAMU ============ */
.bt-page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, #0d2818 100%);
  padding: 140px 0 70px;
}
.guestbook-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid rgba(46,204,113,0.1);
  transition: all var(--transition); height: 100%;
}
.guestbook-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(46,204,113,0.25);
}
.guestbook-card .card-header-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.gb-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--jade), var(--forest));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.gb-name { font-weight: 600; color: var(--forest); }
.gb-meta { font-size: 0.77rem; color: var(--text-light); }
.gb-message { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; }
.gb-quote { color: var(--emerald); font-size: 2rem; font-family: Georgia; }
.gb-rating { color: var(--gold); font-size: 0.85rem; }
.gb-write-card {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  border-radius: var(--radius-lg); padding: 36px; color: white;
}
.gb-write-card h4 { color: white; margin-bottom: 0.5rem; }
.gb-write-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1.5rem; }
.gb-write-card .form-control,
.gb-write-card .form-select {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}
.gb-write-card .form-control::placeholder { color: rgba(255,255,255,0.4); }
.gb-write-card .form-control:focus,
.gb-write-card .form-select:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(46,204,113,0.15);
  color: white;
}
.gb-write-card .form-label { color: rgba(255,255,255,0.8); }
.gb-write-card option { color: var(--text-dark); background: white; }

/* ============ PAGE HERO COMMONS ============ */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
}
.page-hero h1 {
  color: white; font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.breadcrumb-item a { color: var(--sage); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ============ ALERT MESSAGES ============ */
.alert-nature {
  border-radius: 10px; border: none;
  padding: 14px 18px; font-size: 0.875rem;
}
.alert-success { background: var(--dew); color: var(--forest); border-left: 4px solid var(--emerald); }
.alert-danger { background: #fff5f5; color: #c62828; border-left: 4px solid #f44336; }

/* ============ BADGE ============ */
.badge-nature {
  background: var(--dew); color: var(--jade);
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid rgba(46,204,113,0.2);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.75);
}
.footer-top { padding: 70px 0 50px; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: white;
  display: flex; align-items: center;
}
.footer-desc { font-size: 0.875rem; line-height: 1.7; max-width: 300px; color: rgba(255,255,255,0.6); }
.footer-heading {
  color: var(--emerald); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 1rem; font-weight: 600;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li {
  padding: 5px 0; font-size: 0.875rem;
  display: flex; align-items: center;
  color: rgba(255,255,255,0.6);
}
.footer-links a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: color var(--transition);
  display: flex; align-items: center;
}
.footer-links a:hover { color: var(--emerald); }
.footer-note {
  background: rgba(255,255,255,0.06); border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5); font-size: 0.78rem;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 1rem;
  text-decoration: none; transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: var(--emerald); color: white; border-color: var(--emerald); }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-admin-link { color: rgba(255,255,255,0.4); text-decoration: none; transition: color var(--transition); }
.footer-admin-link:hover { color: var(--emerald); }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--jade); color: white; border: none;
  box-shadow: var(--shadow-md); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(12px);
  transition: all var(--transition); z-index: 999;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--forest); transform: translateY(-3px); }

/* ============ ADMIN ============ */
.admin-sidebar {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--forest) 0%, #0f2318 100%);
  padding: 0;
  width: 260px;
  position: fixed; top: 0; left: 0;
  z-index: 100; overflow-y: auto;
}
.admin-content { margin-left: 260px; min-height: 100vh; background: #f4f7f5; }
.admin-logo {
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-logo h5 { color: white; font-family: 'Playfair Display', serif; margin: 0; }
.admin-logo small { color: var(--sage); font-size: 0.72rem; }
.admin-nav { padding: 16px 0; }
.admin-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 24px;
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav-link i { width: 18px; text-align: center; }
.admin-nav-link:hover, .admin-nav-link.active {
  background: rgba(255,255,255,0.07);
  color: white; border-left-color: var(--emerald);
}
.admin-section-label {
  padding: 14px 24px 6px;
  font-size: 0.65rem; color: rgba(255,255,255,0.3);
  letter-spacing: 2px; text-transform: uppercase;
}
.admin-topbar {
  background: white; padding: 16px 32px;
  border-bottom: 1px solid #e8f0ec;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-topbar h4 { color: var(--forest); margin: 0; font-size: 1.2rem; }
.stat-card {
  background: white; border-radius: var(--radius);
  padding: 24px; border-left: 4px solid var(--emerald);
  transition: all var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-card .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--forest);
}
.stat-card .stat-lbl { font-size: 0.8rem; color: var(--text-light); }
.stat-card i { font-size: 1.8rem; color: var(--jade); }
.admin-table { background: white; border-radius: var(--radius); overflow: hidden; }
.admin-table table { margin: 0; }
.admin-table thead th { background: var(--dew); color: var(--forest); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; border: none; padding: 14px 16px; }
.admin-table tbody td { padding: 13px 16px; font-size: 0.875rem; border-color: var(--mist); vertical-align: middle; }
.admin-table tbody tr:hover { background: var(--dew); }
.badge-pending { background: #fff3cd; color: #856404; }
.badge-approved { background: var(--dew); color: var(--jade); }
.badge-rejected { background: #f8d7da; color: #842029; }
.admin-login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--forest) 0%, #0f2318 100%);
  display: flex; align-items: center; justify-content: center;
}
.login-card {
  background: white; border-radius: var(--radius-lg);
  padding: 48px 40px; width: 100%; max-width: 400px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}

/* ============ GALLERY PAGE ============ */
.gallery-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid rgba(46,204,113,0.2);
  background: white; color: var(--text-mid);
  font-size: 0.82rem; font-weight: 500; cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--jade); color: white; border-color: var(--jade);
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-page-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-page-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-page-item:hover img { transform: scale(1.05); }
.gallery-page-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,46,0.9) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
  padding: 16px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.gallery-page-item:hover .gallery-page-overlay { opacity: 1; }
.gallery-page-overlay h6 { color: white; margin-bottom: 2px; font-size: 0.95rem; }
.gallery-page-overlay small { color: var(--emerald-soft); font-size: 0.75rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .info-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .admin-sidebar { position: static; width: 100%; min-height: auto; }
  .admin-content { margin-left: 0; }
}
@media (max-width: 767px) {
  section { padding: 64px 0; }
  .hero h1 { font-size: 2.4rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .hero-stats { gap: 1.2rem; }
  .login-card { padding: 32px 24px; }
}
