@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Saffron — used for text, buttons, accents (NOT large backgrounds) */
  --primary:       #C05008;
  --primary-dark:  #8C3800;
  --primary-light: #E06820;

  /* Deep maroon for Shivaji section */
  --maroon:        #7B1020;
  --maroon-dark:   #540A15;

  /* Gold */
  --gold:          #C99010;
  --gold-light:    #F5C840;
  --gold-pale:     #FFF6D0;

  /* Light backgrounds */
  --bg:            #FFFFFF;
  --bg-warm:       #FFF8F0;
  --bg-soft:       #FFF3E0;
  --white:         #FFFFFF;

  /* Text */
  --text:          #1C0800;
  --text-light:    #5A2800;
  --text-muted:    #9B6030;

  /* Borders — soft gold */
  --border:        #EDCF8A;
  --border-light:  #F8E8C0;

  /* Shadows — very soft */
  --shadow-sm:  0 1px 6px  rgba(0,0,0,0.07);
  --shadow:     0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.14);

  --radius:    14px;
  --radius-sm:  9px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans Devanagari', 'Mangal', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
}

/* ── Navigation ── */
.navbar {
  background: #FFFFFF;
  border-bottom: 2px solid var(--border-light);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-size: 0.9rem;
  white-space: nowrap;
  font-weight: 500;
}

.nav-links a:hover { background: var(--bg-warm); color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
  outline: none;
  white-space: nowrap;
}

.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-gold { background: var(--gold); color: var(--text); border-color: var(--gold); }
.btn-gold:hover { background: #A07808; border-color: #A07808; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }

.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { background: transparent; color: white; }

.btn-sm { padding: 6px 14px; font-size: 0.85rem; }
.btn-approve { background: #E8F5E9; color: #2E7D32; border-color: #A5D6A7; }
.btn-approve:hover { background: #2E7D32; color: white; border-color: #2E7D32; }
.btn-reject { background: #FFEBEE; color: #C62828; border-color: #FFCDD2; }
.btn-reject:hover { background: #C62828; color: white; border-color: #C62828; }
.btn-danger { background: #FFEBEE; color: #C62828; border-color: #FFCDD2; }
.btn-danger:hover { background: #C62828; color: white; border-color: #C62828; }

.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── Hero ── */
.hero {
  background: linear-gradient(150deg, #FFF8F0 0%, #FFF2E0 50%, #FFECCC 100%);
  padding: 90px 24px 80px;
  text-align: center;
  color: var(--text);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--border-light);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C99010' stroke-width='0.6' stroke-opacity='0.10'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3Cline x1='10' y1='40' x2='70' y2='40'/%3E%3Cline x1='40' y1='10' x2='40' y2='70'/%3E%3Cline x1='18' y1='18' x2='62' y2='62'/%3E%3Cline x1='62' y1='18' x2='18' y2='62'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-deco-left, .hero-deco-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7rem;
  opacity: 0.10;
  pointer-events: none;
  user-select: none;
}
.hero-deco-left { left: 0; }
.hero-deco-right { right: 0; }

.hero-content { position: relative; max-width: 760px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(192,80,8,0.08);
  color: var(--primary);
  border: 1px solid rgba(192,80,8,0.20);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.8px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text);
}
.hero h1 span { color: var(--primary); }

.hero p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 36px; line-height: 1.7; }

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

.hero-stats {
  display: flex; gap: 0; justify-content: center; margin-top: 52px; flex-wrap: wrap;
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  max-width: 480px; margin-left: auto; margin-right: auto;
  box-shadow: var(--shadow-sm);
}
.stat { text-align: center; padding: 18px 28px; flex: 1; }
.stat-divider { width: 1px; background: var(--border-light); align-self: stretch; }
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.80rem; color: var(--text-muted); margin-top: 4px; }

/* ── Section Badge ── */
.section-badge {
  display: inline-block;
  background: rgba(139,0,0,0.08);
  color: var(--primary);
  border: 1px solid rgba(139,0,0,0.15);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Shivaji Maharaj Section ── */
.shivaji-section {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 45%, #A01828 100%);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.shivaji-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpolygon points='60,5 72,40 108,40 80,62 90,97 60,77 30,97 40,62 12,40 48,40'/%3E%3C/g%3E%3C/svg%3E");
}
.shivaji-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 52px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.shivaji-image-wrap {
  width: 200px;
  height: 260px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(245,200,64,0.55);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 6px rgba(245,200,64,0.12);
}
.shivaji-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.shivaji-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.shivaji-content { flex: 1; min-width: 260px; }
.shivaji-label {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.shivaji-quote {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.45;
  margin-bottom: 10px;
  font-style: normal;
  border-left: 4px solid var(--gold);
  padding-left: 22px;
}
.shivaji-attr {
  color: rgba(245,215,142,0.7);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 22px;
  padding-left: 26px;
}
.shivaji-text {
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  font-size: 0.93rem;
}

/* ── Wedding Gallery ── */
.wedding-gallery {
  padding: 72px 24px;
  background: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  background: linear-gradient(135deg, #FFF0CC, #F5D88A);
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-card:hover .gallery-img-wrap img { transform: scale(1.05); }
.gallery-img-wrap.gallery-fallback {
  background: linear-gradient(135deg, var(--bg-warm), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.gallery-caption {
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  background: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery-icon { font-size: 1.1rem; }

/* ── Region Section ── */
.region-section {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--bg-warm) 100%);
  padding: 64px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.district-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.district-tag {
  background: var(--bg-warm);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--border);
}
.district-tag.district-main {
  background: var(--primary);
  color: white;
  font-weight: 700;
  border-color: var(--primary);
}
.district-tag.district-more {
  background: transparent;
  color: var(--text-muted);
  border: 1px dashed var(--border);
}

/* ── CTA Banner ── */
.cta-inner { max-width: 600px; margin: 0 auto; }

/* ── Sections ── */
.features { padding: 72px 24px; background: white; }
.how-it-works { padding: 72px 24px; background: var(--bg-warm); }
.wedding-gallery { padding: 72px 24px; background: var(--bg); }

.section-title { text-align: center; margin-bottom: 48px; }
.section-title .section-badge { display: block; margin: 0 auto 12px; }
.section-title h2 { font-size: 1.7rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.section-title p { color: var(--text-light); font-size: 1rem; max-width: 560px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.feature-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.step { text-align: center; }
.step-number {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--primary); color: white;
  font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.step h3 { font-size: 0.95rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.step p { font-size: 0.88rem; color: var(--text-muted); }

.cta-banner {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--gold-pale) 100%);
  border-top: 2px solid var(--border-light);
  border-bottom: 2px solid var(--border-light);
  padding: 64px 24px;
  text-align: center;
  color: var(--text);
}
.cta-banner h2 { font-size: 1.7rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.cta-banner p { color: var(--text-light); margin-bottom: 0; font-size: 1rem; }

/* ── Footer ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding: 28px 24px;
  text-align: center;
}
.footer-brand { color: var(--gold-light); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.footer p { font-size: 0.83rem; line-height: 1.9; }

/* ── Auth pages ── */
.auth-page {
  min-height: calc(100vh - 64px);
  display: flex; align-items: center; justify-content: center;
  padding: 32px 16px;
  background: var(--bg);
}
.auth-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  width: 100%;
  max-width: 460px;
}
.auth-card h2 { font-size: 1.45rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; text-align: center; }
.auth-card .subtitle { text-align: center; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 28px; }

/* ── Forms ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-light); margin-bottom: 6px; }
.form-label .req { color: var(--primary); }

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,0,0,0.08);
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B4226' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
textarea.form-control { resize: vertical; min-height: 90px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.form-section {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.form-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-link { text-align: center; margin-top: 18px; font-size: 0.88rem; color: var(--text-muted); }
.auth-link a { color: var(--primary); text-decoration: none; font-weight: 600; }
.auth-link a:hover { text-decoration: underline; }

/* ── Alerts ── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 16px;
  display: none;
}
.alert.show { display: block; }
.alert-error { background: #FFF0F0; color: #B00; border: 1px solid #FFCCCC; }
.alert-success { background: #F0FFF4; color: #0A5C0A; border: 1px solid #B2DFB2; }
.alert-info { background: #FFF8E1; color: #8B6914; border: 1px solid #FFE082; }

/* ── Photo upload ── */
.photo-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.photo-upload:hover { border-color: var(--primary); background: rgba(139,0,0,0.02); }
.photo-upload input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
}
.photo-preview {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: none;
  border: 3px solid var(--primary);
}
.photo-upload-icon { font-size: 2.2rem; margin-bottom: 8px; }
.photo-upload p { color: var(--text-muted); font-size: 0.88rem; }

/* ── Browse page ── */
.browse-page { max-width: 1100px; margin: 0 auto; padding: 28px 16px; }

.browse-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; gap: 16px; flex-wrap: wrap;
}
.browse-header h1 { font-size: 1.4rem; font-weight: 700; color: var(--primary); }

.filters-bar {
  background: white;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  display: flex; gap: 14px; flex-wrap: wrap; align-items: flex-end;
}
.filter-group { flex: 1; min-width: 140px; }
.filter-group label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
}

.profile-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.profile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.profile-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #FFF0CC, #F5D88A);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  color: var(--border);
}
.profile-card-img img { width: 100%; height: 100%; object-fit: cover; }

.profile-card-body { padding: 16px; }
.profile-card-name { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.profile-card-meta { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 10px; }

.profile-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.tag {
  background: var(--bg-warm); color: var(--primary);
  padding: 3px 10px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 500;
  border: 1px solid var(--border);
}

.gender-badge { display: inline-block; padding: 2px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.gender-male { background: #EBF5FF; color: #1565C0; }
.gender-female { background: #FFF0F5; color: #880E4F; }

.no-profiles { text-align: center; padding: 60px 24px; color: var(--text-muted); grid-column: 1/-1; }
.no-profiles-icon { font-size: 3rem; margin-bottom: 14px; }

/* ── Profile detail ── */
.profile-detail { max-width: 860px; margin: 0 auto; padding: 28px 16px; }

.profile-detail-header {
  background: white; border-radius: var(--radius);
  padding: 28px; display: flex; gap: 28px;
  align-items: flex-start; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); margin-bottom: 18px;
  flex-wrap: wrap;
}
.profile-photo-large {
  width: 150px; height: 150px; border-radius: 50%;
  border: 4px solid var(--primary); flex-shrink: 0;
  background: linear-gradient(135deg, #FFF0CC, #F5D88A);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; overflow: hidden;
}
.profile-photo-large img { width: 100%; height: 100%; object-fit: cover; }

.profile-info { flex: 1; min-width: 200px; }
.profile-info h1 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.profile-info .age-gender { color: var(--text-muted); margin-bottom: 16px; font-size: 0.95rem; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.info-item { display: flex; flex-direction: column; }
.info-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); font-weight: 600; }
.info-value { font-size: 0.92rem; font-weight: 500; color: var(--text); }

.profile-section {
  background: white; border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); margin-bottom: 14px;
}
.profile-section h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--primary);
  margin-bottom: 14px; padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.profile-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

.contact-box {
  background: linear-gradient(135deg, var(--gold-pale), #FAEAB0);
  border: 1px solid #FFE082;
  border-radius: var(--radius-sm);
  padding: 20px; text-align: center;
}
.contact-box p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; }
.contact-number { font-size: 1.3rem; font-weight: 700; color: var(--primary); }

/* ── Dashboard ── */
.dashboard { max-width: 860px; margin: 0 auto; padding: 28px 16px; }

.dashboard-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius); padding: 28px;
  color: white; margin-bottom: 20px;
}
.dashboard-header h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 4px; }
.dashboard-header p { opacity: 0.85; font-size: 0.95rem; }

.status-card {
  background: white; border-radius: var(--radius);
  padding: 22px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); margin-bottom: 18px;
}
.status-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }

.status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
}
.status-pending { background: #FFF9E6; color: #B8860B; border: 1px solid #F0D060; }
.status-approved { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.status-rejected { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }
.status-none { background: var(--bg-warm); color: var(--text-muted); border: 1px solid var(--border); }

/* ── Admin ── */
.admin-page { max-width: 960px; margin: 0 auto; padding: 28px 16px; }

.admin-tabs {
  display: flex; gap: 4px; background: var(--border);
  padding: 4px; border-radius: var(--radius-sm); margin-bottom: 20px;
}
.admin-tab {
  flex: 1; padding: 9px; text-align: center;
  border-radius: 6px; cursor: pointer;
  font-weight: 600; font-size: 0.88rem;
  color: var(--text-muted); transition: all 0.2s;
  border: none; background: none; font-family: inherit;
}
.admin-tab.active { background: white; color: var(--primary); box-shadow: var(--shadow-sm); }

.admin-card {
  background: white; border-radius: var(--radius);
  padding: 18px 20px; border: 1px solid var(--border);
  margin-bottom: 10px; display: flex; gap: 16px;
  align-items: center; flex-wrap: wrap;
}
.admin-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #FFF0CC, #F5D88A);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0; overflow: hidden;
  border: 2px solid var(--border);
}
.admin-avatar img { width: 100%; height: 100%; object-fit: cover; }
.admin-card-info { flex: 1; min-width: 160px; }
.admin-card-info strong { font-size: 1rem; font-weight: 700; display: block; color: var(--text); }
.admin-card-info span { font-size: 0.83rem; color: var(--text-muted); }
.admin-card-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ── Loading ── */
.loading { text-align: center; padding: 48px; color: var(--text-muted); }
.spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Page wrapper ── */
.page-container { max-width: 720px; margin: 0 auto; padding: 32px 16px; }

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.w-full { width: 100%; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--border); margin: 20px 0; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    background: white;
    border-bottom: 2px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex-direction: column; padding: 12px; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; text-align: center; padding: 11px; }
  .navbar { position: relative; }

  .hero { padding: 56px 16px 48px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-stats { max-width: 100%; }
  .stat { padding: 14px 16px; }
  .hero-deco-left, .hero-deco-right { display: none; }
  .shivaji-inner { flex-direction: column; align-items: center; text-align: center; gap: 32px; }
  .shivaji-quote { border-left: none; padding-left: 0; border-top: 3px solid var(--gold); padding-top: 16px; }
  .shivaji-attr { padding-left: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .auth-card { padding: 24px 18px; }
  .profile-detail-header { flex-direction: column; align-items: center; text-align: center; }
  .admin-card { flex-direction: column; }
  .admin-card-actions { width: 100%; justify-content: flex-end; }
  .browse-header { flex-direction: column; align-items: flex-start; }
}
