/* ========================================================
   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,
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;
}
/* Remove list styles on ul, ol elements */
ul, ol {
  list-style: none;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #FAF9F6;
  color: #2B2B2B;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* =======================================================
   FONT IMPORTS & FONT FALLBACKS
   ======================================================= */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&family=Open+Sans:wght@400;700&display=swap');

:root {
  --brand-primary: #255E2C;
  --brand-secondary: #5196BE;
  --brand-accent: #F6E9AD;
  --brand-bg: #FAF9F6;
  --brand-card: #FFFFFF;
  --brand-border: #E5E0CF;
  --brand-shadow: rgba(66, 58, 31, 0.06);
  --brand-text: #2B2B2B;
  --brand-subtle: #F6F3ED;
  --brand-highlight: #F9F1C6;
  --brand-link: #255E2C;
  --radius-card: 14px;
  --radius-btn: 20px;
  --shadow-card: 0 2px 16px var(--brand-shadow);
  --font-display: 'Quicksand', 'Georgia', serif;
  --font-body: 'Open Sans', 'Georgia', serif;
}

/* =======================================================
   LAYOUT CONTAINERS & FLEXBOX STYLES
   ======================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 860px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 260px;
}

.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-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #FFF;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  flex: 1 1 260px;
  border: 1px solid var(--brand-border);
  transition: box-shadow 0.23s cubic-bezier(.17,.67,.5,1);
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(81, 150, 190, 0.12);
  border-color: var(--brand-secondary);
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--brand-secondary);
  font-weight: 700;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 -8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--brand-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  gap: 15px;
  margin: 8px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, border-color 0.2s;
  border: 1px solid var(--brand-border);
}
.feature-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 7px;
}
.feature-item h3 {
  margin: 0 0 4px 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--brand-primary);
}
.feature-item:hover {
  box-shadow: 0 8px 28px rgba(37,94,44,0.09);
  border-color: var(--brand-primary);
}

/* Generic List Styles */
.service-steps, .step-list {
  margin-bottom: 18px;
  padding-left: 18px;
}
.service-steps li, .step-list li {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 8px;
}
.checklist {
  margin-bottom: 18px;
  padding-left: 18px;
}
.checklist li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 22px;
  font-size: 16px;
  color: var(--brand-primary);
}
.checklist li::before {
  content: '✔';
  color: var(--brand-secondary);
  position: absolute;
  left: 0;
}

.top-activity-list, .clothing-tips {
  margin-bottom: 18px;
  padding-left: 18px;
}
.top-activity-list li, .clothing-tips li, .quick-tips li {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--brand-text);
}
.quick-tips {
  margin-top: 24px;
  margin-bottom: 0;
  padding-left: 18px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 16px 0;
  padding: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--brand-subtle);
  border-radius: var(--radius-card);
  font-size: 17px;
  border: 1px solid var(--brand-border);
}
.feature-list img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-right: 8px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.tag {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-radius: 24px;
  padding: 5px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(165, 140, 34, 0.06);
}

.advice-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0;
}
.advice-card {
  flex: 1 1 220px;
  background: var(--brand-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 16px 18px;
  min-width: 200px;
  border: 1px solid var(--brand-border);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.advice-card h3 {
  color: var(--brand-primary);
  font-size: 18px;
  font-family: var(--font-display);
  margin-bottom: 4px;
}
.advice-card:hover {
  box-shadow: 0 8px 24px rgba(81, 150, 190, 0.11);
  border-color: var(--brand-secondary);
}

.last-minute-tips {
  background: var(--brand-accent);
  border-radius: var(--radius-card);
  padding: 16px;
  margin: 24px 0 0 0;
  font-size: 16px;
  color: var(--brand-primary);
  box-shadow: 0 2px 12px rgba(246,233,173,0.07);
}

.map-embed {
  background: var(--brand-subtle);
  border-radius: var(--radius-card);
  padding: 18px;
  margin-bottom: 20px;
}

/* =======================================================
   HEADER, NAVIGATION & MOBILE MENU
   ======================================================= */
header {
  width: 100%;
  background: #FFF;
  border-bottom: 1px solid var(--brand-border);
  box-shadow: 0 2px 8px rgba(81, 150, 190, 0.04);
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.logo-link img {
  height: 45px;
  width: auto;
  margin-right: 18px;
}
nav.main-nav {
  display: flex;
  gap: 18px;
}
nav.main-nav a {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 700;
  padding: 7px 0;
  position: relative;
  transition: color 0.18s;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  color: var(--brand-secondary);
}
/* CTA Button in Header */
.cta-button.primary {
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  border: none;
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  margin-left: 24px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(37,94,44,0.09);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.21s;
  text-decoration: none;
  display: inline-block;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: var(--brand-secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px rgba(37,94,44,0.13);
}

/* Burger menu (mobile) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--brand-primary);
  cursor: pointer;
  z-index: 98;
  margin-left: 14px;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-highlight);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,249,246, 0.97);
  z-index: 108;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.64,.09,.35,1.34);
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--brand-secondary);
  cursor: pointer;
  z-index: 111;
  padding: 5px 8px;
  border-radius: 7px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 70px 30px 0 30px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid var(--brand-border);
  width: 100%;
  transition: color 0.17s;
  min-width: 180px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--brand-secondary);
}

/* Show/hide menu based on screen size */
@media (max-width: 1023px) {
  nav.main-nav, .cta-button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu.open {
      display: none !important;
  }
}

/* =======================================================
   TYPOGRAPHY
   ======================================================= */
h1 {
  font-family: var(--font-display);
  font-size: 2.7rem;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand-secondary);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-secondary);
  font-weight: 700;
}
p, li {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--brand-text);
}
strong {
  font-weight: 700;
  color: var(--brand-primary);
}
.tagline {
  color: var(--brand-secondary);
  font-size: 1.18rem;
  margin-bottom: 18px;
  font-family: var(--font-body);
}
a {
  color: var(--brand-link);
  text-decoration: underline;
  transition: color 0.17s;
}
a:hover, a:focus {
  color: var(--brand-secondary);
  text-decoration: underline;
}

/* Ensure high contrast text in testimonials/cards */
.testimonial-card p, .testimonial-card .testimonial-author {
  color: #222;
}

/* =======================================================
   BUTTONS & MICRO-INTERACTIONS
   ======================================================= */
button, .button, .cta-button, input[type="submit"] {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: var(--radius-btn);
  padding: 10px 24px;
  background: var(--brand-primary);
  color: #fff;
  cursor: pointer;
  outline: none;
  transition: background 0.19s, transform 0.16s, color 0.16s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(37,94,44,0.09);
}
button.secondary, .button.secondary {
  background: var(--brand-secondary);
  color: #fff;
}
button.accent, .button.accent {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
button:disabled, .button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
button:hover, .button:hover, .cta-button:hover, .cta-button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: var(--brand-secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px rgba(81,150,190,0.11);
}

/* =======================================================
   FOOTER
   ======================================================= */
footer {
  width: 100%;
  background: var(--brand-bg);
  border-top: 1px solid var(--brand-border);
  padding: 36px 0 24px 0;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-bottom: 18px;
}
.footer-nav a {
  font-family: var(--font-body);
  color: var(--brand-primary);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-secondary);
}
.footer-contact {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--brand-text);
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 7px;
  height: 1.2em;
}

/* =======================================================
   COOKIE CONSENT BANNER & COOKIE MODAL
   ======================================================= */
.cookie-banner {
  position: fixed;
  z-index: 4000;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #FFF;
  border-top: 2px solid var(--brand-primary);
  box-shadow: 0 -2px 18px 2px rgba(37,94,44,0.13);
  padding: 24px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.42s cubic-bezier(.2,.93,.54,1.02), opacity 0.28s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: var(--brand-text);
  font-family: var(--font-body);
  font-size: 15px;
}
.cookie-banner .banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
/* cookie consent buttons */
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  min-width: 140px;
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 6px;
  outline: none;
  border: none;
  transition: background 0.17s, color 0.17s, transform 0.16s;
  box-shadow: 0 2px 7px rgba(81,150,190,.04);
}
.cookie-banner .accept-btn {
  background: var(--brand-primary);
  color: #FFF;
}
.cookie-banner .accept-btn:hover,
.cookie-banner .accept-btn:focus {
  background: var(--brand-secondary);
  color: #FFF;
}
.cookie-banner .reject-btn {
  background: #FFF;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
}
.cookie-banner .reject-btn:hover,
.cookie-banner .reject-btn:focus {
  background: var(--brand-accent);
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
}
.cookie-banner .cookie-settings-btn {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: var(--brand-highlight);
  color: var(--brand-secondary);
  border-color: var(--brand-secondary);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4100;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(24,38,46,0.35);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  max-width: 400px;
  width: 92vw;
  background: #FFF;
  border-radius: var(--radius-card);
  box-shadow: 0 7px 38px 2px rgba(29,65,52,0.13);
  padding: 32px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popFadeIn 0.22s cubic-bezier(.6,2,.8,1.5);
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 16px; top: 16px;
  background: none;
  border: none;
  color: var(--brand-secondary);
  font-size: 1.5rem;
  padding: 3px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: var(--brand-highlight);
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  padding-bottom: 7px;
}
.cookie-modal .category label {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--brand-primary);
  font-weight: 700;
  flex: 1;
}
.cookie-modal .category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--brand-primary);
  border-radius: 4px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-end;
}
@keyframes popFadeIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

/* =======================================================
   RESPONSIVENESS
   ======================================================= */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
  .content-wrapper { max-width: 96vw; }
}
@media (max-width: 992px) {
  .feature-grid, .advice-cards, .testimonial-list, .card-container {
    gap: 18px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .content-wrapper { max-width: 98vw; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    max-width: 100vw;
  }
  header .container {
    flex-direction: row;
    padding: 0 12px;
    min-height: 58px;
  }
  .content-wrapper {
    max-width: 99vw;
    padding: 0 2px;
  }

  .feature-grid, .advice-cards, .testimonial-list, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .footer-nav, .category-tags {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .footer-contact {
    font-size: 13px;
  }
  .section {
    margin-bottom: 38px;
    padding: 28px 6px;
  }
}
@media (max-width: 480px) {
  .container { padding: 0 4px; }
  .section { padding: 16px 0; }
  h1 { font-size: 1.47rem; }
  h2 { font-size: 1.10rem; }
  .cta-button.primary, button, .button {
    font-size: 14px;
    padding: 8px 14px;
  }
}

/* ========================
   A11Y Focus States
   ======================== */
a:focus, button:focus, .cta-button:focus {
  outline: 3px solid var(--brand-accent);
  outline-offset: 1px;
}

/* =========================
   Utility classes
   ========================= */
.mt-30 { margin-top:30px; }
.mb-30 { margin-bottom:30px; }
.flex-row { display:flex; flex-direction:row; gap:18px; }
.flex-col { display:flex; flex-direction:column; gap:14px; }
.align-center { align-items:center; }

/* =========================
   Miscellaneous
   ========================= */
::-webkit-scrollbar {
  width: 9px;
  background: #f4f4f4;
}
::-webkit-scrollbar-thumb {
  background-color: var(--brand-accent);
  border-radius: 6px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 7px 7px 2px 2px;
}

hr {
  border: 0;
  border-top: 1px solid var(--brand-border);
  margin: 32px 0;
}

/* Section colors enhancement for alt backgrounds */
.section.altbg {
  background: var(--brand-subtle);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 9px rgba(81,150,190,0.06);
}

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