/* ==========================================================================
   ONAM CELEBRATION 2026 - FESTIVE STYLESHEET
   ========================================================================== */

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

:root {
  --font-primary: 'Plus Jakarta Sans', 'Noto Sans Malayalam', sans-serif;
  --font-heading: 'Cinzel', 'Noto Sans Malayalam', serif;
  
  /* Onam Kasavu & Festive Color Palette */
  --bg-dark: #0f0a17;
  --bg-card: rgba(28, 18, 42, 0.75);
  --bg-card-hover: rgba(42, 27, 63, 0.85);
  --border-gold: rgba(247, 200, 68, 0.3);
  --border-gold-bright: rgba(247, 200, 68, 0.8);
  
  --gold-100: #FFF5D6;
  --gold-400: #F7C844;
  --gold-500: #E5A93B;
  --gold-600: #C4851A;
  
  --orange-500: #FF6B00;
  --orange-600: #D85600;
  
  --crimson-500: #C2185B;
  --crimson-900: #4A0423;
  
  --green-500: #2E7D32;
  --green-400: #4CAF50;

  --text-light: #F8FAFC;
  --text-muted: #94A3B8;
  --text-gold: #F7C844;
  
  --shadow-gold: 0 8px 32px rgba(247, 200, 68, 0.2);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(247, 200, 68, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 0, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(74, 4, 35, 0.3) 0%, transparent 70%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-600);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-400);
}

/* Typography & Utilities */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFF5D6 0%, #F7C844 50%, #FF6B00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 10, 23, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  padding: 16px 0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand-logo svg {
  width: 36px;
  height: 36px;
  animation: pookkalamRotate 20s linear infinite;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-400);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--orange-500));
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF6B00 0%, #E5A93B 100%);
  color: #0f0a17;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(247, 200, 68, 0.6);
  background: linear-gradient(135deg, #F7C844 0%, #FF6B00 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 200, 68, 0.1);
  color: var(--gold-400);
  border: 1px solid var(--border-gold-bright);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(247, 200, 68, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  text-align: center;
}

.festive-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 200, 68, 0.12);
  border: 1px solid var(--border-gold-bright);
  color: var(--gold-400);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(247, 200, 68, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* Countdown Timer */
.countdown-box {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.countdown-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timer-item {
  background: rgba(15, 10, 23, 0.6);
  border: 1px solid rgba(247, 200, 68, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
}

.timer-item:hover {
  border-color: var(--gold-400);
  transform: translateY(-3px);
}

.timer-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-100);
  line-height: 1;
  margin-bottom: 6px;
}

.timer-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  color: var(--orange-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-light);
}

/* Programs Section */
.programs-section {
  padding: 90px 0;
  position: relative;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  background: var(--bg-card);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
}

.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--gold-400);
  background: rgba(247, 200, 68, 0.08);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--gold-400), var(--orange-500));
  color: #0f0a17;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(247, 200, 68, 0.3);
}

.search-box {
  position: relative;
  min-width: 260px;
}

.search-box input {
  width: 100%;
  background: rgba(15, 10, 23, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 10px 18px 10px 42px;
  color: var(--text-light);
  font-family: var(--font-primary);
  outline: none;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 12px rgba(247, 200, 68, 0.3);
}

.search-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
}

/* Cards Grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.program-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--orange-500), var(--crimson-500));
  opacity: 0;
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-bright);
  box-shadow: var(--shadow-card), 0 0 20px rgba(247, 200, 68, 0.15);
}

.program-card:hover::before {
  opacity: 1;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.category-tag {
  background: rgba(247, 200, 68, 0.12);
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(247, 200, 68, 0.3);
}

.status-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.status-approved {
  background: rgba(46, 125, 50, 0.2);
  color: #66BB6A;
  border: 1px solid rgba(102, 187, 106, 0.3);
}

.program-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.4;
}

.program-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.card-meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange-500);
  flex-shrink: 0;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Registration Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 6, 16, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #181024;
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(247, 200, 68, 0.2);
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--crimson-500);
  color: #fff;
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-title {
  font-size: 1.8rem;
  color: var(--gold-400);
  margin-bottom: 8px;
}

/* Form Controls */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-100);
}

.form-control {
  background: rgba(15, 10, 23, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-light);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 12px rgba(247, 200, 68, 0.3);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

select.form-control {
  cursor: pointer;
}

select.form-control option {
  background: #181024;
  color: #fff;
}

/* Onam Sadya Menu Section */
.sadya-section {
  padding: 80px 0;
  background: rgba(15, 10, 23, 0.6);
  border-top: 1px solid rgba(247, 200, 68, 0.1);
  border-bottom: 1px solid rgba(247, 200, 68, 0.1);
}

.sadya-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.sadya-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.sadya-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
  background: var(--bg-card-hover);
}

.sadya-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.sadya-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 6px;
}

.sadya-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Onam Greeting Card Generator */
.greetings-section {
  padding: 90px 0;
}

.greeting-card-preview {
  background: linear-gradient(135deg, #2b0416 0%, #150929 100%);
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 640px;
  margin: 30px auto 0 auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), inset 0 0 30px rgba(247, 200, 68, 0.15);
  position: relative;
  overflow: hidden;
}

.greeting-border {
  border: 1px dashed var(--gold-400);
  padding: 30px;
  border-radius: var(--radius-md);
}

.greeting-card-preview h3 {
  font-size: 2.2rem;
  color: var(--gold-400);
  margin-bottom: 16px;
}

.greeting-sender {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange-500);
  margin-top: 20px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: rgba(28, 18, 42, 0.95);
  border-left: 4px solid var(--gold-400);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.toast-success {
  border-left-color: var(--green-400);
}

.toast.toast-error {
  border-left-color: var(--crimson-500);
}

/* ==========================================================================
   MAVELI INTRO SPLASH SCREEN & AUDIO STYLES
   ========================================================================== */

.splash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #2d1042 0%, #0e0618 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.splash-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.maveli-container {
  position: relative;
  width: 220px;
  height: 220px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pookkalam-bg-spin {
  position: absolute;
  width: 240px;
  height: 240px;
  animation: pookkalamRotate 25s linear infinite;
  opacity: 0.85;
}

.maveli-svg {
  position: relative;
  z-index: 2;
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 10px 25px rgba(247, 200, 68, 0.4));
  animation: maveliFloat 4s ease-in-out infinite alternative;
}

@keyframes maveliFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.splash-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-400);
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(247, 200, 68, 0.4);
}

.splash-greeting {
  font-size: 1.2rem;
  color: var(--gold-100);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-continue {
  background: linear-gradient(135deg, #FF6B00 0%, #F7C844 100%);
  color: #0f0a17;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 16px 42px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 30px rgba(255, 107, 0, 0.6), 0 0 20px rgba(247, 200, 68, 0.5);
  transition: var(--transition);
  animation: pulseGlow 2s infinite;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-continue:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 40px rgba(247, 200, 68, 0.8);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(247, 200, 68, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(247, 200, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(247, 200, 68, 0); }
}

/* Notice Box Card */
.notice-card-box {
  background: rgba(247, 200, 68, 0.08);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-md);
  padding: 28px;
  max-width: 840px;
  margin: 0 auto 36px auto;
  text-align: left;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.notice-text-content {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 12px;
  background: rgba(15, 10, 23, 0.4);
  padding: 16px;
  border-radius: 8px;
  border-left: 3px solid var(--gold-400);
  word-break: break-word;
}

/* Audio Control Button */
.audio-btn {
  background: rgba(247, 200, 68, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  white-space: nowrap;
}

.audio-btn:hover {
  background: rgba(247, 200, 68, 0.25);
  color: #fff;
}

/* Mobile Toggle Hamburger Button */
.nav-toggle-btn {
  display: none;
  background: rgba(247, 200, 68, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1.3rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-toggle-btn:hover {
  background: rgba(247, 200, 68, 0.25);
  color: #fff;
}

/* ==========================================================================
   COMPLETE RESPONSIVE MEDIA QUERIES (TABLETS & MOBILE SMARTPHONES)
   ========================================================================== */

@media (max-width: 880px) {
  .nav-toggle-btn {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 10, 23, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold-bright);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    display: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
  }

  .nav-links.active {
    display: flex;
  }

  .desktop-only-btn {
    display: none !important;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 14px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .navbar {
    padding: 10px 0;
  }

  .brand-logo {
    font-size: 1rem;
    gap: 6px;
  }

  .brand-logo svg {
    width: 24px;
    height: 24px;
  }

  .notice-card-box {
    padding: 16px;
    margin-bottom: 24px;
  }

  .notice-text-content {
    font-size: 0.92rem;
    padding: 12px;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .form-group.full-width {
    grid-column: span 1 !important;
  }

  .hero-section {
    padding-top: 90px;
    padding-bottom: 30px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .countdown-box {
    padding: 16px 12px;
  }

  .countdown-header {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }

  .timer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .timer-value {
    font-size: 1.5rem;
  }

  .timer-label {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .filter-bar {
    padding: 10px;
    gap: 10px;
  }

  .category-tabs {
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .search-box {
    min-width: 100%;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .program-card {
    padding: 18px;
  }

  .program-title {
    font-size: 1.15rem;
  }

  .splash-title {
    font-size: 1.5rem;
  }

  .splash-greeting {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .maveli-container {
    width: 150px;
    height: 150px;
  }

  .pookkalam-bg-spin {
    width: 160px;
    height: 160px;
  }

  .maveli-svg {
    width: 110px;
    height: 110px;
  }

  .btn-continue {
    font-size: 0.95rem;
    padding: 12px 24px;
    width: 100%;
    max-width: 290px;
    justify-content: center;
  }

  .sadya-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sadya-card {
    padding: 12px 8px;
  }

  .sadya-icon {
    font-size: 1.8rem;
  }

  .sadya-name {
    font-size: 0.9rem;
  }

  .modal-content {
    padding: 20px 14px;
    margin: 10px;
  }

  .modal-title {
    font-size: 1.3rem;
  }
}



