/* ============================================
   GAUMENREISE EUROPA - CREATIVE ARTISTIC STYLE
   Modern CSS Reset & Base Styles
   ============================================ */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2C2C2C;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFEFD5 50%, #FFE4E1 100%);
  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;
}

/* ============================================
   CREATIVE ARTISTIC COLOR SCHEME
   ============================================ */

:root {
  --primary-color: #8B4513;
  --primary-dark: #6B3410;
  --primary-light: #A0522D;
  --secondary-color: #2C5F2D;
  --secondary-light: #3A7A3C;
  --accent-color: #F4E4C1;
  --accent-bright: #FFD700;
  --creative-pink: #FF69B4;
  --creative-purple: #9370DB;
  --creative-teal: #20B2AA;
  --creative-coral: #FF6B6B;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --white: #FFFFFF;
  --background-cream: #FFF9F0;
  --border-light: #E8D5B7;
  --shadow-color: rgba(139, 69, 19, 0.15);
}

/* ============================================
   TYPOGRAPHY - CREATIVE & ARTISTIC
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-color);
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--creative-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-bright), var(--creative-pink));
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: var(--secondary-color);
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: var(--text-dark);
  font-size: 16px;
}

.hero-subheadline, .section-subheadline {
  font-size: 20px;
  color: var(--text-light);
  font-weight: 300;
  font-style: italic;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

/* Section Spacing */
section {
  padding: 60px 20px;
  margin-bottom: 0;
  position: relative;
}

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

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, var(--primary-color), var(--creative-purple));
  color: var(--white);
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: var(--accent-bright);
  transform: translateX(10px);
}

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

header {
  background: linear-gradient(135deg, var(--white), var(--accent-color));
  padding: 20px 0;
  box-shadow: 0 4px 20px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 3px solid var(--accent-bright);
}

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

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

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

.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 15px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-bright), var(--creative-pink));
  transition: width 0.3s ease;
}

.main-nav a:hover::before,
.main-nav a.active::before {
  width: calc(100% - 30px);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
  background: rgba(244, 228, 193, 0.3);
}

/* ============================================
   BUTTONS - CREATIVE STYLE
   ============================================ */

.cta-button,
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-button::before,
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before,
.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button,
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--creative-purple));
  color: var(--white);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.cta-button:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.btn-link {
  background: transparent;
  color: var(--secondary-color);
  padding: 10px 24px;
  border-bottom: 2px solid var(--secondary-color);
  border-radius: 0;
  font-weight: 700;
}

.btn-link:hover {
  color: var(--creative-teal);
  border-bottom-color: var(--creative-teal);
  transform: translateX(5px);
}

/* ============================================
   HERO SECTION - CREATIVE & VIBRANT
   ============================================ */

.hero {
  background: linear-gradient(135deg, rgba(244, 228, 193, 0.9), rgba(255, 182, 193, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23F4E4C1" width="1200" height="600"/><circle fill="%23FFD700" opacity="0.3" cx="200" cy="100" r="80"/><circle fill="%23FF69B4" opacity="0.3" cx="900" cy="400" r="120"/><circle fill="%239370DB" opacity="0.3" cx="600" cy="200" r="100"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-bright) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, -30px) rotate(180deg); }
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subheadline {
  font-size: 22px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

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

/* ============================================
   PAGE HERO - FOR INTERIOR PAGES
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, var(--accent-color), var(--creative-pink));
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 5px solid var(--accent-bright);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--primary-color);
  font-weight: 600;
}

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

.breadcrumb span {
  color: var(--text-light);
}

/* ============================================
   CARDS - CREATIVE DESIGN
   ============================================ */

.value-grid,
.tour-grid,
.experience-grid,
.destination-grid,
.testimonial-grid,
.process-grid,
.options-grid,
.faq-grid,
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card,
.tour-card,
.experience-item,
.destination-card,
.testimonial-card,
.process-step,
.option-card,
.faq-item,
.post-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-color);
  transition: all 0.4s ease;
  position: relative;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 20px;
  border-top: 5px solid transparent;
}

.value-card::before,
.tour-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-bright), var(--creative-pink), var(--creative-purple));
  border-radius: 20px 20px 0 0;
}

.value-card:hover,
.tour-card:hover,
.destination-card:hover,
.post-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.25);
}

.value-card img,
.experience-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 4px var(--shadow-color));
}

.tour-card h2,
.tour-card h3,
.destination-card h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* ============================================
   TOUR META & PRICING
   ============================================ */

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  padding: 15px;
  background: linear-gradient(135deg, var(--accent-color), rgba(255, 215, 0, 0.2));
  border-radius: 12px;
  flex-wrap: wrap;
}

.duration,
.price {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
}

.price {
  background: linear-gradient(135deg, var(--primary-color), var(--creative-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 24px;
}

/* ============================================
   LISTS & HIGHLIGHTS
   ============================================ */

.tour-highlights,
.tour-inclusions {
  margin: 20px 0;
}

.tour-highlights {
  padding-left: 0;
  list-style: none;
}

.tour-highlights li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--text-dark);
}

.tour-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 900;
  font-size: 20px;
}

.tour-inclusions {
  padding: 15px;
  background: rgba(244, 228, 193, 0.3);
  border-radius: 10px;
  border-left: 4px solid var(--accent-bright);
}

/* ============================================
   TESTIMONIALS - READABLE DESIGN
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, var(--background-cream), var(--accent-color));
  padding: 80px 20px;
}

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-color);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  border-left: 6px solid var(--accent-bright);
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.rating {
  color: var(--accent-bright);
  font-size: 24px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--accent-color);
}

.testimonial-author strong {
  color: var(--primary-color);
  font-size: 18px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 14px;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-step {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-bright), var(--creative-pink));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border: 4px solid var(--white);
}

/* ============================================
   CTA BANNERS
   ============================================ */

.cta-banner,
.custom-tour-banner,
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--creative-purple));
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 20px;
  box-shadow: 0 15px 50px rgba(139, 69, 19, 0.3);
}

.cta-banner h2,
.custom-tour-banner h2,
.cta-section h2 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-banner h2::after,
.custom-tour-banner h2::after {
  display: none;
}

.cta-banner p,
.custom-tour-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

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

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

.contact-info {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-info p {
  color: var(--white);
  margin-bottom: 10px;
}

/* ============================================
   TEXT-IMAGE SECTIONS
   ============================================ */

.text-image-section,
.content-grid {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.text-image-section > * {
  flex: 1 1 45%;
  min-width: 280px;
}

/* ============================================
   BLOG & POSTS
   ============================================ */

.featured-post {
  background: linear-gradient(135deg, var(--accent-color), rgba(255, 182, 193, 0.3));
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.post-category {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--secondary-color), var(--creative-teal));
  color: var(--white);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--text-light);
  font-size: 14px;
  margin-top: 15px;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form-section {
  background: var(--white);
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow-color);
  margin: 40px auto;
  max-width: 800px;
}

.contact-form-display {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field label {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 16px;
}

.field-placeholder {
  padding: 15px 20px;
  background: var(--accent-color);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 16px;
  min-height: 50px;
}

.checkbox-placeholder {
  padding: 15px 20px;
  background: rgba(244, 228, 193, 0.3);
  border-radius: 12px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-placeholder:hover {
  background: var(--accent-color);
}

.form-submit {
  margin-top: 20px;
}

.form-note,
.gdpr-notice {
  font-size: 14px;
  color: var(--text-light);
  margin: 20px 0;
  padding: 15px;
  background: rgba(244, 228, 193, 0.3);
  border-radius: 10px;
  border-left: 4px solid var(--accent-bright);
}

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

.thank-you-hero {
  background: linear-gradient(135deg, var(--accent-color), rgba(255, 215, 0, 0.3));
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--secondary-color), var(--creative-teal));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 900;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
  animation: successPop 0.6s ease-out;
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

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

footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--white);
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.tagline {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 15px;
}

footer h4 {
  color: var(--accent-bright);
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-nav a:hover {
  color: var(--accent-bright);
  padding-left: 10px;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent-bright);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

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

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 25px 20px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.cookie-text a {
  color: var(--accent-bright);
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 25px;
  border: 2px solid var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-accept-all {
  background: var(--accent-bright);
  color: var(--primary-dark);
  border-color: var(--accent-bright);
}

.btn-accept-all:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-reject-all {
  background: transparent;
  color: var(--white);
}

.btn-reject-all:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-cookie-settings {
  background: transparent;
  color: var(--white);
}

.btn-cookie-settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

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

.cookie-modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.cookie-modal h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.cookie-category {
  padding: 20px;
  background: var(--accent-color);
  border-radius: 12px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cookie-category h4 {
  color: var(--primary-color);
  margin: 0;
  font-size: 18px;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-toggle.active {
  background: var(--secondary-color);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
}

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

.cookie-category.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

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

.legal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-color);
  max-width: 900px;
  margin: 0 auto;
}

.text-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--accent-color);
}

.text-section:last-child {
  border-bottom: none;
}

.text-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.text-section h3 {
  color: var(--secondary-color);
  margin: 20px 0 15px;
  font-size: 20px;
}

.text-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.text-section li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.last-updated {
  font-style: italic;
  color: var(--text-light);
  font-size: 14px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  flex: 1 1 150px;
  padding: 30px;
  background: linear-gradient(135deg, var(--accent-color), rgba(255, 215, 0, 0.2));
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-color);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-color), var(--creative-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
}

/* ============================================
   SEASONAL & SPECIAL SECTIONS
   ============================================ */

.seasonal-grid,
.partner-categories,
.traditions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.season-card,
.partner-category,
.tradition-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 6px 20px var(--shadow-color);
  border-left: 5px solid var(--accent-bright);
}

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

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .hero h1 { font-size: 40px; }
  .hero { padding: 80px 20px; }
  
  /* Header adjustments */
  .header-content {
    justify-content: space-between;
  }
  
  .cta-button {
    display: none;
  }
  
  /* Cards - single column on mobile */
  .value-card,
  .tour-card,
  .experience-item,
  .destination-card,
  .testimonial-card,
  .process-step,
  .option-card,
  .faq-item,
  .post-card,
  .season-card,
  .partner-category,
  .tradition-item {
    flex: 1 1 100%;
  }
  
  /* Text-image sections stack on mobile */
  .text-image-section {
    flex-direction: column;
  }
  
  .text-image-section > * {
    flex: 1 1 100%;
  }
  
  /* Button groups */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta a,
  .cta-buttons a {
    width: 100%;
  }
  
  /* Footer */
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    align-items: center;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Stats */
  .stat-number {
    font-size: 36px;
  }
  
  /* Modal content */
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  /* Legal content */
  .legal-content {
    padding: 30px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Hide mobile toggle on tablet+ */
  .mobile-menu-toggle {
    display: none;
  }
  
  /* 2-column layout for cards on tablets */
  .value-card,
  .tour-card,
  .destination-card,
  .testimonial-card,
  .post-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .process-step {
    flex: 1 1 calc(50% - 24px);
  }
}

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

.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* Accessibility */
.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;
}

/* Smooth transitions */
* {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 3px solid var(--accent-bright);
  outline-offset: 3px;
}

/* Print styles */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-consent-banner {
    display: none;
  }
  
  body {
    background: white;
  }
  
  a {
    text-decoration: underline;
  }
}