/*============== CSS RESET & BASE STYLES ==============*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2d2d2d;
  background: #FAF6ED;
  line-height: 1.65;
  min-height: 100vh;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a { color: #234E70; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #B04833; }

ul, ol { padding-left: 1.2em; margin-bottom: 16px; }
li { margin-bottom: 8px; }

strong, b { font-weight: 700; }

hr { border: 0; border-top: 1px solid #D3CBBB; margin: 32px 0; }

.container {
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 0px;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/*============== VINTAGE RETRO PALETTE & TYPOGRAPHY ==============*/
:root {
  --mj-primary: #234E70;
  --mj-secondary: #F7C873;
  --mj-accent: #F3F3F5;
  --mj-cream: #FFF8EE;
  --mj-brown: #B04833;
  --mj-green: #329083;
  --mj-shadow: rgba(46,37,17, 0.11);
  --mj-border: #D3CBBB;
  --mj-font-display: 'Montserrat', Arial, sans-serif;
  --mj-font-body: 'Open Sans', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--mj-font-display);
  color: var(--mj-primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-shadow: 1px 1px 0 #f7c8733d;
}
h1 { font-size: 2.5rem; line-height: 1.10; margin-bottom: 18px; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 16px; }
h3 { font-size: 1.25rem; line-height: 1.22; }
h4 { font-size: 1.15rem; }
h5, h6 { font-size: 1rem; }

.subheadline {
  font-size: 1.2rem;
  color: var(--mj-brown);
  font-family: var(--mj-font-display);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

p {
  font-family: var(--mj-font-body);
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.7;
}
.section ul {
  font-family: var(--mj-font-body);
  font-size: 1rem;
  color: #504945;
}

/*============== SPACING & FLEXBOX UTILITIES ==============*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: var(--mj-cream);
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--mj-shadow);
  border: 1.5px solid var(--mj-border);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 268px;
  max-width: 340px;
}

.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;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 14px;
  background: #fff8ee;
  box-shadow: 0 1px 8px var(--mj-shadow);
  border: 1px solid #ecd7b9;
  margin-bottom: 24px;
  min-width: 230px;
  max-width: 400px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--mj-accent);
  border-radius: 14px;
  border: 1.5px solid #eedeb2;
  box-shadow: 0 1px 8px var(--mj-shadow);
  padding: 22px 18px;
  min-width: 200px;
  flex: 1 1 220px;
  transition: transform 0.15s, box-shadow 0.18s;
  margin-bottom: 20px;
  position: relative;
}
.feature-item:hover {
  transform: translateY(-5px) scale(1.017);
  box-shadow: 0 4px 20px #eedeb2b0;
  background: #fffbe7;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  filter: contrast(0.92) sepia(0.2) brightness(1.13);
}
.feature-item h3 {
  font-size: 1.15rem;
  color: var(--mj-brown);
  margin-bottom: 7px;
  font-family: var(--mj-font-display);
  letter-spacing: 0.01em;
}
.feature-item span {
  font-size: 0.98rem;
  color: #947540;
  background: #F7C87315;
  padding: 4px 10px;
  border-radius: 7px;
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.01em;
}

.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mj-font-display);
  font-size: 1.12rem;
  color: #693523;
  margin-top: 14px;
}
.quick-stats span {
  background: #f7c87360;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 1px 4px #eedeb2af;
}

.trustmarks {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 14px;
}
.trustmarks span {
  background: #fae1a8;
  color: #79582A;
  font-size: 0.94rem;
  padding: 5px 13px;
  border-radius: 12px;
  letter-spacing: 0.01em;
  font-family: var(--mj-font-display);
  box-shadow: 0px 1px 6px #ecd7b9bb;
}

.customer-logos {
  display: flex;
  gap: 20px;
  align-items: center;
}
.customer-logos img {
  height: 32px;
  width: 32px;
  filter: sepia(0.34) brightness(1.17) contrast(1.05);
}

/*============== HEADER & NAV ==============*/
header {
  background: #f3ecd3 url('../assets/pattern-retro.png') top repeat-x;
  box-shadow: 0 2px 8px #eedeb2aa;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  flex-wrap: wrap;
}
.logo-link img { height: 43px; margin-right: 16px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mj-font-display);
  font-weight: 500;
}
.main-nav a {
  color: var(--mj-primary);
  font-size: 1.02rem;
  padding: 3px 10px;
  border-radius: 6px;
  transition: background .22s, color .18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--mj-secondary);
  color: #2e2417;
}

.cta-btn {
  background: var(--mj-secondary);
  color: #273231;
  border-radius: 22px;
  padding: 10px 26px;
  font-family: var(--mj-font-display);
  font-weight: 700;
  font-size: 1.02rem;
  margin-left: 18px;
  letter-spacing: 0.04em;
  border: none;
  box-shadow: 0 3px 10px #eedeb2b5;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  cursor: pointer;
  outline: none;
  text-shadow: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffe1ab;
  color: #B04833;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 5px 20px #edd4abac;
}

/*============== BURGER MOBILE MENU ==============*/
.mobile-menu-toggle {
  display: none;
  background: var(--mj-primary);
  color: #fffbea;
  border: none;
  padding: 7px 18px;
  border-radius: 7px;
  font-size: 1.6rem;
  margin-left: 16px;
  cursor: pointer;
  transition: background .22s;
  z-index: 9001;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #B04833;
  color: #fff7e5;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #f3ecd3;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.77,0,.18,1), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #fff8ee;
  color: var(--mj-brown);
  border: none;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 18px 18px 0 0;
  padding: 0.3em 0.8em;
  border-radius: 11px;
  cursor: pointer;
  box-shadow: 0 1px 8px #eedeb260;
  transition: background 0.18s, color 0.14s;
  z-index: 10010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff8ee;
  background: #B04833;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
  align-items: center;
}
.mobile-nav a {
  font-family: var(--mj-font-display);
  font-size: 1.22rem;
  color: var(--mj-primary);
  padding: 12px 28px;
  border-radius: 11px;
  font-weight: 600;
  background: #fffbe7;
  box-shadow: 0 2px 8px #edd4abab;
  margin-bottom: 6px;
  transition: background 0.16s, color 0.14s, transform 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7C873;
  color: #B04833;
  transform: scale(1.045);
}

/*============== HERO SECTIONS ==============*/
.hero-section {
  background: #FFEBC6 url('../assets/retro-waves.png') 0 80% repeat-x;
  border-bottom: 2px solid #ecd7b9;
  padding-top: 48px;
  padding-bottom: 38px;
  margin-bottom: 32px;
  box-shadow: 0 3px 25px #eedeb280;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-section h1 {
  color: var(--mj-brown);
  text-shadow: 1.5px 1.5px #f7c87355;
}
.hero-section .cta-btn {
  margin-top: 24px;
  font-size: 1.08rem;
}

/*============== FEATURES & SERVICES ==============*/
.features-section .feature-grid, .features-section .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.features-section ul, .services-section ul {
  list-style: disc inside;
  color: #40342f;
  margin-bottom: 18px;
  margin-top: 6px;
}
.features-section ul li,
.services-section ul li {
  margin-left: 20px;
  margin-bottom: 7px;
  font-size: 1.08rem;
  font-family: var(--mj-font-body);
}

.services-section h3 {
  color: var(--mj-brown);
  margin-top: 20px;
}
.sample-itineraries UL,
.services-section ul ul {
  margin-left: 20px;
  margin-bottom: 0;
}

/*============== TESTIMONIALS ==============*/
.testimonials-section {
  background: #fffbe7;
  padding: 48px 0 42px 0;
  margin-bottom: 60px;
  border-top: 2px solid #ecd7b9;
  border-bottom: 2px solid #ecd7b9;
  box-shadow: 0 3px 20px #edd4ab15;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 3px 14px #edd4ab4c;
  border: 1.5px solid #eedeb2;
  color: #2d2d2d;
  font-size: 1rem;
  min-width: 220px;
  max-width: 370px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px #f1d6ad;
  transform: translateY(-4px) scale(1.03);
}
.testimonial-card p {
  color: #40342f;
  font-size: 1.1rem;
  margin-bottom: 14px;
  font-family: var(--mj-font-body);
  letter-spacing: 0.01em;
}
.testimonial-card span {
  color: #79582A;
  font-family: var(--mj-font-display);
  font-size: 0.98rem;
}

/* Text contrast on testimonials! */
.testimonial-card, .testimonials-section .testimonial-card {
  background: #fff;
  color: #2D2012;
}
.testimonial-card strong { color: #234E70; }

/*============== CONTACT INFO & BUTTONS ==============*/
.contact-info {
  background: #FAF7EF;
  box-shadow: 0 2px 8px #ecd7b980;
  border-radius: 12px;
  padding: 24px 20px;
  font-size: 1.11rem;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid #eedeb2;
  font-family: var(--mj-font-body);
}
.contact-info strong { color: var(--mj-primary); font-family: var(--mj-font-display); }

.contact-section .cta-btn {
  margin-top: 24px;
  font-size: 1.01rem;
  min-width: 182px;
}

.navigation-suggestions {
  margin-top: 24px;
  color: #79582a;
  font-family: var(--mj-font-display);
  font-size: 1.07rem;
}

/*============== FOOTER ==============*/
footer {
  background: #2D2012;
  color: #fffbe7;
  padding: 30px 0 16px 0;
  margin-top: 60px;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: #ffe1ab;
  font-family: var(--mj-font-display);
  font-weight: 400;
  transition: color .16s;
  font-size: 0.97rem;
}
.footer-nav a:hover, .footer-nav a:focus { color: #F7C873; }

.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.footer-branding img {
  height: 38px;
  filter: brightness(1.1) contrast(1.07);
  margin-bottom: 3px;
}
.social-icons {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 5px;
}
.social-icons img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  filter: sepia(0.43) contrast(1.17) brightness(1.05);
  background: #fffbe7;
  padding: 3px;
  box-shadow: 0 1px 7px #f7c87355;
  transition: filter 0.17s, box-shadow 0.16s;
}
.social-icons img:hover, .social-icons img:focus {
  filter: sepia(0.63) contrast(1.25) brightness(1.28);
  box-shadow: 0 3px 12px #ffd69480;
}

/*============== COOKIE CONSENT BANNER ==============*/
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #ffe1abcf;
  box-shadow: 0 -3px 18px #d1ba9270;
  border-top: 2.5px solid #ecd7b9;
  z-index: 10030;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 21px 14px 20px 14px;
  gap: 32px;
  font-family: var(--mj-font-body);
  font-size: 1rem;
  animation: fadeInBanner 0.8s;
}
@keyframes fadeInBanner { from { opacity:0; transform: translateY(60px);} to { opacity:1; transform: none;} }
.cookie-banner .cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  color: #4A3B2A;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  background: var(--mj-primary);
  color: #FFEBC6;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-family: var(--mj-font-display);
  font-weight: 600;
  margin-left: 0;
  cursor: pointer;
  transition: background .18s, color .16s, transform .13s;
  box-shadow: 0 2px 7px #ecd7b940;
}
.cookie-banner button.cookie-settings {
  background: #fffbe7;
  color: var(--mj-brown);
  border: 1.3px solid #ecd7b9;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  transform: translateY(-2px) scale(1.04);
  background: #B04833;
  color: #fffbe7;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #ffe1ab;
  color: #2d2012;
}

.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -150%) scale(0.9);
  opacity: 0;
  z-index: 10080;
  background: #FAF7EF;
  border-radius: 16px;
  box-shadow: 0 6px 32px #eedeb2d5;
  padding: 33px 30px 26px 30px;
  border: 2px solid #eedeb2;
  width: 94vw; max-width: 430px;
  transition: opacity 0.24s, transform 0.33s cubic-bezier(.82,-0.18,.18,1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.0);
  pointer-events: all;
}
.cookie-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-modal .modal-header h3 {
  font-size: 1.3rem;
  color: var(--mj-brown);
  font-family: var(--mj-font-display);
}
.cookie-modal .modal-close-btn {
  background: #ffe1ab;
  color: var(--mj-brown);
  border: none;
  border-radius: 50%;
  font-size: 1.52rem;
  width: 36px; height: 36px;
  cursor: pointer;
  box-shadow: 0 1px 8px #ecd7b960;
}
.cookie-modal .modal-close-btn:hover, .cookie-modal .modal-close-btn:focus {
  background: #B04833;
  color: #fffbe7;
}

.cookie-categories {
  margin-top: 8px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-family: var(--mj-font-body);
  font-weight: 600;
  color: #544326;
  font-size: 1.06rem;
}
.cookie-category input[type=checkbox],
.cookie-category input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: #B04833;
}
.cookie-category .note {
  color: #B04833;
  font-size: 0.92rem;
  margin-left: 8px;
}
/* Essential always-on style */
.cookie-category.essential label::after {
  content: '(always enabled)';
  color: #79582A;
  font-size: 0.89em;
  margin-left: 8px;
  font-weight: 400;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-size: 1.04rem;
  border-radius: 8px;
  border: none;
  padding: 9px 18px;
  font-family: var(--mj-font-display);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 7px #ecd7b940;
}

/*============== MEDIA QUERIES - RESPONSIVE FLEX LAYOUTS ==============*/
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
  }
  header .container,
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .section, .testimonials-section, .features-section, .services-section {
    padding: 28px 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .hero-section {
    padding-top: 38px;
    padding-bottom: 22px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .features-section .feature-grid,
  .features-section .card-container,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    margin-bottom: 38px;
    padding-bottom: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-nav {
    gap: 15px;
    margin-bottom: 9px;
  }
  .footer-branding img {
    height: 32px;
    margin-bottom: 1px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 7px 18px 11px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.08rem; }
  .container {
    min-width: 0;
    padding: 0 2vw;
  }
  .card, .feature-item, .testimonial-card, .contact-info {
    padding: 13px 8px 15px 8px;
    min-width: 0;
    max-width: 100vw;
  }
  .cookie-modal {
    padding: 18px 4px 14px 8px;
    min-width: 0;
    width: 98vw;
    max-width: 99vw;
  }
}

/*============== MICRO-INTERACTIONS, TRANSITIONS, AND HOVER EFFECTS ==============*/
.card, .testimonial-card, .feature-item, .cta-btn, .mobile-nav a, .cookie-banner button, .cookie-modal button {
  transition: box-shadow 0.15s, transform 0.13s, background 0.17s, color 0.19s;
}
.button, .cta-btn, .cookie-banner button, .cookie-modal button {
  outline: none;
}
.button:focus-visible,
.cta-btn:focus-visible,
.cookie-banner button:focus-visible,
.cookie-modal button:focus-visible {
  box-shadow: 0 0 0 2.5px #234E70, 0 2px 7px #f3cf8c71;
}

/*============== SPECIAL RETRO DETAILS ==============*/
h1, h2, h3 {
  /* subtle sun shadow vintage effect under headlines */
  text-shadow: 2px 3px 0 #ffe1ab4f, 0.5px 0.5px 0 #ffe1ab47;
}
.card, .testimonial-card, .feature-item {
  border-style: solid;
  border-width: 1.5px;
  box-shadow: 0 2px 9px #edd4ab70;
  border-radius: 14px;
}
.features-section {
  background: url('../assets/pattern-retro-faint.png') center top repeat-x;
}

/*============== END OF CSS ==============*/
