/* ===============================
   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);
}

/* =========================================
   NEW SEO CONTENT SECTIONS – JAIPUR HOLI
   Matches existing Nectar / BBD design
   ========================================= */

/* Shared card styling for new sections */
.best-places,
.itinerary,
.weather,
.stay,
.faq {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

/* Paragraph readability */
.best-places p,
.itinerary p,
.weather p,
.stay p,
.faq p {
  color: #d9dcf5;
  margin-bottom: 12px;
}

/* Lists inside new sections */
.best-places ul,
.itinerary ul,
.weather ul {
  padding-left: 18px;
  margin: 12px 0;
}

.best-places li,
.itinerary li,
.weather li {
  margin-bottom: 6px;
  color: var(--text-muted);
}

/* Sub-headings glow accent */
.best-places h3,
.itinerary h3,
.faq h3 {
  color: var(--accent);
  font-weight: 600;
  margin-top: 16px;
}

/* Itinerary timeline feel */
.itinerary h3 {
  position: relative;
  padding-left: 18px;
}

.itinerary h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-green));
  box-shadow: 0 0 12px rgba(255,145,77,0.6);
}

/* Weather highlight chips */
.weather ul {
  list-style: none;
  padding: 0;
}

.weather li {
  display: inline-block;
  margin: 6px 8px 6px 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
}

/* Stay section emphasis */
.stay {
  background:
    radial-gradient(circle at top right, var(--accent-soft), transparent 60%),
    var(--surface);
}

/* =========================================
   FAQ – Renaissance Glass Refinement
   Crafted in the spirit of quiet mastery
   ========================================= */

/* Question headline */
.faq h3 {
  cursor: pointer;
  position: relative;
  padding: 14px 40px 14px 0;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: var(--transition);
}

/* Subtle luminous hover */
.faq h3:hover {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(255,145,77,0.18);
}

/* Symbol container */
.faq h3::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  transition:
    transform 0.35s cubic-bezier(.22,.9,.3,1),
    color 0.25s ease,
    text-shadow 0.25s ease;
}

/* Open state – graceful morph */
.faq-item.active h3::after {
  content: "–";
  color: var(--accent);
  transform: translateY(-50%) rotate(180deg) scale(1.1);
  text-shadow: 0 0 14px rgba(255,145,77,0.35);
}

/* Centered FAQ answer – calm, premium reading feel */
.faq-answer {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  color: #d8dbf0;
}

/* Slight breathing space below question */
.faq-item.active .faq-answer {
  padding-top: 6px;
}


/* -----------------------------------------
   Card elevation like floating parchment
   ----------------------------------------- */

.best-places,
.itinerary,
.weather,
.stay,
.faq {
  position: relative;
  overflow: hidden;
}

/* Soft inner glow */
.best-places::before,
.itinerary::before,
.weather::before,
.stay::before,
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,145,77,0.08), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(108,242,194,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Hover awakening */
.best-places:hover::before,
.itinerary:hover::before,
.weather:hover::before,
.stay:hover::before,
.faq:hover::before {
  opacity: 1;
}

/* Smooth levitation */
.best-places:hover,
.itinerary:hover,
.weather:hover,
.stay:hover,
.faq:hover {
  transform: translateY(-4px) scale(1.01);
  transition:
    transform 0.35s cubic-bezier(.22,.9,.3,1),
    box-shadow 0.35s ease;
  box-shadow:
    0 28px 60px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}

/* -----------------------------------------
   Responsive refinement
   ----------------------------------------- */

@media (max-width: 720px) {

  .best-places,
  .itinerary,
  .weather,
  .stay,
  .faq {
    padding: 18px;
    transform: none !important; /* prevent hover jump on touch */
  }

  .faq h3 {
    padding-right: 32px;
  }
}

