/* ===== ROOT VARIABLES ===== */
:root {
  --saffron: #FF6B00;
  --saffron-dark: #E05A00;
  --saffron-light: #FF8C3A;
  --saffron-pale: #FFF3E8;
  --saffron-bg: #FFF8F2;
  --text-dark: #1A0A00;
  --text-mid: #5C3010;
  --text-light: #9C6030;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(255,107,0,0.15);
  --shadow-hover: 0 8px 32px rgba(255,107,0,0.28);
  --radius: 14px;
  --radius-sm: 8px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
  background: var(--saffron-bg);
  color: var(--text-dark);
  min-height: 100vh;
}

/* ===== NAV ===== */
nav {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(255,107,0,0.35);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.nav-logo span { opacity: 0.8; font-weight: 400; font-size: 1rem; margin-left: 6px; }
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; margin: 5px 0;
  transition: 0.3s;
}



/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--saffron) 0%, #FF9030 100%);
  color: white;
  text-align: center;
  padding: 2rem 1.5rem 2rem
  position: relative;
  overflow: hidden;
}
.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.05'%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");
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s;
}
.btn-white {
  background: white;
  color: var(--saffron);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-saffron {
  background: var(--saffron);
  color: white;
}
.btn-saffron:hover { background: var(--saffron-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-wa {
  background: #25D366;
  color: white;
}
.btn-wa:hover { background: #1EB857; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

/* ===== SECTION ===== */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--saffron-dark);
  margin-bottom: 0.5rem;
}
.section-title p {
  color: var(--text-light);
  font-size: 1.05rem;
}
.divider {
  width: 60px; height: 4px;
  background: var(--saffron);
  border-radius: 2px;
  margin: 0.75rem auto;
}

/* ===== CARDS GRID ===== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* ===== PRODUCT CARD ===== */
.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--saffron-pale), #FFE0C0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.product-body { padding: 1.25rem; }
.product-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; }
.product-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.5; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem 1.25rem;
}
.price { font-size: 1.3rem; font-weight: 800; color: var(--saffron-dark); }
.price span { font-size: 0.85rem; color: var(--text-light); font-weight: 400; text-decoration: line-through; margin-left: 6px; }

/* ===== EVENT CARD ===== */
.event-card { display: flex; gap: 0; }
.event-date {
  background: var(--saffron);
  color: white;
  padding: 1.25rem 1rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 80px;
  text-align: center;
}
.event-date .day { font-size: 2rem; font-weight: 900; line-height: 1; }
.event-date .month { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; opacity: 0.9; }
.event-info { padding: 1.25rem; flex: 1; }
.event-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.event-info p { color: var(--text-light); font-size: 0.88rem; line-height: 1.5; }
.event-meta { display: flex; gap: 1rem; margin-top: 0.75rem; flex-wrap: wrap; }
.event-meta span {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex; align-items: center; gap: 0.3rem;
}

/* ===== REVIEW CARD ===== */
.review-card { padding: 1.5rem; }
.stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-text { color: var(--text-mid); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.reviewer-place { font-size: 0.8rem; color: var(--text-light); }

/* ===== REVIEW FORM ===== */
.form-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 2rem auto 0;
}
.form-title { font-size: 1.3rem; font-weight: 700; color: var(--saffron-dark); margin-bottom: 1.5rem; text-align: center; }
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.4rem; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 2px solid #E8D5C5;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: border 0.2s;
  outline: none;
  background: var(--saffron-bg);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: var(--saffron); }
.form-row textarea { resize: vertical; min-height: 100px; }
.star-input { display: flex; gap: 0.5rem; font-size: 1.5rem; cursor: pointer; }
.star-input span { color: #DDD; transition: color 0.15s; }
.star-input span.active { color: #F5A623; }
.form-success {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  color: #2E7D32;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  display: none;
  font-size: 0.95rem;
}

/* ===== STATS STRIP ===== */
.stats {
  background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--saffron) 100%);
  color: white;
  padding: 3rem 1.5rem;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem;
  text-align: center;
}
.stat-num { font-size: 2.5rem; font-weight: 900; }
.stat-lbl { font-size: 0.9rem; opacity: 0.85; margin-top: 0.3rem; }

/* ===== BADGE / TAG ===== */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}
.tag-saffron { background: var(--saffron-pale); color: var(--saffron-dark); }
.tag-green { background: #E8F5E9; color: #2E7D32; }
.tag-blue { background: #E3F2FD; color: #1565C0; }

/* ===== ADMIN ===== */
.admin-login {
  max-width: 420px;
  margin: 6rem auto;
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.admin-panel { display: none; }
.admin-panel.visible { display: block; }
.admin-header {
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
}
.admin-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.admin-tab {
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  border: 2px solid var(--saffron);
  background: transparent;
  color: var(--saffron-dark);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.admin-tab.active, .admin-tab:hover { background: var(--saffron); color: white; }
.admin-section { display: none; }
.admin-section.visible { display: block; }
table { width: 100%; border-collapse: collapse; }
th { background: var(--saffron-pale); color: var(--saffron-dark); padding: 0.75rem 1rem; text-align: left; font-size: 0.85rem; }
td { padding: 0.75rem 1rem; border-bottom: 1px solid #F0E0D0; font-size: 0.9rem; vertical-align: middle; }
tr:last-child td { border-bottom: none; }
.action-btn {
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  margin-right: 4px;
}
.action-btn.del { background: #FFEBEE; color: #C62828; }
.action-btn.del:hover { background: #C62828; color: white; }
.action-btn.approve { background: #E8F5E9; color: #2E7D32; }
.action-btn.approve:hover { background: #2E7D32; color: white; }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3D1500 100%);
  color: rgba(255,255,255,0.8);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo { font-size: 1.4rem; font-weight: 800; color: var(--saffron-light); margin-bottom: 0.75rem; }
footer h4 { color: white; font-size: 0.95rem; margin-bottom: 0.75rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.4rem; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
footer a:hover { color: var(--saffron-light); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
}

/* ===== TOAST ===== */
#toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: var(--saffron-dark);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transform: translateY(80px); opacity: 0;
  transition: all 0.3s;
  z-index: 999;
}
#toast.show { transform: translateY(0); opacity: 1; }

/* ===== MOBILE ===== */
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--saffron-dark); padding: 1rem; gap: 0.5rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .event-card { flex-direction: column; }
  .event-date { flex-direction: row; gap: 0.5rem; align-items: center; justify-content: flex-start; padding: 0.75rem 1rem; }
}
.objectives-page{
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.objectives-title{
  text-align: center;
  margin-bottom: 3rem;
}

.objectives-title h1{
  font-size: 2.3rem;
  color: #E05A00;
  margin-bottom: 0.5rem;
}

.objectives-title p{
  color: #666;
}

.objectives-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1.5rem;
}

.objective-card{
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(129, 122, 122, 0.777);
}

.objective-icon{
  font-size: 3rem;
  margin-bottom: 1rem;
}