/* ===================================
   VINTAGE RETRO DESIGN SYSTEM
   CSS Reset & Base Styles
   =================================== */

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

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

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  color: #2c1810;
  background: #f5ebe0;
  overflow-x: hidden;
}

/* ===================================
   VINTAGE RETRO TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: #8b4513;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  text-shadow: 2px 2px 0px rgba(139, 69, 19, 0.2);
}

h2 {
  font-size: 36px;
  border-bottom: 3px double #d4a574;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

h3 {
  font-size: 24px;
  color: #6b3410;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

a {
  color: #8b4513;
  text-decoration: underline;
  transition: all 0.3s ease;
}

a:hover {
  color: #d4a574;
  text-decoration: none;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

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

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

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

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

header {
  background: linear-gradient(180deg, #d4a574 0%, #c19a6b 100%);
  border-bottom: 5px solid #8b4513;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: sepia(0.3) contrast(1.2);
}

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

.main-nav a {
  color: #2c1810;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.3);
}

.main-nav a:hover {
  background: #8b4513;
  color: #f5ebe0;
  border-color: #2c1810;
  transform: translateY(-2px);
}

/* ===================================
   VINTAGE BUTTONS
   =================================== */

.cta-button,
.btn-primary,
.btn-secondary,
.btn-book {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 3px solid #2c1810;
  text-align: center;
  cursor: pointer;
  font-family: 'Georgia', serif;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
}

.cta-button,
.btn-primary {
  background: #c8102e;
  color: #f5ebe0;
  border-color: #8b0000;
}

.cta-button:hover,
.btn-primary:hover {
  background: #8b0000;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
}

.btn-secondary {
  background: #d4a574;
  color: #2c1810;
  border-color: #8b4513;
}

.btn-secondary:hover {
  background: #c19a6b;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
}

.btn-book {
  background: #8b4513;
  color: #f5ebe0;
  padding: 12px 24px;
  font-size: 14px;
}

.btn-book:hover {
  background: #6b3410;
  transform: scale(1.05);
}

/* ===================================
   MOBILE MENU - VINTAGE STYLE
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #c8102e;
  color: #f5ebe0;
  border: 3px solid #8b0000;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #d4a574 0%, #c19a6b 100%);
  border-left: 5px solid #8b4513;
  box-shadow: -4px 0 12px rgba(0,0,0,0.3);
  z-index: 1999;
  padding: 80px 24px 24px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #8b0000;
  color: #f5ebe0;
  border: 3px solid #2c1810;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  color: #2c1810;
  text-decoration: none;
  padding: 16px;
  background: rgba(255,255,255,0.4);
  border: 2px solid #8b4513;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Georgia', serif;
}

.mobile-nav a:hover {
  background: #8b4513;
  color: #f5ebe0;
  transform: translateX(-4px);
}

/* ===================================
   HERO SECTION - VINTAGE STYLE
   =================================== */

.hero {
  background: linear-gradient(135deg, #d4a574 0%, #c19a6b 50%, #8b4513 100%);
  padding: 80px 20px;
  border-bottom: 5px double #2c1810;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,0.05) 10px,
    rgba(0,0,0,0.05) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  color: #f5ebe0;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #2c1810;
  margin-bottom: 32px;
  background: rgba(245, 235, 224, 0.8);
  padding: 16px;
  border-radius: 8px;
  border: 2px dashed #8b4513;
}

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

.trust-badge {
  display: inline-block;
  background: #c8102e;
  color: #f5ebe0;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  border: 3px solid #8b0000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* ===================================
   INTERNAL HERO PAGES
   =================================== */

.hero-internal {
  background: linear-gradient(135deg, #c19a6b 0%, #d4a574 100%);
  padding: 60px 20px 40px;
  border-bottom: 5px double #8b4513;
  margin-bottom: 40px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 16px;
  color: #2c1810;
}

.breadcrumbs a {
  color: #8b4513;
  text-decoration: none;
}

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

.hero-internal h1 {
  color: #2c1810;
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 18px;
  color: #6b3410;
  max-width: 700px;
}

.last-updated {
  font-size: 14px;
  font-style: italic;
  color: #8b4513;
  margin-top: 12px;
}

/* ===================================
   CARDS & CONTENT GRIDS - FLEXBOX
   =================================== */

.features-grid,
.services-grid,
.testimonials-grid,
.info-grid,
.cities-grid,
.cuisine-grid,
.transport-options,
.contact-grid,
.collections-grid,
.included-grid,
.mission-vision-grid,
.team-stats,
.steps-grid,
.links-grid,
.tours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-item,
.service-card,
.testimonial-card,
.info-item,
.city-card,
.dish-card,
.transport-item,
.contact-method,
.collection-card,
.included-item,
.mission-box,
.vision-box,
.stat,
.step-card,
.link-card,
.tour-mini-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #f5ebe0;
  border: 3px solid #8b4513;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.feature-item::before,
.service-card::before,
.city-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #d4a574, #c19a6b);
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover,
.service-card:hover,
.city-card:hover,
.collection-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.3);
}

.feature-item:hover::before,
.service-card:hover::before,
.city-card:hover::before {
  opacity: 1;
}

.service-card h3,
.city-card h3,
.dish-card h3 {
  color: #8b4513;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p,
.city-card p,
.dish-card p {
  color: #2c1810;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #c8102e;
  margin: 16px 0;
  font-family: 'Georgia', serif;
}

.duration {
  font-size: 14px;
  color: #6b3410;
  margin-bottom: 16px;
  font-style: italic;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */

.testimonials {
  background: #e8d5c4;
  padding: 60px 20px;
  border-top: 5px double #8b4513;
  border-bottom: 5px double #8b4513;
  margin-bottom: 60px;
}

.testimonial-card {
  background: #f5ebe0;
  border: 3px solid #8b4513;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

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

.testimonial-author {
  color: #8b4513;
  font-weight: 700;
  font-style: normal;
  margin-top: 16px;
}

.rating {
  color: #c8102e;
  font-size: 20px;
  margin-top: 12px;
  letter-spacing: 2px;
}

.trust-indicators {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: rgba(139, 69, 19, 0.1);
  border-radius: 8px;
  border: 2px dashed #8b4513;
}

.trust-indicators p {
  color: #2c1810;
  font-weight: 600;
}

.rating-summary {
  text-align: center;
  margin-top: 24px;
  font-weight: 700;
  color: #8b4513;
  font-size: 18px;
}

/* ===================================
   VALUE PROPOSITION SECTION
   =================================== */

.value-proposition {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f5ebe0 0%, #e8d5c4 100%);
  margin-bottom: 60px;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 40px;
}

.features-grid .feature-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-item h3 {
  font-size: 18px;
  color: #8b4513;
}

/* ===================================
   SERVICES FEATURED SECTION
   =================================== */

.services-featured {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6b3410;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  margin-bottom: 40px;
}

.services-featured > .container > .btn-secondary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-final,
.cta-section {
  background: linear-gradient(135deg, #8b4513 0%, #6b3410 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 5px double #d4a574;
  border-bottom: 5px double #d4a574;
  margin-bottom: 60px;
}

.cta-final h2,
.cta-section h2 {
  color: #f5ebe0;
  margin-bottom: 16px;
  border-bottom: none;
}

.cta-final p,
.cta-section p {
  color: #e8d5c4;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.contact-info {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px dashed #d4a574;
}

.contact-info p {
  color: #f5ebe0;
  margin-bottom: 8px;
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

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

.about-story p {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.8;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(90deg, #e8d5c4 0%, #f5ebe0 100%);
  border: 3px solid #8b4513;
  border-radius: 12px;
}

.timeline-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 20px;
  background: #f5ebe0;
  border: 2px solid #c19a6b;
  border-radius: 8px;
}

.timeline-item h3 {
  font-size: 32px;
  color: #c8102e;
  margin-bottom: 8px;
}

.timeline-item p {
  color: #2c1810;
  font-size: 14px;
}

.mission-vision {
  padding: 60px 20px;
  background: #e8d5c4;
  margin-bottom: 60px;
}

.mission-box,
.vision-box {
  flex: 1 1 calc(50% - 24px);
  background: #f5ebe0;
  border: 3px solid #8b4513;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.mission-box h3,
.vision-box h3 {
  color: #c8102e;
  margin-bottom: 16px;
}

.values {
  margin-top: 40px;
  padding: 32px;
  background: #f5ebe0;
  border: 3px solid #8b4513;
  border-radius: 12px;
}

.values h3 {
  text-align: center;
  margin-bottom: 24px;
}

.values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
}

.values li {
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
  padding: 16px;
  background: rgba(139, 69, 19, 0.1);
  border-left: 4px solid #8b4513;
  font-weight: 600;
  color: #2c1810;
}

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

.team-overview > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 18px;
}

.team-stats {
  background: linear-gradient(135deg, #d4a574 0%, #c19a6b 100%);
  padding: 40px;
  border-radius: 12px;
  border: 3px solid #8b4513;
}

.stat {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 150px;
  background: #f5ebe0;
  padding: 24px;
}

.stat h3 {
  font-size: 48px;
  color: #c8102e;
  margin-bottom: 8px;
}

.stat p {
  color: #2c1810;
  font-weight: 600;
}

/* ===================================
   WYCIECZKI PAGE
   =================================== */

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

.whats-included {
  padding: 60px 20px;
  background: #e8d5c4;
  margin-bottom: 60px;
}

.included-grid {
  justify-content: center;
}

.included-item {
  flex: 0 1 calc(33.333% - 24px);
  min-width: 200px;
  background: #f5ebe0;
  text-align: center;
  padding: 20px;
  font-weight: 600;
  color: #8b4513;
  border: 3px solid #c19a6b;
  border-radius: 8px;
}

.note {
  text-align: center;
  font-style: italic;
  color: #6b3410;
  margin-top: 24px;
}

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

.info-list {
  max-width: 700px;
  margin: 0 auto;
  background: #f5ebe0;
  padding: 32px;
  border: 3px solid #8b4513;
  border-radius: 12px;
  list-style: none;
}

.info-list li {
  padding: 12px 12px 12px 40px;
  position: relative;
  color: #2c1810;
  font-size: 16px;
  margin-bottom: 12px;
}

.info-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #c8102e;
  font-weight: 700;
  font-size: 18px;
}

/* ===================================
   PRZEWODNIK PAGE
   =================================== */

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

.info-item {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 180px;
}

.info-item h3 {
  color: #c8102e;
  margin-bottom: 8px;
  font-size: 18px;
}

.cities-guide,
.top-attractions,
.polish-cuisine,
.transportation,
.travel-tips {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.cities-guide {
  background: #e8d5c4;
}

.attractions-list,
.tips-list {
  max-width: 700px;
  margin: 0 auto;
  background: #f5ebe0;
  padding: 32px;
  border: 3px solid #8b4513;
  border-radius: 12px;
}

.attractions-list li,
.tips-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.attractions-list li::before,
.tips-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #c8102e;
}

/* ===================================
   GALERIA PAGE
   =================================== */

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

.collection-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
}

.collection-card h3 {
  margin-bottom: 8px;
}

.collection-card p {
  color: #6b3410;
  font-style: italic;
}

.gallery-grid {
  padding: 40px 20px;
  background: #e8d5c4;
  margin-bottom: 60px;
}

.masonry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-item {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  margin-bottom: 20px;
}

.image-placeholder {
  background: linear-gradient(135deg, #c19a6b 0%, #d4a574 100%);
  border: 3px solid #8b4513;
  border-radius: 8px;
  padding: 80px 20px;
  text-align: center;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
}

.image-placeholder p {
  color: #2c1810;
  font-weight: 600;
}

.guest-photos {
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hashtag {
  font-size: 24px;
  color: #c8102e;
  font-weight: 700;
  margin: 24px 0;
}

.social-gallery {
  background: #e8d5c4;
  padding: 60px 20px;
  border: 3px dashed #8b4513;
  border-radius: 12px;
  margin-top: 32px;
}

/* ===================================
   KONTAKT PAGE
   =================================== */

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

.contact-method {
  text-align: center;
  flex: 1 1 calc(50% - 24px);
}

.contact-method h3 {
  margin-bottom: 12px;
}

.contact-form-section {
  padding: 40px 20px;
  background: #e8d5c4;
  margin-bottom: 60px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #f5ebe0;
  padding: 40px;
  border: 3px solid #8b4513;
  border-radius: 12px;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
}

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

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

.input-field,
.textarea-field {
  width: 100%;
  padding: 14px;
  border: 3px solid #8b4513;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  font-family: 'Courier New', Courier, monospace;
  transition: all 0.3s ease;
}

.input-field:focus,
.textarea-field:focus {
  outline: none;
  border-color: #c8102e;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.2);
}

.textarea-field {
  resize: vertical;
  min-height: 120px;
}

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

.form-note {
  font-size: 14px;
  color: #6b3410;
  font-style: italic;
  margin-top: 16px;
}

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

.map-placeholder {
  background: linear-gradient(135deg, #c19a6b 0%, #d4a574 100%);
  border: 3px solid #8b4513;
  border-radius: 12px;
  padding: 120px 20px;
  text-align: center;
  margin: 32px 0;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
}

.directions {
  background: #e8d5c4;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #8b4513;
  margin-top: 24px;
}

.directions h3 {
  margin-bottom: 16px;
}

.faq-contact {
  padding: 40px 20px;
  background: #e8d5c4;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f5ebe0;
  padding: 24px;
  margin-bottom: 20px;
  border: 3px solid #8b4513;
  border-radius: 12px;
  box-shadow: 2px 2px 0px rgba(139, 69, 19, 0.3);
}

.faq-item h3 {
  color: #c8102e;
  margin-bottom: 12px;
}

.newsletter-signup {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 24px auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form .input-field {
  flex: 1 1 300px;
  min-width: 250px;
}

.newsletter-note {
  font-size: 14px;
  color: #6b3410;
  font-style: italic;
}

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

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

.legal-section {
  background: #f5ebe0;
  padding: 32px;
  margin-bottom: 32px;
  border: 3px solid #8b4513;
  border-radius: 12px;
  box-shadow: 2px 2px 0px rgba(139, 69, 19, 0.3);
}

.legal-section h2 {
  color: #c8102e;
  border-bottom: 2px solid #d4a574;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.legal-section ul {
  margin-left: 24px;
}

.legal-section li {
  margin-bottom: 8px;
  color: #2c1810;
}

.data-request,
.cookie-settings {
  padding: 40px 20px;
  background: #e8d5c4;
  text-align: center;
  margin-bottom: 60px;
}

.settings-note {
  max-width: 600px;
  margin: 24px auto;
  padding: 24px;
  background: #f5ebe0;
  border: 2px dashed #8b4513;
  border-radius: 8px;
}

.cancellation-policy {
  padding: 40px 20px;
  background: #e8d5c4;
  margin-bottom: 60px;
}

.policy-list {
  max-width: 700px;
  margin: 0 auto;
  background: #f5ebe0;
  padding: 32px;
  border: 3px solid #8b4513;
  border-radius: 12px;
  list-style: none;
}

.policy-list li {
  padding: 16px;
  margin-bottom: 12px;
  border-left: 4px solid #c8102e;
  background: rgba(139, 69, 19, 0.05);
}

.policy-list strong {
  color: #8b4513;
}

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

.hero-thankyou {
  background: linear-gradient(135deg, #d4a574 0%, #c19a6b 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 5px double #8b4513;
  margin-bottom: 40px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #c8102e;
  color: #f5ebe0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  border: 4px solid #8b0000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-thankyou h1 {
  color: #2c1810;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #6b3410;
  margin-bottom: 24px;
}

.next-steps,
.explore-more,
.featured-tours-mini,
.contact-alternative {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.next-steps {
  background: #e8d5c4;
}

.step-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
}

.step-card h3 {
  color: #c8102e;
  margin-bottom: 12px;
}

.link-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #f5ebe0;
  border: 3px solid #8b4513;
  padding: 32px 20px;
  text-align: center;
  text-decoration: none;
  color: #2c1810;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
}

.link-card:hover {
  background: #d4a574;
  transform: translateY(-4px);
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
}

.tour-mini-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
}

.tour-mini-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

/* ===================================
   FOOTER - VINTAGE STYLE
   =================================== */

footer {
  background: linear-gradient(180deg, #8b4513 0%, #6b3410 100%);
  color: #f5ebe0;
  padding: 60px 20px 20px;
  border-top: 5px double #d4a574;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px dashed #d4a574;
}

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

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) sepia(1) saturate(0) hue-rotate(0deg);
}

.footer-column h4 {
  color: #d4a574;
  margin-bottom: 16px;
  font-size: 18px;
  border-bottom: 2px solid #c19a6b;
  padding-bottom: 8px;
}

.footer-column p,
.footer-column li {
  color: #e8d5c4;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-column ul {
  list-style: none;
  margin: 0;
}

.footer-column a {
  color: #e8d5c4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
}

.footer-bottom p {
  color: #d4a574;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #d4a574;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #2c1810 0%, #1a0f08 100%);
  color: #f5ebe0;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.4);
  z-index: 1998;
  border-top: 3px solid #8b4513;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-btn {
  padding: 10px 20px;
  border: 2px solid #8b4513;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.cookie-accept {
  background: #c8102e;
  color: #f5ebe0;
  border-color: #8b0000;
}

.cookie-accept:hover {
  background: #8b0000;
}

.cookie-reject {
  background: transparent;
  color: #d4a574;
  border-color: #d4a574;
}

.cookie-reject:hover {
  background: #d4a574;
  color: #2c1810;
}

.cookie-settings-btn {
  background: transparent;
  color: #e8d5c4;
  border-color: #8b4513;
}

.cookie-settings-btn:hover {
  background: #8b4513;
  color: #f5ebe0;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: #f5ebe0;
  border: 4px solid #8b4513;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.cookie-modal-content h2 {
  color: #8b4513;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(139, 69, 19, 0.1);
  border-left: 4px solid #8b4513;
  border-radius: 8px;
}

.cookie-category h3 {
  color: #6b3410;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle.active {
  background: #c8102e;
}

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

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

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

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
  /* Mobile Menu Display */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav,
  .cta-button {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* Flexbox Adjustments */
  .feature-item,
  .service-card,
  .testimonial-card,
  .city-card,
  .dish-card,
  .collection-card,
  .step-card,
  .link-card,
  .tour-mini-card,
  .stat,
  .timeline-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .info-item,
  .contact-method,
  .included-item {
    flex: 1 1 calc(50% - 24px);
    min-width: calc(50% - 24px);
  }
  
  .gallery-item {
    flex: 1 1 100%;
  }
  
  /* Hero Adjustments */
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta a {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-nav {
    justify-content: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Newsletter Form */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .input-field {
    width: 100%;
  }
  
  /* Timeline */
  .timeline {
    flex-direction: column;
  }
  
  .timeline-item {
    min-width: 100%;
  }
  
  /* Team Stats */
  .stat {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 480px) {
  /* Extra Small Mobile */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .section {
    padding: 32px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  /* All Cards Full Width */
  .info-item,
  .contact-method,
  .included-item,
  .stat {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Buttons */
  .cta-button,
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .price {
    font-size: 20px;
  }
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
}