/* ========================================
   SHINFORGE TOURS - VINTAGE RETRO STYLE
   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.7;
  color: #2C2416;
  background-color: #F9F5EE;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.02) 2px, rgba(0,0,0,.02) 4px);
}

/* ========================================
   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;
  text-shadow: 2px 2px 0px rgba(212, 175, 55, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: 2px;
}

h2 {
  font-size: 36px;
  letter-spacing: 1.5px;
}

h3 {
  font-size: 24px;
  letter-spacing: 1px;
}

p {
  margin-bottom: 16px;
  color: #3D3026;
}

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

a:hover {
  color: #D4AF37;
  text-decoration: underline;
}

ul {
  list-style: none;
}

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

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

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

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

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

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 3px solid #8B4513;
  background-color: #D4AF37;
  color: #2C2416;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.4);
  position: relative;
  text-decoration: none;
}

.btn-primary:hover,
.btn-secondary:hover {
  background-color: #8B4513;
  color: #F9F5EE;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.6);
  transform: translate(-2px, -2px);
  text-decoration: none;
}

.btn-secondary {
  background-color: #F4E8D8;
  border-color: #D4AF37;
  box-shadow: 4px 4px 0px rgba(212, 175, 55, 0.4);
}

.btn-secondary:hover {
  background-color: #D4AF37;
  color: #2C2416;
  box-shadow: 6px 6px 0px rgba(212, 175, 55, 0.6);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
  background-color: #F4E8D8;
  border-bottom: 5px solid #8B4513;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: bold;
  color: #8B4513;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus {
  border-color: #D4AF37;
  background-color: rgba(212, 175, 55, 0.1);
  text-decoration: none;
}

.header-cta {
  display: flex;
  align-items: center;
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #D4AF37;
  color: #2C2416;
  border: 3px solid #8B4513;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #8B4513;
  color: #F9F5EE;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.6);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: #F4E8D8;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139,69,19,.05) 10px, rgba(139,69,19,.05) 20px);
  border-left: 5px solid #8B4513;
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #8B4513;
  color: #F9F5EE;
  border: 3px solid #D4AF37;
  width: 45px;
  height: 45px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: bold;
  color: #8B4513;
  padding: 16px 20px;
  border: 3px solid #8B4513;
  background-color: #F9F5EE;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.3);
  text-decoration: none;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  background-color: #D4AF37;
  color: #2C2416;
  transform: translateX(-3px);
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.5);
  text-decoration: none;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }
}

/* ========================================
   HERO SECTION - VINTAGE RETRO
   ======================================== */

.hero {
  background-color: #E8D5B7;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(139,69,19,.08) 20px, rgba(139,69,19,.08) 40px);
  border-top: 8px solid #8B4513;
  border-bottom: 8px solid #D4AF37;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(circle, rgba(212,175,55,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: vintage-pattern 60s linear infinite;
  pointer-events: none;
}

@keyframes vintage-pattern {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

.hero h1 {
  font-size: 56px;
  color: #8B4513;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(212, 175, 55, 0.4);
  letter-spacing: 3px;
}

.hero-subtitle {
  font-size: 22px;
  color: #5D4E37;
  margin-bottom: 32px;
  font-family: 'Georgia', serif;
  font-style: italic;
}

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

.trust-badge {
  display: inline-block;
  background-color: #8B4513;
  color: #F9F5EE;
  padding: 12px 24px;
  border: 3px solid #D4AF37;
  font-family: 'Georgia', serif;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0px rgba(212, 175, 55, 0.4);
  margin-top: 16px;
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
  background-color: #E8D5B7;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 15px, rgba(139,69,19,.06) 15px, rgba(139,69,19,.06) 30px);
  border-bottom: 6px solid #8B4513;
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  color: #8B4513;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 20px;
  color: #5D4E37;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.last-updated {
  font-size: 14px;
  color: #8B7355;
  margin-top: 16px;
  font-style: normal;
}

/* ========================================
   FEATURES & CARDS - VINTAGE RETRO
   ======================================== */

.value-proposition,
.services-preview,
.how-it-works,
.testimonials,
.tours-catalog,
.story-section,
.mission-vision,
.values-section,
.team-section {
  padding: 60px 20px;
  margin-bottom: 20px;
}

.value-proposition h2,
.services-preview h2,
.how-it-works h2,
.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
  color: #8B4513;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5D4E37;
  margin-top: -32px;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
  font-style: italic;
}

/* Feature Cards */
.features-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.tours-grid,
.stats-grid,
.mission-grid,
.values-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature-card,
.service-card,
.step-card,
.testimonial-card,
.tour-card,
.stat-card,
.mission-card,
.vision-card,
.value-card,
.team-card {
  background-color: #F9F5EE;
  border: 4px solid #8B4513;
  padding: 32px 24px;
  flex: 1 1 300px;
  max-width: 380px;
  position: relative;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
}

.feature-card::before,
.service-card::before,
.tour-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  background-color: #D4AF37;
  border: 3px solid #8B4513;
  transform: rotate(45deg);
}

.feature-card:hover,
.service-card:hover,
.tour-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(139, 69, 19, 0.5);
}

.feature-card h3,
.service-card h3,
.tour-card h3 {
  color: #8B4513;
  margin-bottom: 16px;
  font-size: 22px;
}

.feature-card p,
.service-card p,
.tour-card p {
  color: #3D3026;
  line-height: 1.6;
}

/* Service Card Specific */
.service-card .price,
.tour-card .tour-price {
  font-size: 32px;
  font-weight: bold;
  color: #D4AF37;
  font-family: 'Georgia', serif;
  margin: 16px 0;
  text-shadow: 2px 2px 0px rgba(139, 69, 19, 0.2);
}

.tour-duration {
  font-size: 14px;
  color: #8B7355;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

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

.tour-highlights li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #3D3026;
  border-bottom: 1px dashed #D4AF37;
}

.tour-highlights li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 18px;
}

/* Step Cards */
.step-card {
  text-align: center;
  background-color: #F4E8D8;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #D4AF37;
  color: #2C2416;
  font-size: 32px;
  font-weight: bold;
  font-family: 'Georgia', serif;
  line-height: 60px;
  border: 4px solid #8B4513;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
}

/* Testimonial Cards */
.testimonial-card {
  background-color: #FFF9F0;
  flex-direction: column;
  text-align: center;
}

.testimonial-quote {
  font-size: 18px;
  font-style: italic;
  color: #2C2416;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: bold;
  color: #8B4513;
  font-family: 'Georgia', serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.testimonial-location {
  font-size: 14px;
  color: #8B7355;
  margin-bottom: 12px;
}

.testimonial-rating {
  color: #D4AF37;
  font-size: 20px;
  letter-spacing: 2px;
}

/* Stat Cards */
.stat-card {
  text-align: center;
  background-color: #E8D5B7;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #D4AF37;
  font-family: 'Georgia', serif;
  margin-bottom: 8px;
  text-shadow: 3px 3px 0px rgba(139, 69, 19, 0.2);
}

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

.cta-banner,
.cta-section {
  background-color: #8B4513;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(212,175,55,.1) 15px, rgba(212,175,55,.1) 30px);
  border: 6px solid #D4AF37;
  padding: 60px 20px;
  text-align: center;
  margin: 60px 0;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.4);
}

.cta-banner h2,
.cta-section h2 {
  color: #F9F5EE;
  font-size: 38px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

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

.guarantee-text {
  margin-top: 24px;
  font-size: 14px;
  color: #D4AF37;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ========================================
   TEXT SECTIONS
   ======================================== */

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
  background-color: #F9F5EE;
  padding: 32px;
  border: 3px solid #D4AF37;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.2);
}

.text-section h2 {
  color: #8B4513;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px dashed #D4AF37;
}

.text-section h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.text-section p {
  margin-bottom: 16px;
  color: #3D3026;
}

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

.text-section li {
  margin-bottom: 8px;
  color: #3D3026;
  padding-left: 8px;
}

/* ========================================
   BOOKING & FORMS
   ======================================== */

.booking-section,
.contact-form-section {
  padding: 60px 20px;
}

.booking-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.step {
  padding: 16px 24px;
  background-color: #F4E8D8;
  border: 3px solid #D4AF37;
  font-family: 'Georgia', serif;
  font-weight: bold;
  color: #8B7355;
  box-shadow: 3px 3px 0px rgba(212, 175, 55, 0.3);
}

.step.active {
  background-color: #D4AF37;
  color: #2C2416;
  border-color: #8B4513;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.4);
}

.tours-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.tour-option {
  background-color: #F9F5EE;
  border: 4px solid #8B4513;
  padding: 32px 24px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
}

.tour-option:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px rgba(139, 69, 19, 0.5);
}

.tour-option h3 {
  color: #8B4513;
  margin-bottom: 16px;
  font-size: 20px;
}

.tour-option .price {
  font-size: 28px;
  font-weight: bold;
  color: #D4AF37;
  font-family: 'Georgia', serif;
  margin: 12px 0;
}

.tour-option .duration {
  font-size: 14px;
  color: #8B7355;
  margin-bottom: 16px;
}

.trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-badges span {
  background-color: #8B4513;
  color: #F9F5EE;
  padding: 10px 20px;
  border: 2px solid #D4AF37;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact & Guarantees */
.contact-options,
.guarantees,
.office-hours {
  padding: 60px 20px;
}

.contact-grid,
.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.contact-card,
.hours-item {
  background-color: #F4E8D8;
  border: 4px solid #8B4513;
  padding: 32px 24px;
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
}

.contact-card h3 {
  color: #8B4513;
  margin-bottom: 16px;
}

.contact-note {
  font-style: italic;
  color: #8B7355;
  margin-top: 12px;
}

.form-note {
  background-color: #F4E8D8;
  border: 3px solid #D4AF37;
  padding: 32px;
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 5px 5px 0px rgba(212, 175, 55, 0.3);
}

.guarantees-list,
.benefits-list,
.tips-list {
  max-width: 700px;
  margin: 32px auto;
  background-color: #F9F5EE;
  border: 3px solid #D4AF37;
  padding: 32px;
  box-shadow: 5px 5px 0px rgba(212, 175, 55, 0.3);
}

.guarantees-list li,
.benefits-list li,
.tips-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px dashed #D4AF37;
  color: #3D3026;
}

.guarantees-list li:last-child,
.benefits-list li:last-child,
.tips-list li:last-child {
  border-bottom: none;
}

.guarantees-list li::before,
.benefits-list li::before,
.tips-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 20px;
  font-weight: bold;
}

.hours-item .day {
  font-weight: bold;
  color: #8B4513;
  font-family: 'Georgia', serif;
  margin-bottom: 8px;
}

.hours-item .time {
  color: #5D4E37;
  font-size: 18px;
}

/* ========================================
   CONFIRMATION & THANK YOU PAGES
   ======================================== */

.confirmation-hero,
.thank-you-hero {
  background-color: #E8D5B7;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(139,69,19,.05) 20px, rgba(139,69,19,.05) 40px);
  border-bottom: 6px solid #8B4513;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #D4AF37;
  color: #2C2416;
  font-size: 64px;
  line-height: 100px;
  border: 5px solid #8B4513;
  border-radius: 50%;
  margin: 0 auto 32px;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.4);
}

.confirmation-hero h1,
.thank-you-hero h1 {
  font-size: 48px;
  color: #8B4513;
  margin-bottom: 16px;
}

.confirmation-message {
  font-size: 18px;
  color: #5D4E37;
  margin-top: 24px;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.next-steps,
.preparation-tips,
.cancellation-policy,
.add-more-tours {
  padding: 60px 20px;
  margin-bottom: 20px;
}

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

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

.quick-links {
  background-color: #F4E8D8;
  border: 3px solid #8B4513;
  padding: 24px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
}

.quick-links h3 {
  color: #8B4513;
  margin-bottom: 16px;
}

.quick-links ul {
  padding-left: 0;
}

.quick-links li {
  padding: 8px 0;
  border-bottom: 1px dashed #D4AF37;
}

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

.quick-links a {
  color: #8B4513;
  font-weight: bold;
}

.rights-overview {
  padding: 60px 20px;
}

.rights-grid,
.cookie-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.right-card,
.cookie-card {
  background-color: #F9F5EE;
  border: 4px solid #8B4513;
  padding: 24px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.3);
}

.right-card h3,
.cookie-card h3 {
  color: #8B4513;
  margin-bottom: 12px;
  font-size: 20px;
}

.request-form-info,
.data-processing,
.complaint-info,
.cookies-explanation,
.cookie-categories,
.cookie-management,
.third-party-cookies {
  padding: 60px 20px;
  margin-bottom: 20px;
}

/* ========================================
   FOOTER - VINTAGE RETRO
   ======================================== */

footer {
  background-color: #3D3026;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(212,175,55,.05) 10px, rgba(212,175,55,.05) 20px);
  color: #F4E8D8;
  border-top: 6px solid #D4AF37;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-column h3 {
  color: #D4AF37;
  font-size: 20px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.footer-column p,
.footer-column li {
  color: #E8D5B7;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-column ul {
  padding-left: 0;
}

.footer-column a {
  color: #D4AF37;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #F4E8D8;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 3px dashed #8B4513;
  color: #8B7355;
  font-size: 14px;
}

/* ========================================
   COOKIE CONSENT BANNER - VINTAGE RETRO
   ======================================== */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C2416;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(212,175,55,.1) 8px, rgba(212,175,55,.1) 16px);
  border-top: 5px solid #D4AF37;
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.show {
  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-text {
  flex: 1 1 300px;
  color: #F4E8D8;
  font-size: 15px;
}

.cookie-banner-text strong {
  color: #D4AF37;
  font-family: 'Georgia', serif;
}

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

.cookie-banner-buttons button {
  padding: 12px 24px;
  font-family: 'Georgia', serif;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #8B4513;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.4);
}

#accept-all-cookies {
  background-color: #D4AF37;
  color: #2C2416;
}

#accept-all-cookies:hover {
  background-color: #8B4513;
  color: #F9F5EE;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.6);
}

#reject-all-cookies {
  background-color: #5D4E37;
  color: #F4E8D8;
  border-color: #D4AF37;
}

#reject-all-cookies:hover {
  background-color: #3D3026;
  color: #D4AF37;
}

#cookie-settings-btn {
  background-color: transparent;
  color: #D4AF37;
  border-color: #D4AF37;
}

#cookie-settings-btn:hover {
  background-color: #D4AF37;
  color: #2C2416;
}

/* Cookie Settings Modal */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 36, 22, 0.9);
  z-index: 10000;
  overflow-y: auto;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background-color: #F9F5EE;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(139,69,19,.03) 15px, rgba(139,69,19,.03) 30px);
  border: 6px solid #8B4513;
  max-width: 700px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 10px 10px 0px rgba(139, 69, 19, 0.5);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 3px dashed #D4AF37;
}

.cookie-modal-header h2 {
  color: #8B4513;
  font-size: 32px;
  margin-bottom: 0;
}

.cookie-modal-close {
  background-color: #8B4513;
  color: #F9F5EE;
  border: 3px solid #D4AF37;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px rgba(212, 175, 55, 0.4);
}

.cookie-modal-close:hover {
  background-color: #D4AF37;
  color: #2C2416;
  transform: rotate(90deg);
}

.cookie-category {
  background-color: #F4E8D8;
  border: 3px solid #D4AF37;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0px rgba(212, 175, 55, 0.3);
}

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

.cookie-category h3 {
  color: #8B4513;
  font-size: 20px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 30px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #8B7355;
  border: 3px solid #8B4513;
  cursor: pointer;
  transition: 0.3s;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #F9F5EE;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #D4AF37;
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(26px);
}

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

.cookie-category p {
  color: #3D3026;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 3px dashed #D4AF37;
  flex-wrap: wrap;
}

.cookie-modal-footer button {
  padding: 12px 24px;
  font-family: 'Georgia', serif;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #8B4513;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.4);
}

#save-cookie-preferences {
  background-color: #D4AF37;
  color: #2C2416;
}

#save-cookie-preferences:hover {
  background-color: #8B4513;
  color: #F9F5EE;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(139, 69, 19, 0.6);
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .features-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .tours-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card,
  .service-card,
  .step-card,
  .testimonial-card,
  .tour-card {
    max-width: 100%;
    width: 100%;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-column {
    width: 100%;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner-buttons button {
    width: 100%;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-modal-header h2 {
    font-size: 24px;
  }

  .cta-banner h2,
  .cta-section h2 {
    font-size: 28px;
  }

  .booking-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .step {
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }

  .hero {
    padding: 40px 20px;
  }

  .section {
    padding: 40px 16px;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .cookie-modal-footer button {
    width: 100%;
  }
}

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

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

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

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

.mb-16 {
  margin-bottom: 16px;
}

.mb-32 {
  margin-bottom: 32px;
}

.hidden {
  display: none;
}

/* ========================================
   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 {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .page-hero {
    border: none;
    background: white;
  }
}