/* ===== CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #2C1810;
  background-color: #F8F6F3;
  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;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== TYPOGRAPHY - PROFESSIONAL CORPORATE ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C1810;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: #4A4A4A;
  line-height: 1.7;
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ===== HEADER - PROFESSIONAL BLUE/GRAY ===== */
header {
  background: linear-gradient(135deg, #1e3a5f 0%, #2C1810 100%);
  padding: 16px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 900;
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: rgba(212, 175, 55, 0.2);
  color: #D4AF37;
}

/* ===== MOBILE MENU TOGGLE BUTTON ===== */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #1e3a5f;
  color: #FFFFFF;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #D4AF37;
  transform: scale(1.05);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1e3a5f 0%, #2C1810 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  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;
  color: #FFFFFF;
  font-size: 32px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  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 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background-color: rgba(212, 175, 55, 0.2);
  border-left-color: #D4AF37;
  color: #D4AF37;
  padding-left: 24px;
}

/* ===== HERO SECTION - PROFESSIONAL CORPORATE ===== */
.hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #4a5f7f 50%, #8B4513 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  color: #E8E8E8;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS - PROFESSIONAL STYLE ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #D4AF37;
  color: #2C1810;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: #C19B2B;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: #1e3a5f;
}

/* ===== SECTIONS - CONSISTENT SPACING ===== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.introduction,
.mission,
.story,
.tours-intro,
.workshops-intro,
.events-intro,
.value-proposition,
.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* ===== PAGE HERO (SUBPAGES) ===== */
.page-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #4a5f7f 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 0;
}

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

.page-hero p {
  color: #E8E8E8;
  font-size: 18px;
  margin-bottom: 0;
}

.kulturpass-hero {
  background: linear-gradient(135deg, #D4AF37 0%, #8B4513 100%);
}

.price-hero {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 24px 0;
}

.thank-you-hero {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

/* ===== SERVICE CARDS - FLEXBOX GRID ===== */
.services-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card,
.tour-card,
.workshop-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 100%;
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.tour-card:hover,
.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-card h3,
.tour-card h3,
.workshop-card h3 {
  color: #1e3a5f;
  margin-bottom: 12px;
}

.service-card p,
.tour-card p,
.workshop-card p {
  color: #4A4A4A;
  flex-grow: 1;
}

.service-card ul,
.tour-card ul,
.workshop-card ul {
  margin: 16px 0;
  padding-left: 20px;
}

.service-card li,
.tour-card li,
.workshop-card li {
  margin-bottom: 8px;
  color: #4A4A4A;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
}

.price-highlight {
  font-size: 42px;
  font-weight: 700;
  color: #D4AF37;
  margin: 24px 0;
  text-align: center;
}

/* ===== FEATURES GRID - FLEXBOX ===== */
.features-grid,
.philosophy-grid,
.themes-grid,
.event-types-grid,
.tiers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature,
.philosophy-item,
.theme-item,
.event-type,
.tier {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature:hover,
.philosophy-item:hover,
.theme-item:hover,
.event-type:hover,
.tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.feature h3,
.philosophy-item h3,
.theme-item h3,
.event-type h3,
.tier h3 {
  color: #1e3a5f;
  margin-bottom: 12px;
  font-size: 20px;
}

.tier-price {
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
}

/* ===== WHY US SECTION ===== */
.why-us {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 12px;
  padding: 50px 20px;
}

.why-us h2 {
  text-align: center;
  color: #1e3a5f;
  margin-bottom: 40px;
}

/* ===== TESTIMONIALS - READABLE CONTRAST ===== */
.testimonials {
  background: #F0F0F0;
  border-radius: 12px;
  padding: 50px 20px;
}

.testimonials h2 {
  text-align: center;
  color: #1e3a5f;
  margin-bottom: 40px;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #D4AF37;
}

.testimonial-card p {
  color: #2C1810;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #1e3a5f;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}

/* ===== KULTURPASS PROMO ===== */
.kulturpass-promo {
  background: linear-gradient(135deg, #1e3a5f 0%, #2C1810 100%);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 50px 20px;
  text-align: center;
}

.kulturpass-promo h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.kulturpass-promo p {
  color: #E8E8E8;
  margin-bottom: 20px;
}

/* ===== BENEFITS LIST ===== */
.benefits-list,
.topics-list,
.steps-list {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 0;
}

.benefits-list li,
.topics-list li {
  background: #FFFFFF;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 6px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  list-style: none;
}

.steps-list {
  counter-reset: step-counter;
}

.steps-list li {
  background: #FFFFFF;
  padding: 20px 20px 20px 60px;
  margin-bottom: 16px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  list-style: none;
}

.steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #D4AF37;
  color: #2C1810;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

/* ===== SAVINGS SECTION ===== */
.savings {
  background: #F8F6F3;
  border-radius: 12px;
  padding: 40px 20px;
}

.savings ul {
  max-width: 600px;
  margin: 20px auto;
  padding-left: 0;
}

.savings li {
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
  list-style: none;
}

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

/* ===== CONTACT CTA ===== */
.contact-cta {
  background: linear-gradient(135deg, #1e3a5f 0%, #4a5f7f 100%);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 50px 20px;
  text-align: center;
}

.contact-cta h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.contact-cta p {
  color: #E8E8E8;
  margin-bottom: 16px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.contact-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-card h3 {
  color: #1e3a5f;
  margin-bottom: 16px;
}

/* ===== FORM STYLES ===== */
.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #2C1810;
  font-weight: 600;
  font-size: 14px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #D0D0D0;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #1e3a5f;
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-field input[type="checkbox"] {
  margin-right: 8px;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  color: #1e3a5f;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

/* ===== COOKIE SETTINGS ===== */
.cookie-settings {
  max-width: 600px;
  margin: 0 auto;
}

.cookie-toggle {
  background: #FFFFFF;
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.cookie-toggle label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* ===== CONFIRMATION & THANK YOU ===== */
.confirmation,
.next-steps,
.explore-more,
.contact-reminder {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.explore-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* ===== FOOTER - PROFESSIONAL CORPORATE ===== */
footer {
  background: linear-gradient(135deg, #1e3a5f 0%, #2C1810 100%);
  color: #FFFFFF;
  padding: 50px 20px 30px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-section h3 {
  color: #D4AF37;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #E8E8E8;
  margin-bottom: 8px;
  font-size: 14px;
}

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

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

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

.copyright {
  text-align: center;
  color: #B0B0B0;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e3a5f;
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner p {
  color: #FFFFFF;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #4A4A4A;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: #2C1810;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F8F6F3;
  border-radius: 8px;
}

.cookie-category h3 {
  margin-bottom: 12px;
  color: #1e3a5f;
}

.cookie-category-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

/* ===== RESPONSIVE - TABLET ===== */
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 38px;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  
  .service-card,
  .tour-card,
  .workshop-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .hero h1 {
    font-size: 56px;
  }
  
  .page-hero h1 {
    font-size: 48px;
  }
}

/* ===== RESPONSIVE - DESKTOP ===== */
@media (min-width: 1024px) {
  .service-card,
  .tour-card,
  .workshop-card {
    flex: 1 1 calc(33.333% - 16px);
  }
  
  .feature,
  .philosophy-item,
  .theme-item,
  .event-type {
    flex: 1 1 calc(25% - 18px);
  }
  
  .contact-card {
    flex: 1 1 calc(25% - 18px);
  }
  
  section {
    padding: 60px 20px;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-32 {
  margin-top: 32px;
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===== PRINT STYLES ===== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}