/* ============================================
   Whisper Trail - VINTAGE RETRO DESIGN SYSTEM
   Authentic retro aesthetics with nostalgic charm
   ============================================ */

/* CSS RESET & BASE */
* {
  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: #3d2b1f;
  background: #f5ebe0;
  overflow-x: hidden;
}

/* ============================================
   VINTAGE RETRO COLOR PALETTE
   ============================================ */
:root {
  --retro-brown: #3d2b1f;
  --retro-cream: #f5ebe0;
  --retro-orange: #d4713e;
  --retro-mustard: #c69956;
  --retro-olive: #7a8450;
  --retro-rust: #a0522d;
  --retro-tan: #d2b48c;
  --retro-dark-cream: #e8d5b7;
}

/* ============================================
   TYPOGRAPHY - VINTAGE STYLE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: bold;
  color: var(--retro-brown);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(212, 113, 62, 0.3);
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  border-bottom: 3px double var(--retro-orange);
  padding-bottom: 10px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--retro-rust);
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

a {
  color: var(--retro-orange);
  text-decoration: underline;
  text-decoration-style: wavy;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--retro-rust);
  text-decoration-style: solid;
}

ul {
  list-style: none;
}

ul li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
}

ul li:before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--retro-orange);
}

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

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

/* ============================================
   HEADER - VINTAGE NEWSPAPER STYLE
   ============================================ */
header {
  background: var(--retro-cream);
  border-bottom: 5px solid var(--retro-brown);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.logo {
  height: 60px;
  width: auto;
  filter: sepia(30%) hue-rotate(10deg);
}

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

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

.main-nav a:hover {
  color: var(--retro-orange);
  border: 2px dashed var(--retro-orange);
  transform: translateY(-2px);
}

.cta-button {
  background: var(--retro-orange);
  color: var(--retro-cream) !important;
  padding: 12px 24px;
  border: 3px solid var(--retro-brown);
  border-radius: 0;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0px var(--retro-brown);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--retro-brown);
  background: var(--retro-rust);
}

/* ============================================
   MOBILE MENU - VINTAGE NEWSPAPER FOLD
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--retro-orange);
  color: var(--retro-cream);
  border: 3px solid var(--retro-brown);
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 4px 4px 0px var(--retro-brown);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--retro-brown);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--retro-cream);
  border-left: 5px solid var(--retro-brown);
  z-index: 1999;
  transition: right 0.4s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--retro-rust);
  color: var(--retro-cream);
  border: 3px solid var(--retro-brown);
  padding: 10px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0px var(--retro-brown);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 80px 30px 30px;
}

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: bold;
  color: var(--retro-brown);
  text-decoration: none;
  text-transform: uppercase;
  padding: 20px 0;
  border-bottom: 2px dotted var(--retro-tan);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--retro-orange);
  padding-left: 10px;
  border-bottom: 2px solid var(--retro-orange);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
}

/* ============================================
   HERO SECTION - VINTAGE POSTCARD
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--retro-mustard) 0%, var(--retro-tan) 100%);
  padding: 80px 20px;
  text-align: center;
  border: 8px double var(--retro-brown);
  margin: 40px 20px;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.hero:before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  border: 3px solid var(--retro-brown);
  border-radius: 50%;
  background: repeating-linear-gradient(
    45deg,
    var(--retro-orange),
    var(--retro-orange) 2px,
    var(--retro-rust) 2px,
    var(--retro-rust) 4px
  );
}

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

.hero h1 {
  color: var(--retro-brown);
  text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.hero-subheadline {
  font-size: 20px;
  color: var(--retro-rust);
  margin-bottom: 30px;
  font-style: italic;
  font-family: 'Georgia', serif;
}

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

.btn-primary {
  background: var(--retro-orange);
  color: var(--retro-cream) !important;
  padding: 16px 32px;
  border: 4px solid var(--retro-brown);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 5px 5px 0px var(--retro-brown);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px var(--retro-brown);
  background: var(--retro-rust);
}

.btn-secondary {
  background: var(--retro-cream);
  color: var(--retro-brown) !important;
  padding: 16px 32px;
  border: 4px solid var(--retro-brown);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 5px 5px 0px var(--retro-brown);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0px var(--retro-brown);
  background: var(--retro-dark-cream);
}

.trust-indicator {
  font-size: 14px;
  color: var(--retro-brown);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   SECTIONS - VINTAGE LAYOUT
   ============================================ */
.introduction {
  padding: 60px 20px;
  background: var(--retro-cream);
  text-align: center;
}

.introduction h2 {
  margin: 0 auto 30px;
}

.introduction p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.8;
}

/* ============================================
   STATS GRID - FLEXBOX LAYOUT
   ============================================ */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.stat-item {
  background: var(--retro-dark-cream);
  padding: 30px;
  border: 4px solid var(--retro-brown);
  box-shadow: 6px 6px 0px var(--retro-orange);
  text-align: center;
  min-width: 200px;
  flex: 1 1 250px;
  max-width: 300px;
}

.stat-item h3 {
  font-size: 48px;
  color: var(--retro-orange);
  margin-bottom: 10px;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.stat-item p {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ============================================
   SERVICES GRID - FLEXBOX LAYOUT
   ============================================ */
.featured-services {
  padding: 60px 20px;
  background: var(--retro-tan);
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.service-card {
  background: var(--retro-cream);
  padding: 30px;
  border: 5px double var(--retro-brown);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  flex: 1 1 300px;
  max-width: 380px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.service-card:before {
  content: "★";
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 40px;
  color: var(--retro-orange);
  text-shadow: 2px 2px 0px var(--retro-brown);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--retro-rust);
}

.service-card p {
  margin-bottom: 15px;
}

.service-card .price {
  font-size: 32px;
  font-weight: bold;
  color: var(--retro-orange);
  font-family: 'Georgia', serif;
  margin: 20px 0;
}

.btn-book {
  background: var(--retro-olive);
  color: var(--retro-cream) !important;
  padding: 12px 24px;
  border: 3px solid var(--retro-brown);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 4px 4px 0px var(--retro-brown);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-book:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--retro-brown);
  background: var(--retro-rust);
}

.link-all-tours {
  display: inline-block;
  margin-top: 30px;
  font-size: 18px;
  font-weight: bold;
  color: var(--retro-brown) !important;
  text-decoration: none;
  border-bottom: 3px solid var(--retro-orange);
  padding-bottom: 5px;
}

/* ============================================
   FEATURES - FLEXBOX LAYOUT
   ============================================ */
.features {
  padding: 60px 20px;
  background: var(--retro-cream);
}

.features h2 {
  text-align: center;
  margin: 0 auto 50px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 250px;
  max-width: 280px;
  padding: 25px;
  background: var(--retro-dark-cream);
  border-left: 6px solid var(--retro-orange);
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.15);
}

.feature-item h3 {
  color: var(--retro-rust);
  margin: 0;
}

.feature-item p {
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS - READABLE CONTRAST
   ============================================ */
.testimonials {
  padding: 60px 20px;
  background: var(--retro-tan);
  text-align: center;
}

.testimonials h2 {
  margin: 0 auto 40px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border: 4px solid var(--retro-brown);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  flex: 1 1 400px;
  max-width: 500px;
  text-align: left;
  position: relative;
}

.testimonial-card:before {
  content: "\201C";
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: var(--retro-orange);
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonial-card .author {
  font-weight: bold;
  color: var(--retro-rust);
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-booking {
  padding: 80px 20px;
  background: var(--retro-orange);
  text-align: center;
  border-top: 5px solid var(--retro-brown);
  border-bottom: 5px solid var(--retro-brown);
}

.cta-booking h2 {
  color: var(--retro-cream);
  border: none;
  margin-bottom: 20px;
}

.cta-booking p {
  color: var(--retro-cream);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.availability {
  margin-top: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

/* ============================================
   TOURS PAGE
   ============================================ */
.tours-list {
  padding: 60px 20px;
  background: var(--retro-cream);
}

.tour-card {
  background: #ffffff;
  padding: 35px;
  margin-bottom: 30px;
  border: 5px double var(--retro-brown);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.tour-card h2 {
  color: var(--retro-rust);
  margin-bottom: 15px;
  border: none;
}

.tour-card .price {
  font-size: 36px;
  font-weight: bold;
  color: var(--retro-orange);
  font-family: 'Georgia', serif;
  margin: 15px 0;
  display: block;
}

.tour-card .duration {
  font-weight: bold;
  color: var(--retro-olive);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.tour-card ul {
  margin: 20px 0;
}

.booking-info {
  padding: 60px 20px;
  background: var(--retro-tan);
  text-align: center;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.info-item {
  background: var(--retro-cream);
  padding: 30px;
  border: 4px solid var(--retro-brown);
  flex: 1 1 280px;
  max-width: 350px;
  text-align: left;
}

.info-item h3 {
  color: var(--retro-rust);
  margin-bottom: 15px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: 60px 20px;
  background: var(--retro-cream);
}

.about-story h2 {
  text-align: center;
  margin: 0 auto 30px;
}

.about-story p {
  max-width: 800px;
  margin: 0 auto 25px;
  font-size: 17px;
  line-height: 1.8;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 50px;
}

.value-item {
  background: var(--retro-dark-cream);
  padding: 30px;
  border: 4px solid var(--retro-brown);
  border-left-width: 8px;
  border-left-color: var(--retro-orange);
  flex: 1 1 250px;
  max-width: 280px;
}

.value-item h3 {
  color: var(--retro-rust);
  margin-bottom: 12px;
}

.team {
  padding: 60px 20px;
  background: var(--retro-tan);
  text-align: center;
}

.sustainability {
  padding: 60px 20px;
  background: var(--retro-cream);
}

.sustainability h2 {
  text-align: center;
  margin: 0 auto 30px;
}

.sustainability p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 17px;
  line-height: 1.8;
}

.eco-list {
  max-width: 700px;
  margin: 30px auto;
}

.eco-list li {
  padding: 15px 15px 15px 40px;
  background: var(--retro-dark-cream);
  border-left: 5px solid var(--retro-olive);
  margin-bottom: 15px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.destinations {
  padding: 60px 20px;
  background: var(--retro-cream);
}

.destinations h2 {
  text-align: center;
  margin: 0 auto 40px;
}

.destinations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.destination-card {
  background: #ffffff;
  padding: 35px;
  border: 5px double var(--retro-brown);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  flex: 1 1 450px;
  max-width: 550px;
}

.destination-card h3 {
  color: var(--retro-rust);
  margin-bottom: 15px;
}

.seasonal {
  padding: 60px 20px;
  background: var(--retro-tan);
}

.seasonal h2 {
  text-align: center;
  margin: 0 auto 40px;
}

.seasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.season-card {
  background: var(--retro-cream);
  padding: 30px;
  border: 4px solid var(--retro-brown);
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
}

.season-card h3 {
  color: var(--retro-orange);
  margin-bottom: 15px;
}

.photo-tips {
  padding: 60px 20px;
  background: var(--retro-cream);
}

.photo-tips h2 {
  text-align: center;
  margin: 0 auto 30px;
}

.photo-tips p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
}

.tips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.tip-item {
  background: var(--retro-dark-cream);
  padding: 25px;
  border: 4px solid var(--retro-brown);
  flex: 1 1 300px;
  max-width: 400px;
}

.tip-item h3 {
  color: var(--retro-rust);
  margin-bottom: 12px;
}

.cta-link {
  display: inline-block;
  margin: 20px auto;
  font-size: 18px;
  font-weight: bold;
  color: var(--retro-orange) !important;
  text-decoration: none;
  border: 3px solid var(--retro-orange);
  padding: 15px 30px;
  box-shadow: 4px 4px 0px var(--retro-brown);
  transition: all 0.3s ease;
}

.cta-link:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--retro-brown);
  background: var(--retro-orange);
  color: var(--retro-cream) !important;
}

.cta {
  padding: 80px 20px;
  background: var(--retro-orange);
  text-align: center;
}

.cta h2 {
  color: var(--retro-cream);
  border: none;
  margin-bottom: 30px;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.featured-post {
  padding: 60px 20px;
  background: var(--retro-cream);
}

.post-featured {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border: 5px double var(--retro-brown);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.category {
  display: inline-block;
  background: var(--retro-orange);
  color: var(--retro-cream);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  border: 2px solid var(--retro-brown);
}

.post-featured h2 {
  border: none;
  margin: 0 0 20px 0;
}

.meta {
  display: block;
  font-size: 14px;
  color: var(--retro-rust);
  font-style: italic;
  margin-top: 15px;
}

.blog-posts {
  padding: 60px 20px;
  background: var(--retro-tan);
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.post-card {
  background: #ffffff;
  padding: 30px;
  border: 4px solid var(--retro-brown);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  flex: 1 1 320px;
  max-width: 380px;
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.post-card h3 {
  color: var(--retro-rust);
  margin: 15px 0;
}

.newsletter {
  padding: 80px 20px;
  background: var(--retro-mustard);
  text-align: center;
}

.newsletter h2 {
  color: var(--retro-cream);
  border: none;
  margin-bottom: 20px;
}

.newsletter p {
  color: var(--retro-cream);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.newsletter-note {
  margin-top: 20px;
}

.newsletter-note p {
  font-size: 14px;
  font-style: italic;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-methods {
  padding: 60px 20px;
  background: var(--retro-cream);
}

.contact-methods h2 {
  text-align: center;
  margin: 0 auto 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-method {
  background: var(--retro-dark-cream);
  padding: 35px;
  border: 4px solid var(--retro-brown);
  border-top-width: 8px;
  border-top-color: var(--retro-orange);
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
}

.contact-method h3 {
  color: var(--retro-rust);
  margin-bottom: 15px;
}

.contact-method .availability {
  font-size: 14px;
  color: var(--retro-olive);
  font-weight: bold;
  margin-top: 15px;
}

.contact-form-section {
  padding: 60px 20px;
  background: var(--retro-tan);
  text-align: center;
}

.form-note {
  max-width: 700px;
  margin: 30px auto;
  background: var(--retro-cream);
  padding: 20px;
  border-left: 5px solid var(--retro-orange);
  text-align: left;
}

.location {
  padding: 60px 20px;
  background: var(--retro-cream);
}

.location h2 {
  text-align: center;
  margin: 0 auto 40px;
}

.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.info-block {
  background: var(--retro-dark-cream);
  padding: 30px;
  border: 4px solid var(--retro-brown);
  flex: 1 1 280px;
  max-width: 320px;
}

.info-block h3 {
  color: var(--retro-rust);
  margin-bottom: 15px;
}

.faq-quick {
  padding: 60px 20px;
  background: var(--retro-tan);
}

.faq-quick h2 {
  text-align: center;
  margin: 0 auto 40px;
}

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

.faq-item {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 25px;
  border: 4px solid var(--retro-brown);
  border-left-width: 8px;
  border-left-color: var(--retro-orange);
}

.faq-item h3 {
  color: var(--retro-rust);
  margin-bottom: 15px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  padding: 60px 20px;
  background: var(--retro-cream);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  border: 5px double var(--retro-brown);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.content-wrapper h2 {
  border: none;
  margin: 40px 0 20px 0;
  padding-top: 20px;
  border-top: 2px dotted var(--retro-tan);
}

.content-wrapper h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper h3 {
  margin: 25px 0 15px 0;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  padding: 100px 20px;
  background: var(--retro-mustard);
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--retro-olive);
  color: var(--retro-cream);
  font-size: 60px;
  line-height: 100px;
  border-radius: 50%;
  margin: 0 auto 30px;
  border: 5px solid var(--retro-brown);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.thank-you-hero h1 {
  color: var(--retro-cream);
  border: none;
  margin-bottom: 20px;
}

.thank-you-hero p {
  color: var(--retro-cream);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 15px;
}

.response-time {
  font-weight: bold;
  font-size: 16px !important;
}

.next-steps {
  padding: 60px 20px;
  background: var(--retro-cream);
}

.next-steps h2 {
  text-align: center;
  margin: 0 auto 40px;
}

.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step-item {
  background: var(--retro-dark-cream);
  padding: 30px;
  border: 4px solid var(--retro-brown);
  border-top-width: 8px;
  border-top-color: var(--retro-orange);
  flex: 1 1 280px;
  max-width: 350px;
}

.step-item h3 {
  color: var(--retro-rust);
  margin-bottom: 15px;
}

.explore-more {
  padding: 60px 20px;
  background: var(--retro-tan);
}

.explore-more h2 {
  text-align: center;
  margin: 0 auto 40px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.suggestion-card {
  background: #ffffff;
  padding: 30px;
  border: 4px solid var(--retro-brown);
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
}

.suggestion-card h3 {
  color: var(--retro-rust);
  margin-bottom: 15px;
}

.suggestion-card a {
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  color: var(--retro-orange) !important;
  text-decoration: none;
  border-bottom: 2px solid var(--retro-orange);
}

.preparation {
  padding: 60px 20px;
  background: var(--retro-cream);
}

.preparation h2 {
  text-align: center;
  margin: 0 auto 30px;
}

.preparation p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 18px;
  font-weight: bold;
}

.preparation ul {
  max-width: 600px;
  margin: 0 auto;
}

.preparation li {
  background: var(--retro-dark-cream);
  padding: 15px 15px 15px 40px;
  border-left: 5px solid var(--retro-orange);
  margin-bottom: 15px;
}

.back-home {
  padding: 40px 20px;
  text-align: center;
  background: var(--retro-tan);
}

/* ============================================
   FOOTER - VINTAGE NEWSPAPER
   ============================================ */
footer {
  background: var(--retro-brown);
  color: var(--retro-cream);
  padding: 60px 20px 20px;
  border-top: 5px solid var(--retro-orange);
}

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

.footer-column {
  flex: 1 1 220px;
  max-width: 280px;
}

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

.footer-column h4 {
  color: var(--retro-orange);
  margin-bottom: 20px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid var(--retro-orange);
  padding-bottom: 10px;
}

.footer-column p {
  color: var(--retro-cream);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-column a {
  display: block;
  color: var(--retro-cream);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: var(--retro-orange);
  padding-left: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px dotted var(--retro-tan);
}

.footer-bottom p {
  color: var(--retro-cream);
  font-size: 14px;
  margin: 0;
}

/* ============================================
   COOKIE CONSENT BANNER - VINTAGE STYLE
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--retro-brown);
  color: var(--retro-cream);
  padding: 25px 20px;
  z-index: 1500;
  border-top: 5px solid var(--retro-orange);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  color: var(--retro-cream);
  font-size: 14px;
}

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

.cookie-buttons button {
  background: var(--retro-orange);
  color: var(--retro-cream);
  border: 3px solid var(--retro-cream);
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.cookie-buttons button:hover {
  background: var(--retro-rust);
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.cookie-buttons .btn-reject {
  background: transparent;
  border-color: var(--retro-cream);
}

.cookie-buttons .btn-reject: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.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: var(--retro-cream);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border: 5px solid var(--retro-brown);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-category {
  padding: 20px;
  margin-bottom: 15px;
  background: var(--retro-dark-cream);
  border-left: 5px solid var(--retro-orange);
}

.cookie-category h4 {
  color: var(--retro-brown);
  margin-bottom: 10px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: bold;
}

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

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

.cookie-modal-buttons button {
  flex: 1 1 150px;
  background: var(--retro-orange);
  color: var(--retro-cream);
  border: 3px solid var(--retro-brown);
  padding: 12px 20px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 3px 3px 0px var(--retro-brown);
  transition: all 0.3s ease;
}

.cookie-modal-buttons button:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0px var(--retro-brown);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
    margin: 20px 10px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    width: 100%;
    max-width: 100%;
  }
  
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .info-grid,
  .values-grid,
  .destinations-grid,
  .seasons-grid,
  .tips-list,
  .contact-grid,
  .location-info,
  .steps-list,
  .suggestions-grid,
  .posts-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .feature-item,
  .testimonial-card,
  .info-item,
  .value-item,
  .destination-card,
  .season-card,
  .tip-item,
  .contact-method,
  .info-block,
  .step-item,
  .suggestion-card,
  .post-card {
    width: 100%;
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-column {
    width: 100%;
    max-width: 100%;
  }
  
  .content-wrapper {
    padding: 30px 20px;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 100%;
  }
  
  .cookie-modal-content {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 40px 15px;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-book {
    padding: 12px 20px;
    font-size: 16px;
  }
  
  .service-card,
  .tour-card,
  .post-featured {
    padding: 20px;
  }
}

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

.service-card,
.feature-item,
.testimonial-card,
.tour-card,
.post-card {
  animation: fadeIn 0.6s ease forwards;
}

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

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

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

.p-20 {
  padding: 20px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}