body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding-top: 60px;
  background: #f9f9f9;
  color: #333;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #004165;
  color: white;
  padding: 8px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-weight: bold;
  font-size: 1.2em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  transition: 0.3s;
}

.nav-links li a:hover {
  background: #772432;
  border-radius: 5px;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5em;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #004165;
    width: 100%;
    text-align: center;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* ===== HERO (Professional Toastmasters with Division Day Image) ===== */
.hero {
  background: linear-gradient(to right, #772432 0%, #004165 100%);
  text-align: center;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

/* Division Day image overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('division_day.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  z-index: 0;
}

/* Dark overlay for better text readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

/* Hero text styling */
.hero-text {
  position: relative;
  z-index: 1;
  color: white;
}

.hero-text h1 {
  font-size: 3rem;
  margin: 0 0 30px 0;
  color: white;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.event-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 25px 0 30px;
  flex-wrap: wrap;
}

.event-info {
  display: flex;
  align-items: center;
}

.event-separator {
  color: white;
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.7;
}

.info-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
}

.event-location {
  margin: 15px auto 0;
  text-align: center;
}

.venue-name {
  font-size: 1rem;
  font-weight: 500;
  color: white;
  margin: 0 0 5px 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
}

.venue-address {
  font-size: 0.95rem;
  font-weight: 400;
  color: white;
  margin: 0;
  opacity: 0.9;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

.hero-text p.tagline {
  font-size: 1.2rem;
  margin: 20px 0 30px;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: 1.2rem;
  margin: 10px 0 30px;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Language Toggle - Now independent */
.language-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 25px 0 30px 0;
}

/* Hero Description Section */
.hero-description {
  margin: 0 auto 30px;
  max-width: 800px;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.lang-btn.active {
  background: #F2DF74;
  color: #004165;
  border-color: #F2DF74;
  text-shadow: none;
}

/* Hero Text Content - LARGER for persuasion */
.hero-lang-content {
  display: none;
  font-size: 1.5rem;
  line-height: 2.1;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  margin: 0;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.hero-lang-content.active {
  display: block;
}

/* Hero Opening - The emotional hook that stands out */
.hero-opening {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 400;
  color: white;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.3px;
  padding: 25px 0;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(242, 223, 116, 0.4);
  font-style: italic;
}

.hero-lang-content strong {
  font-weight: 700;
  color: #F2DF74;
  font-size: 1.1em;
}

/* Volunteer section language toggle - Simple styling with no hero overrides */
.volunteer-text-en,
.volunteer-text-de {
  display: none;
}

.volunteer-text-en.active,
.volunteer-text-de.active {
  display: block;
}

/* Small language toggle for volunteer sections */
.language-toggle-small {
  display: flex;
  gap: 10px;
  margin: 15px 0 20px 0;
  justify-content: flex-start;
}

.lang-btn-small {
  background: rgba(119, 36, 50, 0.08);
  color: #772432;
  border: 1px solid rgba(119, 36, 50, 0.3);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-shadow: none;
}

.lang-btn-small:hover {
  background: rgba(119, 36, 50, 0.15);
  border-color: rgba(119, 36, 50, 0.5);
}

.lang-btn-small.active {
  background: #772432;
  color: white;
  border-color: #772432;
}

/* Ticket CTA Block - Ticket count and button on same line */
.ticket-cta-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 25px;
  flex-wrap: wrap;
}

.ticket-cta-block .hero-lang-content {
  display: none;
}

.ticket-cta-block .hero-lang-content.active {
  display: inline-block;
}

/* Ticket Call-to-Action - Smaller, less prominent */
.ticket-cta {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 20px;
  background: rgba(119, 36, 50, 0.8);
  border-radius: 8px;
  border: 1px solid rgba(242, 223, 116, 0.6);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.ticket-count {
  font-size: 1.15rem;
  color: #F2DF74;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Optional: add a smooth fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.btn {
  background: #772432;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background: #004165;
}

/* Primary CTA Button - Smaller, supporting the content */
.btn-primary-cta {
  font-size: 1.2rem;
  padding: 14px 35px;
  background: #772432;
  border: 2px solid #F2DF74;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  margin: 25px 0;
  transform: scale(1);
  transition: all 0.3s ease;
}

.btn-primary-cta:hover {
  background: #8a2a3d;
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ===== CONTAINERS ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.container h2 {
  color: #004165;
  border-left: 6px solid #F2DF74;
  padding-left: 10px;
  margin-bottom: 20px;
}

/* ===== TABLE OF CONTENTS ===== */
#toc {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 40px 20px;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.toc-link {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 20px;
  min-height: 145px;
  border-radius: 10px;
  text-decoration: none;
  color: #004165;
  border-left: 5px solid #772432;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  position: relative;
  overflow: hidden;
}

.toc-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(242, 223, 116, 0.15) 0%, transparent 100%);
  border-radius: 0 0 0 100%;
  transition: all 0.3s ease;
}

.toc-title {
  font-weight: 700;
  font-size: 1.15em;
  color: #004165;
  line-height: 1.35;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.toc-name {
  font-weight: 600;
  font-size: 0.95em;
  color: #772432;
  line-height: 1.4;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.toc-audience {
  font-weight: 400;
  font-size: 0.85em;
  color: #666;
  line-height: 1.45;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 65, 101, 0.15);
  transition: color 0.3s ease;
}

.toc-link:hover {
  background: linear-gradient(135deg, #004165 0%, #003450 100%);
  border-left-color: #F2DF74;
  transform: translateX(6px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.toc-link:hover::before {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(242, 223, 116, 0.2) 0%, transparent 100%);
}

.toc-link:hover .toc-title {
  color: white;
}

.toc-link:hover .toc-name {
  color: #F2DF74;
}

.toc-link:hover .toc-audience {
  color: rgba(242, 223, 116, 0.9);
}

/* Special styling for 2026 speaker banner */
.toc-banner {
  background: linear-gradient(135deg, #772432 0%, #004165 100%);
  border-left-color: #F2DF74;
  border-left-width: 6px;
}

.toc-banner .toc-title {
  color: white;
  font-size: 1.2em;
}

.toc-banner .toc-name {
  color: #F2DF74;
  font-weight: 700;
  font-size: 1em;
}

.toc-banner:hover {
  background: linear-gradient(135deg, #8a2a3d 0%, #005580 100%);
  transform: translateX(8px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===== WORKSHOPS GRID ===== */
.workshops-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
}

/* Responsive breakpoints for optimal card display */
/* Ultra-wide screens (>1920px): 5 columns, max 500px per card */
@media (min-width: 1920px) {
  .workshops-grid {
    grid-template-columns: repeat(5, minmax(320px, 500px));
    justify-content: center;
  }
}

/* Wide screens (1440-1919px): 4 columns, max 540px per card */
@media (min-width: 1440px) and (max-width: 1919px) {
  .workshops-grid {
    grid-template-columns: repeat(4, minmax(340px, 540px));
    justify-content: center;
  }
}

/* Normal 15" laptop screens (1024-1439px): 3 columns, max 580px per card */
@media (min-width: 1024px) and (max-width: 1439px) {
  .workshops-grid {
    grid-template-columns: repeat(3, minmax(340px, 580px));
    justify-content: center;
  }
}

/* Tablet (768-1023px): 2 columns */
@media (min-width: 768px) and (max-width: 1023px) {
  .workshops-grid {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
  }
}

/* Mobile (<768px): 1 column */
@media (max-width: 767px) {
  .workshops-grid {
    grid-template-columns: 1fr;
  }
}

.workshop-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  scroll-margin-top: 100px;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Workshop Card Image */
.workshop-card-image {
  width: 100%;
  height: 322px;
  min-height: 322px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

.workshop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor to top-center to prioritize faces in portrait photos */
  object-position: center top;
}

/* Workshop Card Content */
.workshop-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Speaker Name */
.workshop-speaker-name {
  color: #004165;
  margin: 0 0 8px 0;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.3;
  flex-shrink: 0;
}

/* Club Name */
.workshop-club {
  color: #666;
  margin: 0 0 12px 0;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.3;
  flex-shrink: 0;
  font-style: italic;
}

/* Workshop Title */
.workshop-title {
  color: #772432;
  margin: 0 0 12px 0;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.4;
  flex-shrink: 0;
}

/* Workshop Description */
.workshop-description {
  margin: 16px 0 20px 0;
  flex-grow: 1;
}

.workshop-description p {
  color: #333;
  line-height: 1.7;
  margin: 0;
  font-size: 1em;
}

/* Show More Button */
.workshop-more-btn {
  background: #666666;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
}

.workshop-more-btn:hover {
  background: #555555;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.workshop-more-btn .btn-icon {
  transition: transform 0.3s ease;
}

/* Workshop Details (Collapsed Section) */
.workshop-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.workshop-details.expanded {
  max-height: 2000px;
}

/* Workshop Section in Details */
.workshop-section {
  margin: 20px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 65, 101, 0.1);
}

.workshop-section:first-child {
  border-top: none;
  padding-top: 0;
}

.workshop-section h5 {
  color: #004165;
  font-size: 1.05em;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.workshop-section p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Workshop Links */
.workshop-links {
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid rgba(0, 65, 101, 0.1);
  text-align: center;
  font-size: 1em;
  flex-shrink: 0;
}

.workshop-links a {
  color: #004165;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.workshop-links a:hover {
  color: #772432;
  text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .workshop-card-image {
    height: 320px;
    min-height: 320px;
    /* Balanced image height for mobile */
  }

  .workshop-card-image img {
    min-height: 320px;
    /* Ensure image fills full container height */
  }

  .workshop-card-content {
    padding: 12px 16px 16px 16px;
    /* Reduced top padding to minimize gap between image and text */
  }

  .workshop-speaker-name {
    font-size: 1.3em;
  }

  .workshop-club {
    font-size: 0.85em;
  }

  .workshop-title {
    font-size: 1.1em;
  }

  .workshop-more-btn {
    padding: 14px 20px;
    font-size: 0.95em;
  }
}

/* ===== TEAM CARDS ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Team Card Image - Small Circular */
.team-card-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 3px solid #F2DF74;
  flex-shrink: 0;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Placeholder for members without photos */
.team-card-no-image {
  background: linear-gradient(135deg, #004165 0%, #772432 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-initial {
  color: white;
  font-size: 2em;
  font-weight: bold;
  text-transform: uppercase;
}

/* Team Card Content */
.team-card-content {
  width: 100%;
}

.team-member-name {
  color: #004165;
  font-size: 1.1em;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.team-role {
  color: #772432;
  font-size: 0.9em;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.team-club {
  color: #666;
  font-size: 0.85em;
  font-style: italic;
  margin: 0 0 12px 0;
}

.team-motivation {
  color: #555;
  font-size: 0.9em;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.team-linkedin {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 65, 101, 0.1);
  text-align: center;
  font-size: 0.9em;
}

.team-linkedin a {
  color: #004165;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.team-linkedin a:hover {
  color: #772432;
  text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .team-card {
    padding: 16px;
  }

  .team-card-image {
    width: 80px;
    height: 80px;
  }

  .team-initial {
    font-size: 1.6em;
  }

  .team-member-name {
    font-size: 1em;
  }

  .team-motivation {
    font-size: 0.85em;
  }
}

/* ===== SCHEDULE SECTION ===== */
.schedule-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 15px 0;
  margin: 10px 0;
}

.schedule-section h2 {
  color: #004165;
  text-align: center;
  margin-bottom: 10px;
}

.schedule-datetime {
  color: #004165;
  font-size: 1.1em;
  font-weight: 600;
  margin: 10px 0;
}

.schedule-venue-inline {
  color: #666;
  font-size: 0.95em;
  margin: 10px 0;
  line-height: 1.4;
}

.schedule-section > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.05em;
}

.schedule-download-box {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  border-left: 6px solid #772432;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-download-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.schedule-icon {
  font-size: 4em;
  flex-shrink: 0;
  background: linear-gradient(135deg, #004165 0%, #772432 100%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 65, 101, 0.3);
}

.schedule-content {
  flex: 1;
}

.schedule-content h3 {
  color: #004165;
  font-size: 1.5em;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.schedule-content p {
  color: #555;
  margin: 5px 0;
  font-size: 1em;
  line-height: 1.5;
}

.schedule-subtitle {
  color: #777;
  font-size: 0.95em !important;
  font-style: italic;
}

.btn-schedule {
  background: linear-gradient(135deg, #772432 0%, #8a2a3d 100%);
  color: white;
  padding: 16px 32px;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(119, 36, 50, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-schedule:hover {
  background: linear-gradient(135deg, #8a2a3d 0%, #9b3248 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(119, 36, 50, 0.4);
}

/* Mobile Adjustments for Schedule */
@media (max-width: 767px) {
  .schedule-section {
    padding: 10px 0;
  }

  .schedule-download-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .schedule-icon {
    width: 80px;
    height: 80px;
    font-size: 3em;
  }

  .schedule-content h3 {
    font-size: 1.2em;
  }

  .schedule-content p {
    font-size: 0.95em;
  }

  .btn-schedule {
    width: 100%;
    padding: 14px 24px;
    font-size: 1em;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #004165;
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer h2 {
  color: white;
  border-left: none;
}

.footer a {
  color: #F2DF74;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer h3 {
  color: white;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.3em;
  text-align: left;
}

.footer p,
.footer ul {
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer ul {
  padding-left: 20px;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

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

  .event-details {
    gap: 12px;
  }

  .event-separator {
    font-size: 1rem;
  }

  .info-text {
    font-size: 1rem;
  }

  .event-location {
    margin: 12px auto 0;
  }

  .venue-name {
    font-size: 0.95rem;
  }

  .venue-address {
    font-size: 0.9rem;
  }

  .hero-lang-content {
    font-size: 1.2rem;
    line-height: 1.9;
  }

  .hero-opening {
    font-size: 1.05rem;
    line-height: 1.5;
    padding: 18px 0;
    letter-spacing: 0.2px;
  }

  .hero-lang-content strong {
    font-size: 1.05em;
  }

  .lang-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .ticket-cta-block {
    gap: 12px;
    margin: 20px 0;
  }

  .ticket-cta {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  .ticket-count {
    font-size: 1rem;
  }

  .btn-primary-cta {
    font-size: 1.05rem;
    padding: 12px 28px;
  }

  .workshops-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .workshop-card img {
    height: 250px;
  }
}

/* ===== SECTION OVERVIEW ===== */
.section-overview {
  background: #f8f9fa;
  padding: 20px 0;
  margin-top: 0;
  border-bottom: 2px solid #004165;
}

.overview-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.overview-card {
  background: white;
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 8px;
}

.overview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  border-color: #004165;
}

.overview-icon {
  font-size: 1.5em;
}

.overview-card h3 {
  color: #004165;
  font-size: 0.95em;
  margin: 0;
  font-weight: 600;
}

.overview-card p {
  display: none;
}

@media (max-width: 768px) {
  .section-overview {
    padding: 15px 0;
  }

  .overview-grid {
    gap: 8px;
  }

  .overview-card {
    padding: 10px 15px;
    font-size: 0.9em;
  }

  .overview-icon {
    font-size: 1.3em;
  }

  .overview-card h3 {
    font-size: 0.85em;
  }
}

@media (max-width: 480px) {
  .overview-grid {
    gap: 6px;
  }

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

  .overview-icon {
    font-size: 1.2em;
  }

  .overview-card h3 {
    font-size: 0.8em;
  }
}
