/* Cinematic Intro Preloader */
.cinematic-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #07080b;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.cinematic-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bg-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.3) 0%, rgba(255, 136, 0, 0.1) 50%, transparent 70%);
  filter: blur(60px);
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.9; }
}

.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loader-flame-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flame-aura-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 85, 0, 0.4);
  box-shadow: 0 0 30px rgba(255, 85, 0, 0.5);
  animation: auraPulse 1.5s infinite ease-in-out;
}

@keyframes auraPulse {
  0% { transform: scale(0.8); opacity: 0.3; }
  50% { transform: scale(1.25); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.loader-flame {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(255, 85, 0, 0.8));
  animation: flameIgnite 1.2s ease-out forwards;
}

@keyframes flameIgnite {
  0% { transform: scale(0) rotate(-15deg); opacity: 0; }
  60% { transform: scale(1.15) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.loader-text-group {
  margin-bottom: 32px;
}

.loader-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 0.25em;
  background: linear-gradient(135deg, #ffffff 0%, #ff8800 60%, #ff5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes titleReveal {
  0% { letter-spacing: 0.6em; opacity: 0; transform: translateY(10px); }
  100% { letter-spacing: 0.25em; opacity: 1; transform: translateY(0); }
}

.loader-subtitle {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--fire-amber);
  letter-spacing: 0.35em;
  margin-top: 6px;
  animation: subReveal 1.2s ease-out forwards;
}

@keyframes subReveal {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 0.9; transform: translateY(0); }
}

.loader-bar-container {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff4500, #ff8800, #ffbb00);
  box-shadow: 0 0 12px rgba(255, 85, 0, 0.8);
  border-radius: 4px;
  transition: width 0.3s ease-out;
}

:root {
  --bg-dark: #0b0c10;
  --bg-card: rgba(18, 20, 29, 0.75);
  --bg-card-hover: rgba(28, 31, 45, 0.9);
  --fire-orange: #ff5500;
  --fire-amber: #ff8800;
  --fire-gold: #ffbb00;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-sub: #cbd5e1;
  --border-card: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 85, 0, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Ambient Glow Effects */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.glow-top {
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, #ff5500 0%, #ffbb00 70%, transparent 100%);
}

.glow-bottom {
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, #ff3300 0%, #ff8800 70%, transparent 100%);
}

/* Utility Classes */
.gradient-fire {
  background: linear-gradient(135deg, #ff5500 0%, #ff8800 50%, #ffbb00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 90px 24px;
  position: relative;
  z-index: 1;
}

/* Buttons & CTA */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-fire {
  background: linear-gradient(135deg, #ff4500, #ff7300);
  color: #ffffff;
  box-shadow: 0 8px 24px -6px rgba(255, 69, 0, 0.5);
}

.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(255, 69, 0, 0.7);
  background: linear-gradient(135deg, #ff5500, #ff8800);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(11, 12, 16, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-card);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-logo:hover .nav-logo-mark {
  background: rgba(255, 85, 0, 0.2);
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.4);
}

.nav-flame-icon {
  height: 28px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--fire-amber);
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(11, 12, 16, 0.96);
  border-bottom: 1px solid var(--border-card);
  padding: 20px 24px;
  gap: 16px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 24px 70px;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 85, 0, 0.12);
  border: 1px solid rgba(255, 85, 0, 0.3);
  border-radius: var(--radius-pill);
  color: var(--fire-amber);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.badge-flame {
  height: 16px;
  width: auto;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(12px);
  padding: 20px 32px;
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.hl-icon {
  font-size: 1.5rem;
}

.hl-text {
  display: flex;
  flex-direction: column;
}

.hl-text strong {
  font-size: 0.95rem;
  color: var(--text-main);
}

.hl-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.highlight-divider {
  width: 1px;
  height: 36px;
  background: var(--border-card);
}

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

.section-tag {
  color: var(--fire-amber);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* Calendar Toolbar & Filter */
.calendar-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  min-width: 300px;
  flex: 1;
  max-width: 420px;
  color: var(--text-muted);
  transition: var(--transition);
}

.search-box:focus-within {
  border-color: var(--fire-orange);
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.2);
  color: var(--text-main);
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-size: 0.95rem;
  width: 100%;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.view-toggles {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-card);
}

.view-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.view-btn.active {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-amber));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 85, 0, 0.3);
}

.month-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.month-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.month-btn:hover {
  border-color: var(--fire-orange);
  color: var(--fire-orange);
}

.month-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  min-width: 130px;
  text-align: center;
}

/* Events List View */
.events-list {
  display: grid;
  gap: 20px;
}

.event-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--fire-orange), var(--fire-gold));
  opacity: 0.7;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.6);
  background: var(--bg-card-hover);
}

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

.event-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
}

.event-month {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--fire-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-day {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin: 4px 0;
}

.event-weekday {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-type-icon {
  font-size: 1.25rem;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
}

.event-meta {
  display: flex;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-badge {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fire-gold);
}

/* Calendar Grid View */
.calendar-grid-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-card);
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 14px;
}

.cal-day {
  min-height: 95px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
  transition: var(--transition);
}

.cal-day.other-month { opacity: 0.3; }

.cal-day.today {
  border-color: var(--fire-orange);
  background: rgba(255, 85, 0, 0.06);
}

.cal-day-num {
  font-weight: 700;
  font-size: 0.9rem;
}

.cal-events {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cal-event-pill {
  background: linear-gradient(135deg, var(--fire-orange), #e64a19);
  color: #fff;
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

/* Loading & Empty States */
.events-loading, .no-events {
  text-align: center;
  padding: 70px 24px;
  color: var(--text-muted);
}

.loading-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 85, 0, 0.2);
  border-top-color: var(--fire-orange);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.no-events-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar-card {
  display: flex;
  gap: 18px;
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  transition: var(--transition);
}

.pillar-card:hover {
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.pillar-icon {
  font-size: 1.6rem;
}

.pillar-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.pillar-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-logo-badge {
  position: relative;
  width: 300px;
  height: 340px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
}

.logo-glow-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.3) 0%, transparent 70%);
  filter: blur(30px);
}

.about-flame-img {
  height: 120px;
  width: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 25px rgba(255, 85, 0, 0.6));
}

.about-brand-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.about-brand-tag .title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-main);
}

.about-brand-tag .sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fire-amber);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-card);
  background: rgba(8, 9, 12, 0.96);
  padding: 70px 24px 30px;
  text-align: center;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-logo-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.footer-logo-img {
  height: 32px;
  width: auto;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
}

.footer-sub {
  color: var(--fire-amber);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--fire-amber);
}

.footer-bottom {
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border-card);
  width: 100%;
  padding-top: 24px;
}

/* Responsive Styles for Tablets & Mobile Phones */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .highlight-divider { display: none; }
  .hero-highlights { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  
  .hero { padding: 110px 16px 50px; min-height: auto; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-subtitle { font-size: 1rem; margin-bottom: 30px; }

  .calendar-toolbar { flex-direction: column; align-items: stretch; gap: 14px; }
  .search-box { min-width: 100%; width: 100%; }
  .toolbar-right { flex-wrap: wrap; justify-content: space-between; width: 100%; }

  .event-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }
  
  .event-date-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
  }

  .calendar-grid-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px 12px;
  }

  .calendar-weekdays, .calendar-days {
    min-width: 550px;
  }

  .cal-day {
    min-height: 75px;
    padding: 6px;
  }

  .glass-logo-badge {
    width: 100%;
    max-width: 280px;
    height: 280px;
  }
}

@media (max-width: 480px) {
  .nav-container { padding: 12px 16px; }
  .section-container { padding: 60px 16px; }
  .hero-badge { font-size: 0.72rem; padding: 5px 12px; }
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; width: 100%; }
  .view-toggles { width: 100%; justify-content: center; }
  .view-btn { flex: 1; justify-content: center; padding: 8px 12px; font-size: 0.8rem; }
}
