/* =================================================================
   WIENER GEDÄCHTNISWEGE - SCANDINAVIAN CLEAN DESIGN
   CSS STYLESHEET - COMPLETE STYLES FOR ALL PAGES
   ================================================================= */

/* =================================================================
   CSS RESET & BASE STYLES
   ================================================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* =================================================================
   TYPOGRAPHY - SCANDINAVIAN CLEAN
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2C3E50;
  margin-bottom: 20px;
}

h1 {
  font-size: 42px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #4A5568;
}

blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  padding: 24px;
  margin: 32px 0;
  border-left: 4px solid #D4AF37;
  background-color: #F7F7F5;
  color: #2C3E50;
}

/* =================================================================
   LAYOUT CONTAINERS
   ================================================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* =================================================================
   MOBILE MENU SYSTEM
   ================================================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #FFFFFF;
  border: 2px solid #E8E6E1;
  border-radius: 4px;
  font-size: 24px;
  color: #2C3E50;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #F7F7F5;
  border-color: #D4AF37;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1002;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(44, 62, 80, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #D4AF37;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  padding: 16px 20px;
  font-size: 18px;
  color: #2C3E50;
  border-radius: 4px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background-color: #F7F7F5;
  border-left-color: #D4AF37;
  padding-left: 28px;
}

/* =================================================================
   SITE HEADER
   ================================================================= */

.site-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E6E1;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 16px;
  color: #2C3E50;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D4AF37;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #8B7355;
}

/* =================================================================
   BUTTONS - SCANDINAVIAN CLEAN STYLE
   ================================================================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lora', Georgia, serif;
}

.btn-primary {
  background-color: #2C3E50;
  color: #FFFFFF;
  border-color: #2C3E50;
}

.btn-primary:hover {
  background-color: #FFFFFF;
  color: #2C3E50;
  border-color: #2C3E50;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #2C3E50;
  border-color: #2C3E50;
}

.btn-secondary:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.btn-small {
  padding: 10px 24px;
  font-size: 14px;
}

/* =================================================================
   HERO SECTION - HOMEPAGE
   ================================================================= */

.hero {
  background: linear-gradient(135deg, #F7F7F5 0%, #E8E6E1 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
}

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

.hero h1 {
  font-size: 48px;
  color: #2C3E50;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =================================================================
   PAGE HERO - SUBPAGES
   ================================================================= */

.page-hero {
  background-color: #F7F7F5;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid #E8E6E1;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #4A5568;
}

.breadcrumb {
  font-size: 14px;
  color: #8B7355;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb a {
  color: #8B7355;
}

.breadcrumb a:hover {
  color: #D4AF37;
}

.breadcrumb span {
  color: #2C3E50;
}

/* =================================================================
   SECTIONS - GENERAL LAYOUT
   ================================================================= */

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.introduction,
.tours-overview,
.routes-introduction,
.historical-introduction,
.mission-vision,
.organization-story,
.education-introduction,
.contact-introduction {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-intro {
  font-size: 18px;
  color: #4A5568;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* =================================================================
   CARDS & GRID LAYOUTS - FLEXBOX ONLY
   ================================================================= */

.tour-grid,
.route-grid,
.info-grid,
.team-grid,
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.tour-card,
.route-card,
.info-card,
.team-member,
.explore-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E8E6E1;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
}

.tour-card:hover,
.route-card:hover,
.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
  border-color: #D4AF37;
}

.tour-card h3,
.route-card h3,
.info-card h3 {
  font-size: 22px;
  color: #2C3E50;
  margin-bottom: 12px;
}

.tour-meta {
  font-size: 14px;
  color: #8B7355;
  font-weight: 600;
  margin-bottom: 12px;
}

.tour-card p,
.route-card p {
  flex-grow: 1;
  color: #4A5568;
  line-height: 1.6;
}

/* =================================================================
   DETAILED TOUR CARDS
   ================================================================= */

.tour-detailed-card {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #E8E6E1;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}

.tour-detailed-card h3 {
  font-size: 26px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.highlights {
  margin: 24px 0;
  padding-left: 24px;
}

.highlights li {
  color: #4A5568;
  margin-bottom: 8px;
  line-height: 1.6;
}

.meeting-point {
  background-color: #F7F7F5;
  padding: 16px;
  border-radius: 4px;
  margin: 20px 0;
  border-left: 3px solid #D4AF37;
}

/* =================================================================
   STATION CARDS
   ================================================================= */

.station-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E8E6E1;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}

.station-card h3 {
  font-size: 24px;
  color: #2C3E50;
  margin-bottom: 12px;
}

.station-address {
  font-size: 14px;
  color: #8B7355;
  font-weight: 600;
  margin-bottom: 16px;
}

/* =================================================================
   TIMELINE - FLEXBOX LAYOUT
   ================================================================= */

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  padding-left: 32px;
  border-left: 2px solid #E8E6E1;
}

.timeline-item {
  position: relative;
  padding-left: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: #D4AF37;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 2px #E8E6E1;
}

.timeline-item h3 {
  font-size: 20px;
  color: #2C3E50;
  margin-bottom: 12px;
}

/* =================================================================
   HISTORICAL PERIODS
   ================================================================= */

.period-section {
  background-color: #F7F7F5;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #8B7355;
  margin-bottom: 32px;
}

.period-section h3 {
  font-size: 24px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.content-warning {
  background-color: #FFF8E1;
  padding: 20px;
  border-radius: 4px;
  border-left: 4px solid #D4AF37;
  margin: 24px 0;
  color: #2C3E50;
}

/* =================================================================
   TEAM SECTION
   ================================================================= */

.team-member {
  text-align: center;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E8E6E1;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.role {
  font-size: 14px;
  color: #8B7355;
  font-weight: 600;
  margin-bottom: 16px;
}

/* =================================================================
   VALUES LIST
   ================================================================= */

.values-list {
  margin: 24px 0;
  padding-left: 24px;
}

.values-list li {
  color: #4A5568;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 16px;
}

/* =================================================================
   EDUCATION PROGRAMS
   ================================================================= */

.program-card {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #E8E6E1;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}

.program-card h3 {
  font-size: 26px;
  color: #2C3E50;
  margin-bottom: 12px;
}

.program-meta {
  font-size: 14px;
  color: #8B7355;
  font-weight: 600;
  margin-bottom: 16px;
}

.program-features {
  margin: 24px 0;
  padding-left: 24px;
}

.program-features li {
  color: #4A5568;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* =================================================================
   CONTACT PAGE
   ================================================================= */

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.contact-form-section,
.contact-details-section {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
}

.form-note {
  background-color: #F7F7F5;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E8E6E1;
}

.contact-methods {
  list-style: none;
  margin-top: 20px;
  padding-left: 0;
}

.contact-methods li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #2C3E50;
  font-weight: 500;
}

.contact-methods img {
  width: 20px;
  height: 20px;
}

.contact-info {
  background-color: #F7F7F5;
  padding: 32px;
  border-radius: 4px;
}

.contact-info h3 {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 12px;
  margin-top: 24px;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  color: #4A5568;
  line-height: 1.6;
}

/* =================================================================
   BOOKING INFORMATION
   ================================================================= */

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.info-box {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E8E6E1;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}

.info-box h3 {
  font-size: 20px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.info-box ol {
  padding-left: 24px;
}

.info-box li {
  color: #4A5568;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* =================================================================
   THANK YOU PAGE
   ================================================================= */

.thank-you-hero {
  background: linear-gradient(135deg, #F7F7F5 0%, #E8E6E1 100%);
  padding: 100px 20px;
  margin-bottom: 60px;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #D4AF37;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-details {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.explore-more {
  background-color: #F7F7F5;
  padding: 60px 20px;
}

.explore-more h2 {
  text-align: center;
  margin-bottom: 16px;
}

.explore-more > p {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 40px;
}

/* =================================================================
   LEGAL PAGES
   ================================================================= */

.legal-hero {
  background-color: #F7F7F5;
}

.last-updated {
  font-size: 14px;
  color: #8B7355;
  font-style: italic;
}

.legal-content {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.legal-content h2 {
  font-size: 24px;
  color: #2C3E50;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 20px;
  color: #2C3E50;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0;
  padding-left: 32px;
}

.legal-content li {
  color: #4A5568;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* =================================================================
   FOOTER
   ================================================================= */

.site-footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-section p {
  font-size: 14px;
  color: #E8E6E1;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  font-size: 14px;
  color: #E8E6E1;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #D4AF37;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 230, 225, 0.2);
}

.footer-bottom p {
  font-size: 14px;
  color: #E8E6E1;
}

/* =================================================================
   COOKIE CONSENT BANNER
   ================================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #E8E6E1;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(44, 62, 80, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1 1 400px;
  font-size: 14px;
  color: #4A5568;
  margin: 0;
}

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

.cookie-banner .btn {
  padding: 10px 24px;
  font-size: 14px;
  white-space: nowrap;
}

/* =================================================================
   COOKIE MODAL
   ================================================================= */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 80, 0.8);
  z-index: 1003;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal h2 {
  font-size: 28px;
  color: #2C3E50;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F7F7F5;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background-color: #E8E6E1;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.cookie-toggle.active {
  background-color: #D4AF37;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  .site-header {
    padding: 16px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Card layouts */
  .tour-card,
  .route-card,
  .info-card,
  .team-member,
  .info-box {
    flex: 1 1 100%;
  }
  
  /* Contact grid */
  .contact-form-section,
  .contact-details-section {
    flex: 1 1 100%;
  }
  
  /* Timeline adjustments */
  .timeline-content {
    padding-left: 24px;
  }
  
  .timeline-item {
    padding-left: 24px;
  }
  
  .timeline-item::before {
    left: -30px;
  }
  
  /* Footer adjustments */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Button adjustments */
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* Section padding */
  .section,
  .introduction,
  .tours-overview,
  .routes-introduction,
  .historical-introduction,
  .mission-vision,
  .organization-story,
  .education-introduction,
  .contact-introduction,
  .confirmation-details,
  .legal-content {
    padding: 32px 16px;
  }
  
  /* Card padding */
  .tour-detailed-card,
  .station-card,
  .program-card {
    padding: 24px;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-banner .btn {
    width: 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .tour-card,
  .route-card,
  .info-card,
  .team-member,
  .info-box {
    flex: 1 1 calc(50% - 24px);
  }
  
  .footer-section {
    flex: 1 1 calc(50% - 40px);
  }
}

/* =================================================================
   ANIMATIONS & TRANSITIONS
   ================================================================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  animation: fadeIn 0.6s ease;
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* =================================================================
   ACCESSIBILITY
   ================================================================= */

:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* =================================================================
   PRINT STYLES
   ================================================================= */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .site-header,
  .site-footer {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  .hero,
  .page-hero {
    background: none;
    border: none;
  }
}

/* =================================================================
   END OF STYLESHEET
   ================================================================= */