/* ===============================
   Holi 2026 India – Authority Page
   Designed by BBD for Nectar India Tour
   =============================== */

:root {
  --bg-main: #050816;
  --bg-soft: #0b1020;
  --surface: rgba(7,10,25,0.95);
  --card: rgba(255,255,255,0.04);

  --accent: #ff914d;
  --accent-soft: rgba(255,145,77,0.12);
  --accent-green: #6cf2c2;

  --text-main: #f5f5f5;
  --text-muted: #a5a8b5;
  --border-subtle: rgba(255,255,255,0.12);

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-soft: 0 18px 40px rgba(0,0,0,0.55);
  --transition: all 0.25s ease;
}

/* ===============================
   RESET
   =============================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #131b3b 0, var(--bg-main) 45%, #02010a 100%);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===============================
   CONTAINER
   =============================== */

.nnt-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ===============================
   MAIN LAYOUT
   =============================== */

main {
  max-width: 920px;
  margin: 0 auto;
  padding: 96px 18px 72px;
}

section {
  margin-bottom: 40px;
}

/* ===============================
   HEADER
   =============================== */

.nnt-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(180deg, rgba(0,0,0,.35), transparent);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nnt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nnt-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
}

.nnt-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
}

.nnt-links {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nnt-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.nnt-links a:hover {
  color: var(--text-main);
}

.nnt-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffcf6b);
  color: #2b1500;
  font-weight: 600;
}

/* ===============================
   MOBILE NAV
   =============================== */

.nnt-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-main);
}

/* Mobile nav hidden by default */
.nnt-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background: rgba(5,8,22,0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
}



.nnt-mobile-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1rem;
}

/* ===============================
   HERO
   =============================== */

.holi-hero {
  border-radius: 28px;
  padding: 28px 26px 30px;
  background:
    radial-gradient(circle at top left, rgba(255,145,77,0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(108,242,194,0.18), transparent 60%),
    linear-gradient(135deg, rgba(9,10,26,0.96), rgba(6,6,18,0.98));
  box-shadow: var(--shadow-soft);
}

.holi-hero h1 {
  font-size: clamp(2.2rem, 3.2vw, 2.9rem);
  margin-bottom: 12px;
}

.holi-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.hero-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

/* ===============================
   INTRO / TEXT
   =============================== */

.intro p {
  color: #e0e2f0;
  margin-bottom: 14px;
}

.intro a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,145,77,0.6);
}

/* ===============================
   HEADINGS
   =============================== */

h2 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ===============================
   KEY DATES
   =============================== */

.key-dates ul {
  list-style: none;
  padding: 0;
}

.key-dates li {
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border-subtle);
}

/* ===============================
   CITY PICKER
   =============================== */

.holi-picker {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(180deg, #fff7cc, #fff);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.05);
}

.holi-picker h2 {
  color: #000;
}

.picker-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.picker-buttons button {
  padding: .8rem 1.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: linear-gradient(135deg,#ff9800,#ffc107);
}

/* ===============================
   CITY COMPARISON
   =============================== */

.city-comparison table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.city-comparison th,
.city-comparison td {
  padding: 14px;
}

.city-comparison th {
  background: rgba(255,145,77,0.08);
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* ===============================
   SAFETY
   =============================== */

.safety-respect {
  background: rgba(108,242,194,0.06);
  border: 1px dashed rgba(108,242,194,0.6);
  border-radius: var(--radius-lg);
  padding: 18px;
}

/* ===============================
   FAQ
   =============================== */

.faq-item {
  background: rgba(7,10,25,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 14px;
  color: var(--text-main);
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  float: right;
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  display: none;
  padding: 0 14px 14px;
  color: #d8dbf0;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===============================
   CTA
   =============================== */

.cta-plan {
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(135deg, #11152f, #090b22);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-btn.primary {
  border-radius: 999px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--accent), #ffcf6b);
  color: #2b1500;
  text-decoration: none;
}

/* ===============================
   FOOTER
   =============================== */

.nnt-footer {
  padding: 48px 0 24px;
  background: linear-gradient(180deg, rgba(9,11,25,0.8), rgba(3,5,16,0.95));
}

.nnt-footer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.nnt-footer-bottom {
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
}

/* ===============================
   KRISHNA THEME (OPTIONAL)
   =============================== */

body.krishna-theme {
  --accent: #4fc3f7;
  --accent-soft: rgba(79,195,247,0.15);
  --accent-green: #81c784;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 880px) {

  .nnt-links {
    display: none;
  }

  .nnt-menu-toggle {
    display: block;
  }

  .nnt-footer-grid {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 720px) {
  main { padding-top: 72px; }
  .cta-plan { flex-direction: column; }
}

.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}
