/* ============================================================================
   OVALA AGULERI FESTIVAL - STYLESHEET
   Organized by page structure: Universal → Index → Contact → Schedule → About
   ============================================================================ */

/* ============================================================================
   SECTION 1: UNIVERSAL & BASE STYLES
   ============================================================================ */

:root {
  --bg: #ffffff;
  --text: #1a1410;
  --muted: #6e6e6e;
  --accent: #ff9f1a;
  --card: rgba(26, 20, 16, 0.1);
  --hero-foreground: #111111;
  --bg-secondary: #f5f5f5;
  --text-secondary: #4f4f4f;
  --border: rgba(255, 159, 26, 0.2);
}

body.dark {
  --bg: #1a1410;
  --text: #ffffff;
  --muted: #a0a0a0;
  --accent: #ff9f1a;
  --hero-foreground: #ffffff;
  --card: rgba(255, 255, 255, 0.1);
  --bg-secondary: #2a2520;
  --text-secondary: #c5c5c5;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  transition: background .3s, color .3s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track {
  background: #2a2a2a;
}

body.dark ::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #ff9f1a;
  border-radius: 8px;
  min-height: 40px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffb84d;
}

::-webkit-scrollbar-thumb:active {
  background: #ff8800;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #ff9f1a #2a2a2a;
}

html.dark {
  scrollbar-color: #ff9f1a #0a0a0a;
}

/* ============================================================================
   SECTION 2: HEADER & NAVIGATION (Universal)
   ============================================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: var(--bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 159, 26, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline;
  place-items: center;
  font-weight: bolder;
}

.logo a {
  text-decoration: none;
  color: var(--text);
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-text {
  font-size: 20px;
  line-height: 1;
}

nav {
  display: flex;
  align-items: center;
  height: 36px;
}

nav a {
  margin: 0 14px;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
  pointer-events: auto;
  font-size: 20px;
  line-height: 36px;
}

nav a.active {
  color: var(--accent);
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1002;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.theme-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto !important;
  position: relative;
  z-index: 1001;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
}

.theme-btn:hover {
  transform: scale(2.1);
}

.theme-btn:active {
  transform: scale(0.95);
}

/* ============================================================================
   SECTION 3: UNIVERSAL COMPONENTS & UTILITIES
   ============================================================================ */

section {
  padding: 4.5rem 5%;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 5%;
  }
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--accent);
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
}

.btn.primary {
  background: #ff8c1a;
  color: #1a1410;
}

.btn.outline {
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
  background: transparent;
}

.btn.center {
  display: inline-block;
}

.location {
  font-size: 13px;
  color: var(--muted);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .container-wide {
    padding: 0 20px;
  }
}

/* ============================================================================
   SECTION 4: FOOTER (Universal - at end of specifics)
   ============================================================================ */

footer {
  background: var(--bg-secondary);
  padding: 3rem 5%;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
}

/* ============================================================================
   SECTION 5: INDEX PAGE STYLES
   ============================================================================ */

/* Hero Section */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding: 40px 60px 60px 60px;
  gap: 40px;
  min-height: 90vh;
  background: linear-gradient(180deg , rgba(18, 12, 6, 0.85), rgba(18, 12, 6, 0.8)), url('../Images/hero.jpeg') center/cover no-repeat;
  background-attachment: fixed;
  align-items: center;
}

.hero-left, .hero-right {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: rgba(255, 159, 26, .15);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1.1;
  color: var(--accent);
}

.tagline {
  display: block;
  color: var(--accent);
  margin: 18px 0;
}

.hero p {
  max-width: 480px;
  color: var(--muted);
  line-height: 1.6;
}

.buttons {
  display: flex;
  gap: 20px;
}

/* Countdown Card */
.countdown-card {
  background: var(--card);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  max-width: 420px;
}

.countdown-card h3 {
  color: var(--accent);
  margin-bottom: 8px;
}

.quote {
  font-style: italic;
  margin-bottom: 20px;
}

.countdown-status {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text);
}

.countdown-status.live {
  color: var(--accent);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.countdown div {
  background: var(--accent);
  color: #1a1410;
  border-radius: 10px;
  padding: 14px 0;
  text-align: center;
}

.countdown span {
  font-size: 22px;
  font-weight: bold;
}

.countdown small {
  display: block;
  font-size: 10px;
}

/* Heritage Section */
.heritage {
  background: var(--bg);
  color: var(--text);
  padding: 60px 60px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.heritage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-position: center;
  background-size: 36px 36px;
  opacity: 1;
  mix-blend-mode: normal;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='146' height='146' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff8a2b' fill-opacity='0.35'%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");
}

[data-theme="dark"] .heritage::before {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff8a2b' fill-opacity='0.22'%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");
  background-size: 36px 36px;
  background-position: center;
  opacity: 1;
}

.heritage-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.heritage-content {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.heritage-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--accent);
}

.heritage-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Highlights Section */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: rgba(255, 159, 26, 0.08);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 159, 26, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 159, 26, 0.5);
  box-shadow: 0 8px 25px rgba(255, 159, 26, 0.2);
}

.highlight-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.highlight-card video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #000;
}

.highlight-content {
  padding: 1.5rem;
}

.highlight-content h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.highlight-content p {
  color: var(--muted);
  line-height: 1.6;
}

/* Community Section */
.community {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.community-btn {
  margin-top: 1rem;
  padding: 16px 36px !important;
  font-size: 1rem;
  font-weight: 600;
}

.community-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.community-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
}

.stat .number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent);
}

.stat .label {
  color: var(--muted);
  font-size: 0.9rem;
}

.community-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #ff9f1a 0%, #ff9f1a 100%);
  text-align: center;
  padding: 5rem 5%;
  color: white;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  color: white;
}

.cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta .btn {
  padding: 14px 32px;
  font-size: 1rem;
  border: none;
  font-weight: 600;
  border-radius: 12px;
}

.cta .btn.outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta .btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta .btn.primary {
  background: white;
  color: #ff9f1a;
  font-weight: 600;
}

.cta .btn.primary:hover {
  background: #f0f0f0;
}

/* ============================================================================
   SECTION 6: CONTACT PAGE STYLES
   ============================================================================ */

.contact-hero {
  background: var(--bg);
  padding: 140px 60px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-position: center;
  background-size: 36px 36px;
  opacity: 1;
  mix-blend-mode: normal;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='146' height='146' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff8a2b' fill-opacity='0.18'%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");
  z-index: 0;
}

body.dark .contact-hero::before {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff8a2b' fill-opacity='0.22'%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");
}

.contact-hero > * {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 5rem);
  margin-bottom: 25px;
  font-weight: 900;
  color: var(--accent);
}

.contact-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--muted);
}

.contact-section-full {
  padding: 100px 60px;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-form {
  background: var(--card);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid rgba(255, 159, 26, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-height: 700px;
}

.contact-form h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-form h3 span {
  color: var(--accent);
}

/* Contact form alerts */
.alert {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.alert-success {
  border-color: rgba(53, 194, 124, 0.35);
  background: rgba(53, 194, 124, 0.12);
}

.alert-error {
  border-color: rgba(227, 91, 91, 0.45);
  background: rgba(227, 91, 91, 0.12);
}

.contact-form input {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

input, textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 159, 26, 0.2);
  padding: 18px 20px;
  border-radius: 16px;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 159, 26, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 159, 26, 0.1);
}

input::placeholder, textarea::placeholder {
  color: var(--muted);
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: #1a1410;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background: #ffaa33;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 159, 26, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-info h3 span {
  color: var(--accent);
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 159, 26, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}

.info-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.1rem;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  border: 1px solid rgba(255, 159, 26, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-section {
  padding: 100px 60px;
  background: rgba(255, 159, 26, 0.03);
}

.faq-section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  margin-bottom: 60px;
  font-weight: 900;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 159, 26, 0.15);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-header {
  padding: 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 159, 26, 0.03);
}

.faq-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 2rem;
  color: var(--accent);
  font-weight: bold;
  transition: transform 0.4s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 30px 30px;
  display: none;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.1rem;
}

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

/* ============================================================================
   SECTION 7: SCHEDULE PAGE STYLES
   ============================================================================ */

.schedule-hero {
  position: relative;
  padding: 120px 60px;
  text-align: center;
  background: var(--bg);
  color: var(--text);
}

.schedule-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-position: center;
  background-size: 36px 36px;
  opacity: 1;
  mix-blend-mode: normal;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='146' height='146' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff8a2b' fill-opacity='0.18'%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");
  z-index: 0;
}

body.dark .schedule-hero::before {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff8a2b' fill-opacity='0.22'%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");
}

.schedule-hero > * {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 159, 26, 0.15);
  color: var(--accent);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 159, 26, 0.3);
}

.schedule-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 30px;
}

.schedule-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.schedule-timeline-section {
  padding: 80px 60px 120px;
  background: var(--bg);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 159, 26, 0.3);
  border-radius: 2px;
  z-index: 1;
}

.sticky-day {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  z-index: 10;
  margin-bottom: 60px;
  padding-top: 60px;
}

.day-badge {
  position: absolute;
  left: 0;
  background: linear-gradient(135deg, var(--accent), #ffaa33);
  color: #1a1410;
  padding: 16px 24px;
  border-radius: 30px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 159, 26, 0.4);
  width: 180px;
  transform: translateX(-50px);
}

.day-number {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
}

.day-date {
  display: block;
  font-size: 0.95rem;
  margin-top: 6px;
  opacity: 0.9;
}

.timeline-event {
  margin-left: 220px;
  margin-bottom: 50px;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.timeline-event::before {
  content: '';
  position: absolute;
  left: -120px;
  top: 35px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 4px solid var(--bg);
  z-index: 3;
}

.event-time {
  position: absolute;
  left: -160px;
  top: 25px;
  background: var(--accent);
  color: #1a1410;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(255, 159, 26, 0.3);
  z-index: 4;
}

.event-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 159, 26, 0.1);
  transition: all 0.4s ease;
}

.event-content:hover {
  transform: translateX(10px);
  background: rgba(255, 159, 26, 0.08);
  border-color: var(--accent);
}

.timeline-event.featured .event-content {
  background: linear-gradient(135deg, var(--accent), #ffaa33);
  color: #1a1410;
  border: none;
}

.timeline-event.featured .location,
.timeline-event.featured p {
  color: rgba(26, 20, 16, 0.9);
}

.event-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--text);
}

.timeline-event.featured h3 {
  color: #1a1410;
}

.event-content p {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--muted);
}

.timeline-event:last-of-type {
  margin-bottom: 100px;
}

/* ============================================================================
   SECTION 8: ABOUT PAGE STYLES
   ============================================================================ */

.about-hero2 {
  background: var(--bg);
  padding: 120px 0 80px;
  position: relative;
}

.about-hero2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff8a2b' fill-opacity='0.06'%3E%3Cpath d='M18 4v6h-2V4h-6v-2h6V-4h2v6h6v2h-6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 36px 36px;
  opacity: 0.06;
  pointer-events: none;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--accent);
  text-align: center;
  font-weight: 900;
  line-height: 1;
}

.about-sub {
  max-width: 960px;
  margin: 20px auto 0;
  color: var(--text);
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

.about-heritage {
  padding: 32px 0;
}

.heritage-inner {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 48px;
  align-items: center;
}

.heritage-media {
  position: relative;
}

.heritage-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(14, 14, 14, 0.08);
}

.heritage-text p {
  line-height: 1.9;
  margin-bottom: 14px;
}

.muted-badge {
  display: inline-block;
  background: rgba(255, 154, 42, 0.12);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
}

.heritage-title {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  margin-bottom: 14px;
  color: var(--accent);
  line-height: 1.03;
  letter-spacing: 0.6px;
}

.timeline-section {
  padding: 80px 60px;
  background: rgba(255, 159, 26, 0.02);
}

.timeline-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  color: var(--accent);
}

.significance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.significance-card {
  background: rgba(255, 159, 26, 0.08);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 159, 26, 0.2);
  transition: all 0.3s ease;
}

.significance-card:hover {
  background: rgba(255, 159, 26, 0.12);
  transform: translateY(-5px);
  border-color: var(--accent);
}

.sig-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.significance-card h3 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.significance-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.about-section {
  padding: 60px;
  border-bottom: 1px solid rgba(255, 159, 26, 0.2);
}

.about-section:nth-child(even) {
  background: rgba(255, 159, 26, 0.03);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.section-icon {
  font-size: 3rem;
  color: var(--accent);
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--accent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: rgba(255, 159, 26, 0.08);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 159, 26, 0.2);
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(255, 159, 26, 0.12);
  transform: translateY(-5px);
}

.value-card .icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.value-card h3 {
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 600;
}

.value-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.leadership-section {
  padding: 80px 60px;
  background: transparent;
}

.leadership-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.leadership-image {
  position: relative;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(255, 159, 26, 0.15);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 159, 26, 0.2);
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.leadership-text h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 12px;
  font-weight: 600;
}

.leadership-text h3:first-of-type {
  margin-top: 0;
}

.leadership-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.leadership-text .btn {
  margin-top: 25px;
  display: inline-block;
}

/* ============================================================================
   SECTION 9: RESPONSIVE DESIGN (organized by breakpoint)
   ============================================================================ */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Header & Navigation */
  .header {
    padding: 15px 20px;
  }

  .brand-text {
    font-size: 18px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

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

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
  }

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

  .nav-menu a {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 159, 26, 0.1);
    width: 100%;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  /* Index Page */
  .hero h1 {
    font-size: 2.5rem;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .community {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  footer {
    padding: 2rem 5%;
  }

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

  .footer-section ul {
    padding: 0;
  }

  /* Contact Page */
  .contact-hero {
    padding: 100px 20px 80px;
  }

  .contact-section-full {
    padding: 80px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .contact-form, .contact-info {
    padding: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 300px;
  }

  .faq-section {
    padding: 80px 20px;
  }

  /* Schedule Page */
  .schedule-timeline-section {
    padding: 60px 20px;
  }

  .timeline::before {
    left: 40px;
  }

  .day-badge {
    width: 100px;
    padding: 12px;
    transform: translateX(-30px);
  }

  .day-number {
    font-size: 1.1rem;
  }

  .timeline-event {
    margin-left: 100px;
  }

  .event-time {
    left: -100px;
    top: 15px;
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .timeline-event::before {
    left: -60px;
    top: 28px;
  }

  .event-content {
    padding: 25px;
  }

  .event-content h3 {
    font-size: 1.3rem;
  }

  .sticky-day {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    padding-top: 20px;
    margin-bottom: 40px;
    z-index: 10;
  }

  .day-badge {
    width: 120px;
    padding: 12px 16px;
    transform: translateX(-20px);
    font-size: 0.9rem;
  }

  /* About Page */
  .about-hero2 {
    padding: 80px 20px 50px;
  }

  .about-heritage {
    padding: 50px 20px;
  }

  .about-title {
    font-size: 3rem;
  }

  .about-sub {
    font-size: 1.1rem;
  }

  .heritage-title {
    font-size: 2.5rem;
  }

  .heritage-text p {
    font-size: 1rem;
  }

  .heritage-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .heritage-media img {
    height: 300px;
    border-radius: 16px;
  }

  .timeline-section {
    padding: 50px 20px;
  }

  .significance-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 40px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .leadership-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 992px) {
  /* Contact Page */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .contact-form, .contact-info {
    padding: 40px;
  }

  /* Schedule Page */
  .timeline::before {
    left: 60px;
  }

  .day-badge {
    width: 140px;
    padding: 14px 20px;
    transform: translateX(-40px);
  }

  .timeline-event {
    margin-left: 140px;
  }

  .event-time {
    left: -120px;
    font-size: 0.9rem;
  }

  .timeline-event::before {
    left: -80px;
  }

  .sticky-day {
    top: 80px;
  }

  /* About Page */
  .about-hero2 {
    padding: 100px 40px 60px;
  }

  .about-heritage {
    padding: 60px 40px;
  }

  .heritage-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .heritage-media img {
    height: 350px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .leadership-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 2.5rem;
  }

  .muted-badge {
    padding: 6px 14px;
    font-size: 0.85rem;
  }
}
