/* =========================================================
   LUMORA BIKE TOURS | Style.css — Geometric Structured Theme
   Font: Montserrat (display), Open Sans (body)
   Brand Colors: #23505C (primary), #F0AA3B (secondary), #F3F7F5 (accent)
   Responsive: Flexbox only, NO Grid, no Columns
   ========================================================= */

/* -- CSS RESET & NORMALIZE -- */
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; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #23505C;
  background: #F3F7F5;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: #23505C; text-decoration: none; transition: color 0.2s; }
a:active, a:focus { outline: 2px solid #F0AA3B; outline-offset: 2px; }
button, input, textarea { font-family: inherit; font-size: 1rem; }

ul, ol { list-style: none; }
ul { padding-left: 0; }
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.5rem; }
}

p, li, dd, dt { font-size: 1rem; color: #23505C; }

strong { font-weight: 700; }
.subheadline {
  font-size: 1.1rem;
  color: #23505C;
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
}

.container {
  width: 100%;
  max-width: 1220px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

main {
  margin-top: 24px;
}

/* ===================== HEADER / NAV ===================== */
header {
  background: #ffffff;
  border-bottom: 4px solid #23505C;
  box-shadow: 0 2px 8px rgba(35,80,92,0.04);
  z-index: 99;
  position: relative;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
}
header img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  font-size: 1rem;
}
nav a.cta {
  background: #F0AA3B;
  color: #23505C;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(35,80,92,0.09);
  font-weight: 700;
  padding: 10px 24px;
  border: none;
  text-transform: none;
  margin-left: 12px;
  letter-spacing: 0.02em;
}
nav a.cta:hover, nav a.cta:focus {
  background: #23505C;
  color: #F0AA3B;
  box-shadow: 0 4px 16px rgba(35,80,92,0.12);
  outline: none;
}
nav a:hover, nav a:focus {
  background: #F3F7F5;
  color: #F0AA3B;
  outline: none;
}

.mobile-menu-toggle {
  display: inline-flex;
  background: #F0AA3B;
  color: #23505C;
  border: none;
  border-radius: 10px;
  font-size: 2.2rem;
  cursor: pointer;
  align-items: center;
  padding: 5px 11px;
  margin-left: 16px;
  transition: background 0.18s, color 0.18s, transform 0.22s cubic-bezier(.34,1.56,.64,1);
  z-index: 110;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #23505C;
  color: #F0AA3B;
  transform: scale(1.07) rotate(-2deg);
  outline: none;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

@media (max-width: 1023px) {
  nav { display: none; }
}

/* =================== MOBILE MENU / OVERLAY =================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #23505C;
  color: #fff;
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.42,1.48,.58,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 24px 18px 24px;
  box-shadow: 3px 0 42px rgba(35,80,92,0.16), 0 6px 36px rgba(35,80,92,0.08);
  width: 92vw;
  max-width: 340px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: #F0AA3B;
  font-size: 2rem;
  border: none;
  position: absolute;
  top: 20px;
  right: 24px;
  cursor: pointer;
  transition: color 0.16s, transform 0.18s;
  z-index: 310;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  transform: scale(1.15) rotate(3deg);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 14px 12px;
  color: #F0AA3B;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s, padding-left 0.18s;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3F7F5;
  color: #23505C;
  padding-left: 24px;
  outline: none;
}
@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

/* ===================== FOOTER ===================== */
footer {
  background: #E9EEF0;
  border-top: 5px solid #23505C;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 40px 20px 30px 20px;
}
footer img {
  height: 40px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
footer nav a {
  color: #23505C;
  background: transparent;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  padding: 4px 8px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
footer nav a:hover, footer nav a:focus {
  color: #F0AA3B;
  background: #fff;
  outline: none;
}
.footer-contact, .footer-hours {
  font-size: 0.95rem;
  color: #23505C;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* ===================== MAIN SECTIONS ===================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  width: 100%;
}
.text-section {
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}
@media (min-width: 620px) {
  .content-wrapper {
    gap: 28px;
  }
}

/* Card/Section Layouts & Flexbox Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.card {
  background: #fff;
  border-radius: 17px;
  border: 1.5px solid #E3ECE9;
  box-shadow: 0 2px 14px rgba(35,80,92,0.07);
  padding: 26px 24px 22px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  max-width: 400px;
  flex: 1 1 280px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #F0AA3B;
  margin-bottom: 20px;
  box-shadow: 0 3px 14px rgba(35,80,92,0.08);
  position: relative;
  width: 100%;
  max-width: 560px;
  color: #23505C;
}
.testimonial-card p {
  color: #23505C;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-card span {
  font-size: 0.98rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===================== FORMS, INPUTS, CTA BUTTONS ===================== */
.cta,
button.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F0AA3B;
  color: #23505C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  border: none;
  border-radius: 11px;
  padding: 13px 32px;
  margin-top: 12px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(240,170,59,0.20);
  transition: background 0.22s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  outline: none;
}
.cta:hover, .cta:focus, button.cta:hover, button.cta:focus {
  background: #23505C;
  color: #F0AA3B;
  box-shadow: 0 7px 24px rgba(35,80,92,0.18);
  transform: scale(1.04);
}

input[type="search"] {
  width: 100%;
  max-width: 320px;
  padding: 12px 18px;
  border: 1.5px solid #E3ECE9;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 12px;
  background: #fff;
  transition: border-color 0.16s;
  color: #23505C;
}
input[type="search"]:focus {
  border-color: #F0AA3B;
  outline: none;
}

/* ===================== LIST STYLES, ICONS IN LISTS ===================== */
ul li, .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  color: #23505C;
  font-size: 1rem;
}
ul li img {
  width: 32px;
  height: 32px;
}
ul li:last-child { margin-bottom: 0; }

/* ===================== DEFINITION LIST (FAQ) ===================== */
dl {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
dt {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 3px;
  color: #23505C;
}
dd {
  margin-left: 0;
  font-size: 1rem;
  color: #23505C;
  margin-bottom: 10px;
}

dl dd:last-child { margin-bottom: 0; }

/* ===================== GEOMETRIC DIVIDERS & SHAPES ===================== */
.section-divider {
  width: 64px;
  height: 5px;
  background: #F0AA3B;
  border-radius: 7px 20px 7px 20px;
  margin: 28px 0;
}
/* Use custom SVGs or ::before for geometric accents elsewhere as needed */

/* ===================== BOX SHADOWS, ANGULAR BORDERS ===================== */
.card, .testimonial-card, .feature-item {
  box-shadow: 0 4px 18px rgba(35,80,92,0.07);
}
.card, .testimonial-card {
  border-radius: 18px 10px 22px 16px;
  border-style: solid;
}

/* ===================== RESPONSIVE FLEX LAYOUTS ===================== */
@media (max-width: 900px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 26px;
  }
  .card-container {
    flex-direction: column;
  }
  .card {
    max-width: 100%;
    min-width: 0;
  }
}

/* Responsive spacing for section */
@media (max-width: 600px) {
  section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 7px;
  }
  .testimonial-card {
    padding: 12px 10px;
  }
  .footer-contact, .footer-hours { font-size: 0.91rem; }
}

/* ===================== HIERARCHY, SPACING, TYPOGRAPHY ===================== */
.content-wrapper > h2, .content-wrapper > h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.text-section > h1, .text-section > h2 {
  text-align: left;
}
.text-section > p { margin-bottom: 14px; }

/* ===================== MICRO-ANIMATIONS (SHADOWS/ICONS) ===================== */
.card:hover, .testimonial-card:hover, .card:focus-within {
  box-shadow: 0 10px 28px rgba(35,80,92,0.12);
  transform: translateY(-3px) scale(1.02) skew(-1deg);
  transition: box-shadow 0.23s, transform 0.14s cubic-bezier(.44,1.62,.64,1);
  border-color: #F0AA3B;
  z-index: 2;
}
ul li img {
  filter: grayscale(8%);
  transition: filter 0.2s, transform 0.18s;
}
ul li:hover img {
  filter: none;
  transform: scale(1.08) rotate(-7deg);
}

/* ===================== ACCESSIBILITY & VISUAL CONTRAST ===================== */
.testimonial-card {
  background: #fff;
  color: #23505C;
  border: 2px solid #F0AA3B;
}
.testimonial-card p, .testimonial-card span {
  color: #23505C;
}

/* ===================== COOKIE CONSENT BANNER ===================== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #23505C;
  color: #fff;
  z-index: 1000;
  padding: 24px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -3px 48px rgba(35,80,92,0.22);
  animation: banner-slideup 0.6s ease;
}
@keyframes banner-slideup {
  from { transform: translateY(100%) scale(0.98); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
#cookie-banner strong { color: #F0AA3B; }
#cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 10px;
}
#cookie-banner button, #cookie-banner .cookie-setting {
  border-radius: 9px;
  border: none;
  padding: 8px 26px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.11s, color 0.11s, box-shadow 0.12s;
  box-shadow: 0 2px 13px rgba(35,80,92,0.06);
}
#cookie-banner .cookie-accept {
  background: #F0AA3B;
  color: #23505C;
}
#cookie-banner .cookie-accept:hover, #cookie-banner .cookie-accept:focus {
  background: #fff;
  color: #F0AA3B;
}
#cookie-banner .cookie-reject {
  background: #fff;
  color: #23505C;
  border: 1.2px solid #F0AA3B;
}
#cookie-banner .cookie-reject:hover, #cookie-banner .cookie-reject:focus {
  background: #F0AA3B;
  color: #fff;
}
#cookie-banner .cookie-setting {
  background: #23505C;
  color: #F0AA3B;
  border: 1.2px solid #F0AA3B;
}
#cookie-banner .cookie-setting:hover, #cookie-banner .cookie-setting:focus {
  background: #F0AA3B;
  color: #23505C;
}

/* ===== COOKIE MODAL POPUP ===== */
#cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  background: #fff;
  color: #23505C;
  z-index: 1100;
  border-radius: 22px;
  box-shadow: 0 8px 70px 10px rgba(35,80,92,0.20), 0 2px 8px rgba(35,80,92,0.10);
  width: 94vw;
  max-width: 390px;
  padding: 30px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookie-modal-pop 0.27s ease;
}
@keyframes cookie-modal-pop {
  from { opacity: 0; transform: translate(-50%, -46%) scale(0.84); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cookie-modal h2 {
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #23505C;
  margin: 0 0 4px 0;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
#cookie-modal .category-label {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #23505C;
  font-size: 1rem;
  font-weight: 600;
  min-width: 110px;
}
#cookie-modal .category-switch {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #E3ECE9;
  border-radius: 19px;
  outline: none;
  border: none;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
}
#cookie-modal .category-switch:checked {
  background: #F0AA3B;
}
#cookie-modal .category-switch::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 1px; top: 1px;
  box-shadow: 0 2px 10px rgba(35,80,92,0.09);
  transition: left 0.18s, background 0.15s, box-shadow 0.15s;
}
#cookie-modal .category-switch:checked::before {
  left: 19px;
  background: #FFF3E0;
}
#cookie-modal .category-desc {
  font-size: 0.97rem;
  color: #23505C;
  padding-left: 6px;
}
#cookie-modal [disabled] {
  opacity: 0.7;
  pointer-events: none;
}
#cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 7px;
  justify-content: flex-end;
}
#cookie-modal .cookie-accept, #cookie-modal .cookie-reject {
  border-radius: 8px;
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}
#cookie-modal .cookie-accept {
  background: #F0AA3B;
  color: #23505C;
}
#cookie-modal .cookie-reject {
  background: #23505C;
  color: #F0AA3B;
}
#cookie-modal .cookie-accept:hover, #cookie-modal .cookie-accept:focus {
  background: #23505C;
  color: #F0AA3B;
}
#cookie-modal .cookie-reject:hover, #cookie-modal .cookie-reject:focus {
  background: #F0AA3B;
  color: #23505C;
}
#cookie-modal .cookie-close {
  background: none;
  color: #F0AA3B;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: color 0.16s, transform 0.18s;
  margin-left: 8px;
  margin-right: -9px;
}
#cookie-modal .cookie-close:hover, #cookie-modal .cookie-close:focus {
  color: #23505C;
  transform: scale(1.13);
}

/* ===================== TOOLTIPS, FOCUS, Z-INDEX =============== */
:focus {
  outline: 2px solid #F0AA3B;
  outline-offset: 2px;
}

[hidden] { display: none !important; }

/* ===================== UTILITY CLASSES (GEOMETRIC SHAPES ETC.) ===================== */
.geometric-bar {
  width: 88px;
  height: 7px;
  background: #F0AA3B;
  border-radius: 24px 9px 24px 9px;
  margin: 20px 0 35px 0;
}

/* ===================== PRINT/TABLET OPTIMIZATION ===================== */
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.26rem; }
  .section-divider, .geometric-bar { width: 30vw; min-width: 30px; max-width: 66px; }
}

/* ===================== GEOMETRIC/STRUCTURED FLAIR ===================== */
/* Add geometric accents around sections/cards using ::before/::after */
.card::before, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  left: -23px;
  top: 9px;
  width: 23px;
  height: 38px;
  border-radius: 11px 0 18px 5px;
  background: #F0AA3B;
  opacity: 0.11;
  z-index: 1;
  pointer-events: none;
}
.card::after, .testimonial-card::after {
  content: '';
  display: block;
  position: absolute;
  right: -8px;
  bottom: -14px;
  width: 12px;
  height: 22px;
  border-radius: 4px 5px 16px 9px;
  background: #23505C;
  opacity: 0.10;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 530px) {
  .card::before, .testimonial-card::before, .card::after, .testimonial-card::after {
    display: none;
  }
}

/* ===================== GEOMETRIC STRUCTURED BUTTON/ICON ANIMATIONS ===================== */
button, .cta {
  transition: background 0.22s, color 0.20s, transform 0.16s, box-shadow 0.20s;
}

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