/*--------------------------------------------------
  Airy Asset Journeys - Vintage Retro CSS Theme
  Brand: Sophisticated, bespoke, vintage-retro luxury
  Fonts: Playfair Display (display), Montserrat (body)
  Colors: #1A2639 (primary), #2E536B (secondary), #F4B860 (accent)
  Vintage palette additions for retro feel
---------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --primary: #1A2639;
  --secondary: #2E536B;
  --accent: #F4B860;
  --retro-red: #C1440E;
  --retro-green: #6B8E23;
  --retro-blue: #3B6BA5;
  --retro-cream: #F9F6F2;
  --retro-brown: #A67C52;
  --retro-orange: #F7A072;
  --retro-bg: #F5E9DA;
  --text-dark: #2B2320;
  --text-light: #FFF;
  --shadow-vintage: 0 4px 24px rgba(42, 32, 20, 0.08), 0 2px 8px rgba(241, 184, 96, 0.10);
  --border-radius: 18px;
  --pattern-url: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" fill="%23F4B860"/><circle cx="20" cy="20" r="6" fill="%23F9F6F2"/></svg>');
}

html {
  box-sizing: border-box;
  font-size: 18px;
  background: var(--retro-bg);
}
*, *:before, *:after { box-sizing: inherit; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--retro-bg);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
  background-image: var(--pattern-url);
  background-size: 120px 120px;
  background-repeat: repeat;
}

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

/*----------------------
  Typography
-----------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.3rem;
  text-shadow: 1px 2px 0 var(--accent), 0 2px 8px rgba(26,38,57,0.08);
  margin-bottom: 18px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol {
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
  color: var(--retro-red);
}
small {
  font-size: 0.95em;
  color: var(--secondary);
}

/*----------------------
  Header & Navigation
-----------------------*/
header {
  background: var(--retro-cream);
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 2px 12px rgba(26,38,57,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px 18px;
  gap: 18px;
}
.logo img {
  height: 48px;
  width: auto;
  filter: sepia(0.3) contrast(1.1) saturate(1.2);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 6px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.25s;
  border-radius: 2px;
  margin-top: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--retro-red);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.cta-btn {
  background: linear-gradient(90deg, var(--accent) 70%, var(--retro-orange) 100%);
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 32px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(244,184,96,0.12);
  text-decoration: none;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--retro-orange) 60%, var(--accent) 100%);
  color: var(--retro-red);
  box-shadow: 0 4px 16px rgba(244,184,96,0.18);
}

/*----------------------
  Mobile Navigation
-----------------------*/
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  padding: 6px 16px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(244,184,96,0.12);
  transition: background 0.18s, color 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-orange);
  color: var(--retro-red);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,38,57,0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: var(--accent);
  border: none;
  font-size: 2.2rem;
  margin: 24px 32px 0 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--retro-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  margin: 48px 32px 0 0;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.18s;
  padding: 6px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-orange);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .cta-btn {
    padding: 10px 22px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .cta-btn {
    margin-left: 8px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*----------------------
  Section & Layout Spacing
-----------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255,255,255,0.82);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-vintage);
  position: relative;
}
section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cta-section {
  align-items: center;
  text-align: center;
  background: linear-gradient(90deg, var(--retro-cream) 80%, var(--accent) 100%);
  box-shadow: 0 4px 24px rgba(244,184,96,0.10);
}

/*----------------------
  Flexbox Layouts
-----------------------*/
.feature-grid, .service-cards, .journey-cards, .lodge-grid, .team-grid, .experience-grid, .gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
  margin-bottom: 18px;
}
.feature-grid > div, .service-cards > div, .journey-cards > div, .lodge-grid > div, .team-grid > div, .experience-grid > div, .gallery-grid > div {
  background: var(--retro-cream);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-vintage);
  padding: 28px 22px 22px 22px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid var(--accent);
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.feature-grid > div:hover, .service-cards > div:hover, .journey-cards > div:hover, .lodge-grid > div:hover, .team-grid > div:hover, .experience-grid > div:hover, .gallery-grid > div:hover {
  box-shadow: 0 8px 32px rgba(244,184,96,0.18);
  border-color: var(--retro-orange);
  transform: translateY(-4px) scale(1.02);
}
.gallery-grid > div {
  padding: 0 0 12px 0;
  background: var(--retro-bg);
  border: none;
  box-shadow: none;
  max-width: 320px;
}
.gallery-grid img {
  width: 100%;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 2px 12px rgba(26,38,57,0.10);
  margin-bottom: 10px;
}

/*----------------------
  Testimonial Slider & Cards
-----------------------*/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: var(--retro-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(26,38,57,0.08);
  border-left: 6px solid var(--accent);
  min-width: 260px;
  max-width: 380px;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 1.08rem;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card p {
  color: var(--primary);
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--retro-red);
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(244,184,96,0.18);
  border-color: var(--retro-orange);
}

/*----------------------
  Content Grids & Flex Patterns
-----------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--retro-cream);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-vintage);
  padding: 24px 18px;
  min-width: 220px;
  max-width: 340px;
  border: 2px solid var(--accent);
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(244,184,96,0.18);
  border-color: var(--retro-orange);
  transform: translateY(-4px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*----------------------
  Lists
-----------------------*/
ul, ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  position: relative;
}
ul li:before {
  content: '\25A0';
  color: var(--accent);
  font-size: 0.7em;
  margin-right: 8px;
  vertical-align: middle;
}

/*----------------------
  Footer
-----------------------*/
footer {
  background: var(--primary);
  color: var(--retro-cream);
  padding: 40px 0 24px 0;
  border-top: 6px solid var(--accent);
  font-size: 1rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--accent);
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--retro-orange);
}
.footer-contact {
  text-align: center;
  color: var(--retro-cream);
  font-size: 1rem;
}
.footer-contact strong {
  color: var(--accent);
}

/*----------------------
  Contact Details & Map
-----------------------*/
.contact-details {
  background: var(--retro-cream);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-vintage);
  padding: 18px 22px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.map-placeholder {
  background: var(--retro-bg);
  border: 2px dashed var(--accent);
  border-radius: var(--border-radius);
  padding: 18px;
  color: var(--secondary);
  font-style: italic;
  text-align: center;
}

/*----------------------
  Cookie Consent Banner
-----------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--primary);
  color: var(--retro-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px 18px 18px 18px;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(26,38,57,0.12);
  animation: cookieBannerIn 0.6s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0 0 8px 0;
  color: var(--retro-cream);
  font-size: 1.05rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 24px;
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(244,184,96,0.12);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--retro-orange);
  color: var(--retro-red);
}
.cookie-btn.settings {
  background: var(--retro-brown);
  color: var(--retro-cream);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--retro-red);
  color: var(--retro-cream);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(26,38,57,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.77,0,.18,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: var(--retro-cream);
  color: var(--primary);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(26,38,57,0.18);
  padding: 36px 32px 28px 32px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn 0.5s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieModalIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  margin-top: 0;
  color: var(--retro-red);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: var(--accent);
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: var(--retro-green);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: var(--retro-cream);
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--retro-red);
  font-size: 2rem;
  position: absolute;
  top: 18px;
  right: 28px;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--retro-orange);
}

/*----------------------
  Micro-interactions
-----------------------*/
a, button, .cta-btn, .cookie-btn {
  transition: color 0.18s, background 0.18s, box-shadow 0.18s, border-color 0.18s;
}

/*----------------------
  Responsive Design
-----------------------*/
@media (max-width: 1024px) {
  .feature-grid > div, .service-cards > div, .journey-cards > div, .lodge-grid > div, .team-grid > div, .experience-grid > div, .gallery-grid > div {
    min-width: 180px;
    max-width: 48%;
    padding: 18px 10px 14px 10px;
  }
  .testimonial-card {
    min-width: 180px;
    max-width: 48%;
    padding: 14px 10px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .feature-grid, .service-cards, .journey-cards, .lodge-grid, .team-grid, .experience-grid, .gallery-grid, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .service-cards > div, .journey-cards > div, .lodge-grid > div, .team-grid > div, .experience-grid > div, .gallery-grid > div, .testimonial-card {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 20px;
  }
  .gallery-grid img {
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-nav {
    gap: 12px;
  }
  .footer-contact {
    font-size: 0.98rem;
  }
  .cookie-modal-content {
    padding: 18px 8px 18px 8px;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  html { font-size: 16px; }
  .logo img { height: 36px; }
  .cookie-banner {
    padding: 16px 4px 12px 4px;
    font-size: 0.98rem;
  }
  .cookie-modal-content {
    padding: 10px 2px 10px 2px;
  }
}

/*----------------------
  Miscellaneous
-----------------------*/
::-webkit-scrollbar {
  width: 10px;
  background: var(--retro-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}

/* Decorative vintage border for cards */
.card, .feature-grid > div, .service-cards > div, .journey-cards > div, .lodge-grid > div, .team-grid > div, .experience-grid > div {
  border-image: repeating-linear-gradient(135deg, var(--accent), var(--retro-orange) 10px, var(--accent) 20px) 1;
}

/* Vintage pattern overlay for hero sections */
section:first-of-type {
  background-image: repeating-linear-gradient(135deg, rgba(244,184,96,0.08) 0 8px, transparent 8px 16px);
}

/*----------------------
  Accessibility
-----------------------*/
:focus {
  outline: 2px dashed var(--retro-red);
  outline-offset: 2px;
}

/*----------------------
  Hide elements utility
-----------------------*/
.hide { display: none !important; }
