/* ============================================
   Brouwsels op Straat - Main Stylesheet
   Color Scheme: Green (#32620e) + Pink (pink, #fcbfc4)
   Font: Oswald
   ============================================ */

/* ----- CSS Variables ----- */
:root {
  --color-green: #32620e;
  --color-green-light: #4a8a1a;
  --color-pink: pink;
  --color-pink-accent: #fcbfc4;
  --color-pink-dark: #e8a5ab;
  --color-purple: #2e276d;
  --color-purple-light: #4a4299;
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  --color-gray: #666666;
  --color-gray-light: #f5f5f5;
  
  --font-main: 'Oswald', sans-serif;
  --font-size-base: 1.25rem;
}

/* ----- Base Styles ----- */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  margin: 0;
  padding: 0;
}

a {
  color: var(--color-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-green-light);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

img {
  max-width: 100%;
  height: auto;
}

/* ----- Page Wrapper ----- */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background-color: var(--color-purple);
  padding: 15px 0;
  font-family: var(--font-main);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

/* Navbar decorative circles */
.navbar-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.nav-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.nav-circle-1 {
  width: 200px;
  height: 200px;
  background-color: var(--color-pink);
  top: -120px;
  left: 5%;
}

.nav-circle-2 {
  width: 150px;
  height: 150px;
  background-color: var(--color-green);
  top: -80px;
  right: 15%;
}

.nav-circle-3 {
  width: 180px;
  height: 180px;
  background-color: var(--color-pink-accent);
  bottom: -130px;
  right: 5%;
}

.navbar-brand {
  color: var(--color-pink) !important;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.navbar-brand:hover {
  color: var(--color-white) !important;
}

.brand-text {
  display: inline-block;
}

.brand-accent {
  color: var(--color-pink-accent);
  font-weight: 300;
}

.navbar-nav .nav-link {
  color: var(--color-pink) !important;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px !important;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-white) !important;
  background-color: var(--color-purple-light);
  border-radius: 4px;
}

.navbar-toggler {
  border-color: var(--color-pink) !important;
  padding: 8px 12px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fcbfc4' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-date {
  margin-left: 20px;
}

.event-badge {
  background-color: var(--color-pink);
  color: var(--color-purple);
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  line-height: 1;
  border: 2px solid var(--color-pink);
}

/* Navbar layout */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    align-items: center;
  }
}

/* Language Selector */
.navbar-lang-wrapper {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.language-selector {
  position: relative;
  z-index: 1050;
}

.lang-btn {
  background-color: transparent;
  border: 2px solid var(--color-pink);
  color: var(--color-pink);
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  height: auto;
  line-height: 1;
}

.lang-btn:hover {
  background-color: var(--color-pink);
  color: var(--color-purple);
  border-color: var(--color-pink);
}

.lang-btn i {
  font-size: 0.9rem;
}

.lang-code {
  font-size: 0.9rem;
  line-height: 1;
}

.lang-dropdown {
  background-color: var(--color-purple);
  border: 2px solid var(--color-pink);
  border-radius: 4px;
  padding: 4px 0;
  min-width: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1051;
}

.lang-dropdown .dropdown-item {
  color: var(--color-pink);
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lang-dropdown .dropdown-item:hover {
  background-color: var(--color-purple-light);
  color: var(--color-white);
}

.lang-dropdown .dropdown-item.active {
  background-color: var(--color-pink);
  color: var(--color-purple);
  font-weight: 600;
}

.lang-dropdown .dropdown-item .lang-name {
  flex: 1;
}

.lang-dropdown .dropdown-item i {
  font-size: 0.8rem;
  margin-left: 8px;
}

/* Mobile responsiveness for language selector */
@media (max-width: 991px) {
  .navbar-lang-wrapper {
    margin-left: 0;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
  }
  
  .language-selector {
    width: 100%;
  }
  
  .lang-btn {
    width: 100%;
    justify-content: center;
  }
  
  .lang-dropdown {
    width: 100%;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-white) 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  color: var(--color-purple);
  margin-bottom: 8px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.hero-info {
  margin-bottom: 20px;
}

.hero-date,
.hero-location {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--color-gray);
  margin-right: 20px;
}

.hero-date i,
.hero-location i {
  color: var(--color-pink-accent);
  margin-right: 8px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 12px 24px;
}

.hero-buttons .btn-outline-light {
  border-color: var(--color-purple);
  color: var(--color-purple);
}

.hero-buttons .btn-outline-light:hover {
  background-color: var(--color-purple);
  color: var(--color-white);
}

/* Hero Decoration - circles only */
.hero-decoration {
  position: relative;
  height: 200px;
  overflow: visible;
}

/* Sponsor Slideshow */
.sponsor-slideshow {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-slide.active {
  opacity: 1;
}

.sponsor-slide a {
  display: block;
}

.sponsor-slide img {
  max-width: 280px;
  max-height: 130px;
  object-fit: contain;
}

.sponsor-slideshow-label {
  text-align: center;
  color: var(--color-pink-accent);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

/* Background circles container */
.hero-circles-bg {
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  z-index: 1;
}

.hero-circles-bg .circle {
  opacity: 0.7;
}

/* Circles positioning */
.hero-circles-bg .circle-1 {
  width: 120px;
  height: 120px;
  background-color: var(--color-purple);
  top: -15px;
  right: -20px;
}

.hero-circles-bg .circle-2 {
  width: 90px;
  height: 90px;
  background-color: var(--color-pink);
  top: 30px;
  left: -20px;
}

.hero-circles-bg .circle-3 {
  width: 70px;
  height: 70px;
  background-color: var(--color-green);
  bottom: -10px;
  right: 30px;
}

.hero-circles-bg .circle-4 {
  width: 100px;
  height: 100px;
  background-color: var(--color-pink-accent);
  bottom: -20px;
  left: 50px;
}

.hero-circles-bg .circle-5 {
  width: 60px;
  height: 60px;
  background-color: var(--color-purple-light);
  top: 100px;
  right: -30px;
}

.hero-circles-bg .circle-6 {
  width: 80px;
  height: 80px;
  background-color: var(--color-green-light);
  top: -25px;
  left: 60px;
}

.hero-circles-bg .circle-7 {
  width: 50px;
  height: 50px;
  background-color: var(--color-pink-dark);
  bottom: 50px;
  left: -25px;
}

.hero-circles-bg .circle-8 {
  width: 55px;
  height: 55px;
  background-color: var(--color-purple);
  bottom: -25px;
  right: -20px;
}

.hero-circles-bg .circle-9 {
  width: 45px;
  height: 45px;
  background-color: var(--color-green);
  top: 150px;
  right: -30px;
}

.hero-circles-bg .circle-10 {
  width: 50px;
  height: 50px;
  background-color: var(--color-pink);
  top: -20px;
  right: 100px;
}

/* ============================================
   PAGE HEADER (for non-homepage)
   ============================================ */
.page-header {
  background-color: var(--color-gray-light);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.page-header-decoration {
  position: relative;
  height: 40px;
}

.page-header .circle-small-1 {
  width: 60px;
  height: 60px;
  background-color: var(--color-purple);
  top: -10px;
  right: 100px;
  opacity: 0.3;
}

.page-header .circle-small-2 {
  width: 40px;
  height: 40px;
  background-color: var(--color-pink);
  top: 0;
  right: 180px;
  opacity: 0.35;
}

.page-header .circle-small-3 {
  width: 50px;
  height: 50px;
  background-color: var(--color-green);
  top: -5px;
  right: 50px;
  opacity: 0.25;
}

/* ============================================
   DECORATIVE CIRCLES
   ============================================ */
.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}



/* Footer circles */
.footer-circles {
  position: relative;
  height: 150px;
}

.footer-circles .circle-footer-1 {
  width: 100px;
  height: 100px;
  background-color: var(--color-green);
  left: 10%;
  top: 20px;
}

.footer-circles .circle-footer-2 {
  width: 70px;
  height: 70px;
  background-color: var(--color-pink);
  left: 25%;
  top: 50px;
}

.footer-circles .circle-footer-3 {
  width: 120px;
  height: 120px;
  background-color: var(--color-purple);
  left: 40%;
  top: 10px;
}

.footer-circles .circle-footer-4 {
  width: 90px;
  height: 90px;
  background-color: var(--color-green-light);
  left: 55%;
  top: 40px;
}

.footer-circles .circle-footer-5 {
  width: 80px;
  height: 80px;
  background-color: var(--color-pink-accent);
  left: 70%;
  top: 20px;
}

.footer-circles .circle-footer-6 {
  width: 110px;
  height: 110px;
  background-color: var(--color-purple-light);
  left: 85%;
  top: 30px;
  opacity: 0.45;
}

.footer-circles .circle-footer-7 {
  width: 65px;
  height: 65px;
  background-color: var(--color-green);
  left: 5%;
  top: 70px;
  opacity: 0.35;
}

.footer-circles .circle-footer-8 {
  width: 50px;
  height: 50px;
  background-color: var(--color-pink-dark);
  left: 92%;
  top: 80px;
}

/* ============================================
   HOMEPAGE
   ============================================ */

/* Hero Section with Background Slideshow */
.hero-section {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

/* Background Slideshow */
.intro-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.intro-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.intro-slideshow .slide.active {
  opacity: 1;
}

.intro-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Home Intro Section */
.home-intro-section {
  padding: 60px 0;
  background-color: var(--color-white);
}

.home-intro-section .container {
  padding: 0;
}

.home-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 12px;
}

.home-intro .keyword-pink {
  color: var(--color-pink);
  font-weight: 700;
}

.home-intro .keyword-green {
  color: var(--color-green);
  font-weight: 700;
}

.home-intro .keyword-purple {
  color: var(--color-purple);
  font-weight: 700;
}

.home-intro .keyword-pink-accent {
  color: var(--color-pink-accent);
  font-weight: 700;
}

.home-intro p {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 15px;
}

.home-intro p:last-child {
  margin-bottom: 0;
}

/* Featured Artists */
.featured-artists {
  padding: 60px 0;
  background-color: var(--color-gray-light);
}

.section-title {
  text-align: center;
  color: var(--color-green);
  margin-bottom: 40px;
}

.artist-card {
  background: var(--color-white);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.artist-card:hover {
  transform: translateY(-5px);
}

.artist-card > a {
  flex-shrink: 0;
}

.artist-card-title {
  text-align: center;
  padding: 15px;
  margin: 0;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-card:hover {
  transform: translateY(-5px);
}

.artist-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background-color: var(--color-pink);
}

.artist-card-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-white);
}

.artist-card-title {
  text-align: center;
  padding: 15px;
  margin: 0;
}

.artist-card-title a {
  color: var(--color-pink-accent);
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.artist-card-title a:hover {
  color: var(--color-green);
}

/* ============================================
   ARTIESTEN (ARTISTS) PAGE
   ============================================ */
.artists-grid {
  padding: 60px 0;
}

/* ============================================
   PROGRAMMA (PROGRAMME) PAGE
   ============================================ */
.programma-page {
  padding: 60px 0;
}

/* Programme Filters Container */
.programme-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.day-tabs {
  display: flex;
  gap: 0;
}

/* Location Filter */
.location-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-filter label {
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--color-purple);
}

.location-filter label i {
  margin-right: 5px;
}

.location-filter select {
  padding: 10px 15px;
  border: 2px solid var(--color-purple);
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 1rem;
  background-color: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
  min-width: 180px;
}

.location-filter select:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 2px rgba(50, 98, 14, 0.2);
}

.day-tab {
  padding: 12px 30px;
  background-color: var(--color-gray-light);
  border: 2px solid var(--color-purple);
  border-right: none;
  font-family: var(--font-main);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-purple);
}

.day-tab:first-child {
  border-radius: 4px 0 0 4px;
}

.day-tab:last-child {
  border-right: 2px solid var(--color-purple);
  border-radius: 0 4px 4px 0;
}

.day-tab:hover {
  background-color: var(--color-pink);
}

.day-tab.active {
  background-color: var(--color-purple);
  color: var(--color-white);
}

/* Programme Table */
.programme-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.programme-table thead {
  background-color: var(--color-purple);
  color: var(--color-white);
}

.programme-table th {
  padding: 12px 10px;
  text-align: left;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.programme-table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.programme-table tbody tr:hover {
  background-color: #fafafa;
}

.programme-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.programme-table tbody tr:nth-child(even):hover {
  background-color: #f0f0f0;
}

/* Column widths */
.col-tijd {
  width: 70px;
  font-weight: 600;
  color: var(--color-purple);
  white-space: nowrap;
}

.col-artiest {
  width: 30%;
  font-weight: 500;
}

.col-podium {
  width: 120px;
}

.col-info {
  color: var(--color-gray);
  font-size: 0.95rem;
}

.artiest-naam {
  display: inline;
}

.artist-info-link {
  display: inline-block;
  margin-left: 8px;
  color: var(--color-purple);
  font-size: 0.9em;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.artist-info-link:hover {
  opacity: 1;
  color: var(--color-green);
}

.podium-badge {
  display: inline-block;
  background-color: var(--color-pink);
  color: var(--color-purple);
  padding: 2px 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 3px;
}

.duur {
  display: inline-block;
  color: #999;
  font-size: 0.85rem;
  margin-left: 8px;
}

.duur::before {
  content: "• ";
}

/* Last-minute changes */
.programme-table tr.has-change {
  background-color: #fff5f5 !important;
}

.programme-table tr.has-change .artiest-naam {
  text-decoration: line-through;
  opacity: 0.6;
}

.aanpassing {
  display: block;
  color: #dc3545;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 4px;
}

.aanpassing i {
  margin-right: 4px;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .programme-table {
    font-size: 0.9rem;
  }
  
  .programme-table th,
  .programme-table td {
    padding: 8px 6px;
  }
  
  .col-info {
    display: none;
  }
  
  .col-podium {
    width: auto;
  }
  
  .podium-badge {
    font-size: 0.7rem;
    padding: 2px 6px;
  }
}

/* ============================================
   CONTENT PAGES (FAQ, Contact, etc.)
   ============================================ */
.content-page {
  padding: 60px 0;
}

.page-title {
  color: var(--color-green);
  text-align: center;
  margin-bottom: 40px;
}

.content-body {
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Accordion */
.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--color-gray-light);
}

.faq-question {
  background-color: var(--color-gray-light);
  padding: 20px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: var(--color-pink);
}

.faq-answer {
  padding: 20px;
  display: none;
}

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

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--color-gray-light);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-green);
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-main);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-green);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-green-light);
}

.btn-secondary {
  background-color: var(--color-pink);
  color: var(--color-green);
}

.btn-secondary:hover {
  background-color: var(--color-pink-accent);
}

.btn-purple {
  background-color: var(--color-purple);
  color: var(--color-white);
}

.btn-purple:hover {
  background-color: var(--color-purple-light);
  color: var(--color-white);
}

/* ============================================
   VRIJWILLIGERS (VOLUNTEERS) PAGE
   ============================================ */
.volunteers-cta {
  background-color: var(--color-pink);
  padding: 60px;
  text-align: center;
  margin-bottom: 40px;
}

.volunteers-cta h2 {
  color: var(--color-green);
  margin-bottom: 20px;
}

.volunteers-info {
  padding: 40px 0;
}

.info-section {
  margin-bottom: 40px;
}

.info-section h3 {
  color: var(--color-green);
  border-bottom: 3px solid var(--color-pink);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* ============================================
   ARTIESTEN INFO (TECHNICAL RIDER) PAGE
   ============================================ */
.tech-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tech-card {
  background-color: var(--color-gray-light);
  padding: 30px;
}

.tech-card h3 {
  color: var(--color-green);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.tech-card ul {
  margin: 0;
  padding-left: 20px;
}

.tech-card li {
  margin-bottom: 10px;
}

/* ============================================
   SPONSORS PAGE
   ============================================ */
.sponsor-intro {
  max-width: 700px;
  margin: 0 auto;
}

.sponsor-intro .lead {
  font-size: 1.3rem;
  color: var(--color-purple);
}

.sponsor-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.sponsor-package {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-package:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.package-header {
  padding: 30px;
  text-align: center;
}

.package-header h3 {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
}

.package-benefits {
  list-style: none;
  padding: 30px;
  margin: 0;
  background-color: var(--color-white);
}

.package-benefits li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray-light);
  position: relative;
  padding-left: 30px;
}

.package-benefits li:last-child {
  border-bottom: none;
}

.package-benefits li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-green);
}

/* Bronze Package */
.sponsor-package.bronze .package-header {
  background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
  color: var(--color-white);
}

/* Silver Package */
.sponsor-package.silver .package-header {
  background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
  color: var(--color-black);
}

/* Gold Package */
.sponsor-package.gold .package-header {
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: var(--color-black);
}

.sponsor-package.gold {
  border: 3px solid #ffd700;
}

.sponsor-name-text {
  display: block;
  padding: 20px;
  background-color: var(--color-gray-light);
  color: var(--color-gray);
  font-size: 1rem;
  text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  margin-top: auto;
}

.footer-decoration {
  background-color: var(--color-gray-light);
  overflow: hidden;
}

.footer-sponsors {
  padding: 40px 0;
  background-color: var(--color-white);
}

.sponsors-title {
  text-align: center;
  color: var(--color-green);
  margin-bottom: 30px;
  font-size: 1.3rem;
}

.sponsor-item {
  text-align: center;
  padding: 20px;
  max-width: 180px;
}

.sponsor-logo {
  max-height: 80px;
  width: auto;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.sponsor-logo:hover {
  filter: grayscale(0);
}

.sponsor-name {
  display: block;
  padding: 20px;
  background-color: var(--color-gray-light);
  color: var(--color-gray);
  font-size: 0.9rem;
}

.footer-links {
  background-color: var(--color-purple);
  color: var(--color-white);
  padding: 50px 0;
}

.footer-links h4 {
  color: var(--color-pink);
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: var(--color-white);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--color-pink);
}

.footer-info {
  color: var(--color-white);
  opacity: 0.8;
  margin-bottom: 15px;
}

.footer-info a {
  color: var(--color-pink);
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--color-pink);
  color: var(--color-purple);
}

.footer-tagline {
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-bottom {
  background-color: #1e1a4a;
  color: var(--color-white);
  padding: 15px 0;
}

.footer-copyright {
  font-size: 0.85rem;
  opacity: 0.6;
}

.programme-notice {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .hero-decoration {
    display: none;
  }
  
  .hero-section {
    padding: 50px 0;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-date,
  .hero-location {
    margin-right: 0;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .navbar-nav {
    padding: 20px 0;
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    padding: 12px 16px !important;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .volunteers-cta {
    padding: 40px 20px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .programme-filters {
    flex-direction: column;
    align-items: stretch;
  }
  
  .day-tabs {
    flex-direction: column;
    width: 100%;
  }
  
  .day-tab {
    width: 100%;
    text-align: center;
    border-right: 2px solid var(--color-purple);
    border-bottom: none;
  }
  
  .day-tab:first-child {
    border-radius: 4px 4px 0 0;
  }
  
  .day-tab:last-child {
    border-bottom: 2px solid var(--color-purple);
    border-radius: 0 0 4px 4px;
  }
  
  .location-filter {
    flex-direction: column;
    align-items: stretch;
  }
  
  .location-filter select {
    width: 100%;
  }
  
  .timeline {
    padding-left: 30px;
  }
  
  .timeline::before {
    left: 10px;
  }
  
  .timeline-item::before {
    left: -26px;
    width: 16px;
    height: 16px;
  }
  
  .footer-links .col-md-4 {
    margin-bottom: 40px;
  }
  
  .footer-links .col-md-4:last-child {
    margin-bottom: 0;
  }
  
  .footer-bottom .col-md-4 {
    text-align: center !important;
    margin-bottom: 20px;
  }
}
