/* ----------------------
  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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fafbfc;
  color: #161616;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

/*-------------------------
  COLOR PALETTE & CUSTOM PROPS
--------------------------*/
:root {
  --ff-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --ff-body: 'Roboto', Arial, Helvetica, sans-serif;
  --clr-bg: #fff;
  --clr-black: #161616;
  --clr-darkgray: #23272a;
  --clr-gray: #888;
  --clr-lightgray: #f4f4f6;
  --clr-primary: #1E4D72;
  --clr-secondary: #F2C94C;
  --clr-accent: #fff;
  --clr-card: #fff;
  --clr-card-dark: #23272a;
  --clr-cta: #1e4d72;
  --clr-cta-hover: #0e324f;
  --clr-shadow: rgba(30, 30, 34, 0.07);
  --clr-shadow-dark: rgba(16, 20, 24, 0.19);
  --transition: 0.24s cubic-bezier(.58,.01,.4,1);
  --radius: 18px;
  --radius-sm: 10px;
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap: 20px;
  --gap-lg: 28px;
  --gap-xl: 40px;
}

/*-------------------------
  TYPOGRAPHY HIERARCHY
--------------------------*/
h1, .h1 {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--clr-black);
  margin-bottom: 1rem;
}
h2, .h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 600;
  color: var(--clr-black);
  margin-bottom: 0.75em;
}
h3, .h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  line-height: 1.24;
  font-weight: 600;
  color: var(--clr-black);
  margin-bottom: .6em;
}
h4, .h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: .4em;
}
p, ul, ol, li, span, label, input, textarea {
  font-size: 1rem;
  font-family: var(--ff-body);
  color: var(--clr-black);
  font-weight: 400;
}
.subheadline {
  color: var(--clr-darkgray);
  font-size: 1.22rem;
  margin-bottom: 1.4em;
}
strong {
  font-weight: 700;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1em;
}
li {
  margin-bottom: .4em;
}

/*----------------------------
  GENERAL LAYOUT CONTAINERS
-----------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gap-sm);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--clr-bg);
  border-radius: var(--radius);
  box-shadow: 0 6px 28px var(--clr-shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--clr-card);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px var(--clr-shadow);
  padding: 28px 20px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 12px 32px var(--clr-shadow-dark);
  transform: translateY(-3px) scale(1.012);
}
.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;
  padding: 20px;
  background: #fafbfc;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px var(--clr-shadow);
  margin-bottom: 20px;
  max-width: 600px;
}
.testimonial-card p {
  color: var(--clr-black);
  font-size: 1.12rem;
  margin-bottom: 0.5em;
}

.testimonial-name {
  font-style: italic;
  font-weight: 600;
  color: var(--clr-primary);
  font-size: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*----------------------------
  NAVIGATION & HEADER
-----------------------------*/
header {
  background: var(--clr-bg);
  box-shadow: 0 3px 18px var(--clr-shadow);
  position: relative;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px var(--gap-sm);
  max-width: 1140px;
  margin: 0 auto;
}
.logo-link {
  margin-right: 28px;
  display: flex;
  align-items: center;
}
.main-nav a {
  font-family: var(--ff-display);
  font-weight: 500;
  letter-spacing: .02em;
  font-size: 1.06rem;
  padding: 5px 0;
  color: var(--clr-black);
  opacity: 0.86;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-bottom-color var(--transition);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--clr-primary);
  border-bottom: 2px solid var(--clr-secondary);
  opacity: 1;
}

/* Hamburger Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--clr-primary);
  cursor: pointer;
  margin-left: auto;
  z-index: 99;
  padding: 6px 16px 6px 6px;
  transition: color var(--transition), background var(--transition);
  border-radius: 50%;
}
.mobile-menu-toggle:focus {
  background: var(--clr-lightgray);
}

/*----------------------------
  MOBILE MENU OVERLAY
-----------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(22, 22, 22, 0.96);
  box-shadow: -1px 0 26px rgba(0,0,0,0.29);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.7,.2,.23,1);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #fff;
  margin: 24px 30px 12px 0;
  cursor: pointer;
  z-index: 2100;
  transition: color var(--transition), background var(--transition);
  border-radius: 50%;
  padding: 2px 11px 2px 2px;
}
.mobile-menu-close:focus {
  background: #23272a;
  color: var(--clr-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 24px 32px;
  margin-top: 18px;
  flex: 1;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.24rem;
  font-family: var(--ff-display);
  font-weight: 600;
  opacity: 0.94;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-bottom-color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--clr-secondary);
  border-bottom: 2px solid var(--clr-secondary);
}

/* Hide menu by default on desktop */
.mobile-menu {
  display: none;
}

/*----------------------------
  HERO CTA BUTTONS
-----------------------------*/
.cta.primary {
  background: var(--clr-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 15px 36px;
  font-family: var(--ff-display);
  font-size: 1.17rem;
  font-weight: 600;
  margin-top: 18px;
  box-shadow: 0 4px 14px var(--clr-shadow);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: .02em;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--clr-cta-hover);
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 10px 24px var(--clr-shadow-dark);
  outline: none;
}

/*----------------------------
  FEATURE GRID/ITEMS
-----------------------------*/
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.feature {
  flex: 1 1 230px;
  min-width: 200px;
  max-width: 320px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px var(--clr-shadow);
  padding: 23px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 1.18rem;
  margin-bottom: 0.4em;
  color: var(--clr-primary);
}
.feature:hover {
  box-shadow: 0 8px 24px var(--clr-shadow-dark);
  transform: translateY(-3px) scale(1.02);
}

/*----------------------
  QUICK IDEAS LIST
---------------------------*/
.quick-ideas-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
  margin-bottom: 18px;
}
.quick-ideas-list li {
  border-left: 4px solid var(--clr-primary);
  padding-left: 14px;
  color: var(--clr-darkgray);
}

/*----------------------
  FILTERS, MATERIAL LISTS, BADGES
---------------------------*/
.filters, .material-list, .weather-selector, .family-checklist, .hidden-gem-spots, .budgeting-tips, .clothing-advice, .safety-tips, .last-minute-plan-b {
  display: flex;
  flex-direction: column;
  background: #fafbfc;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 15px;
  gap: 7px;
  box-shadow: 0 2px 8px var(--clr-shadow);
  font-size: 1rem;
}
.filters span, .weather-selector span {
  color: var(--clr-black);
}
.weather-selector a {
  color: var(--clr-primary);
  font-weight: 500;
  margin-left: 3px;
  margin-right: 12px;
  border-bottom: 1.5px solid transparent;
  transition: border-bottom-color var(--transition);
}
.weather-selector a:hover, .weather-selector a:focus {
  border-bottom: 1.5px solid var(--clr-primary);
}

/*-----------------------
  ACTIVITY/BUDGET/FAQ LISTS
--------------------------*/
.activity-list, .budgeting-tips, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
  list-style: none inside;
}
.activity-list li, .budgeting-tips li {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 6px var(--clr-shadow);
  padding: 12px 18px;
  color: var(--clr-darkgray);
  font-size: 1rem;
  line-height: 1.62;
}
.faq-accordion .faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 7px var(--clr-shadow);
  margin-bottom: 17px;
  padding: 14px 20px;
}
.faq-accordion .faq-item h3 {
  color: var(--clr-primary);
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.faq-accordion .faq-item p {
  color: var(--clr-darkgray);
}

/*----------------------------
  WEATHER ALERT BOX
-----------------------------*/
.weather-alert-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--clr-secondary);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px var(--clr-shadow);
  padding: 13px 20px 13px 18px;
  margin-bottom: 24px;
}
.weather-alert-box img {
  width: 28px; height: 28px;
  flex: none;
}
.weather-alert-box strong {
  color: var(--clr-primary);
}

/*----------------------------
  CONTACT/TEAMS/INFO LISTS
-----------------------------*/
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 7px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 5px var(--clr-shadow);
  padding: 12px 18px;
  font-size: 1rem;
  color: var(--clr-black);
}
.contact-list img {
  width: 20px;
  height: 20px;
  flex: none;
  filter: grayscale(1) contrast(1.3);
}

/*----------------------
   TEXT BLOCKS/SECTION
---------------------------*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
  background: none;
  box-shadow: none;
  margin-bottom: 15px;
  font-size: 1.04rem;
}
.text-section h2, .text-section h3 {
  color: var(--clr-primary);
  margin-bottom: 0.3em;
}

/*----------------------
  CARDS, HIDDEN GEMS, CHECKLISTS
--------------------------*/
.hidden-gem-spots, .family-checklist {
  max-width: 400px;
  margin-bottom: 14px;
}

.hidden-gem-spots h3, .family-checklist h3 {
  font-size: 1.12rem;
  color: var(--clr-primary);
  margin-bottom: 7px;
}

.family-checklist ul, .hidden-gem-spots ul {
  list-style: disc inside;
  margin: 0;
  padding-left: 12px;
}

/*----------------------
  FOOTER
-------------------------*/
footer span {
color: white;}
footer {
  background: var(--clr-black);
  color: #fff;
  padding: 32px 0 17px 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  opacity: 0.88;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 400;
  transition: color var(--transition), opacity var(--transition);
  border-bottom: 1.5px solid transparent;
  padding: 2px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--clr-secondary);
  opacity: 1;
  border-bottom: 1.5px solid var(--clr-secondary);
}
.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 9px;
  align-items: center;
  margin-top: 11px;
  opacity: 0.67;
}
.footer-brand img {
  width: 26px;
  height: 26px;
}

/*----------------------
  COOKIE CONSENT BANNER
--------------------------*/
.cookie-consent-banner {
  position: fixed;
  left:0; right:0; bottom: 0;
  width: 100vw;
  z-index: 3000;
  box-shadow: 0 -2px 24px rgba(0,0,0,0.08);
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 22px 16px 22px 24px;
  border-top: 1px solid #eee;
  animation: slideUpCookie 0.33s ease 0s 1;
}
@keyframes slideUpCookie {
  0% { transform: translateY(100%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner p {
  color: var(--clr-black);
  font-size: 1rem;
  margin-right: 29px;
  max-width: 430px;
  font-family: var(--ff-body);
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  padding: 9px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.04rem;
  font-family: var(--ff-display);
  font-weight: 600;
  cursor: pointer;
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 1px 8px var(--clr-shadow);
  transition: background var(--transition), transform .24s;
}
.cookie-btn.accept {
  background: var(--clr-primary);
}
.cookie-btn.reject {
  background: #161616;
}
.cookie-btn.settings {
  background: var(--clr-secondary);
  color: var(--clr-black);
}
.cookie-btn:hover, .cookie-btn:focus {
  transform: translateY(-1px) scale(1.01);
  background: var(--clr-cta-hover);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ffe36a;
  color: var(--clr-black);
}

/* Cookie Modal Styles */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3100;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,22,22, 0.77);
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.24s ease;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 28px #1e1e22AA;
  max-width: 430px;
  width: 100%;
  padding: 36px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: scaleInCookie .23s cubic-bezier(.5,1.85,.68,1);
}
@keyframes scaleInCookie {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: var(--clr-primary);
  font-size: 1.38rem; margin-bottom: 10px;
}
.cookie-modal-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafbfc;
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  margin-bottom: 11px;
  font-size: 1.04rem;
}
.cookie-modal-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--clr-primary);
}
.cookie-switch {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-modal-close {
  position: absolute;
  top: 9px; right: 13px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--clr-gray);
  cursor: pointer;
  z-index: 3200;
  transition: color var(--transition);
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--clr-primary);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 13px;
  justify-content: flex-end;
}

/* CATEGORY: essential always enabled */
input[disabled], input[readonly] {
  opacity: 0.55;
  pointer-events: none;
}

/*----------------------
  HELPER & UTILITY
--------------------------*/
.mt-lg { margin-top: 40px; }
.mb-lg { margin-bottom: 40px; }
.mt-md { margin-top: 20px; }
.mb-md { margin-bottom: 20px; }
hr {
  border: none;
  border-bottom: 1.5px solid #e8e8ea;
  margin: 28px 0;
}

/*---------------------
  SPACING & FLEX GAPS
-----------------------*/
ul, ol {
  margin-bottom: 1.1em;
  gap: var(--gap-xs);
}

/*---------------------
  RESPONSIVE BREAKPOINTS
-----------------------*/
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
  .main-nav, .footer-nav {
    max-width: 97vw;
  }
}
@media (max-width:900px) {
  .main-nav, .footer-nav {
    gap: 11px;
    padding: 18px 8px;
  }
  .features-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 11px;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  .content-wrapper {
    gap: var(--gap-sm);
  }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .feature, .card { min-width: 90vw; max-width: 90vw; }
  .footer-brand {
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 4px;
    padding: 0 7px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 8px 14px 8px;
    gap: 17px;
  }
  .cookie-consent-banner p {
    margin-right: 0;
    max-width: 95vw;
    font-size: 0.98rem;
  }
  .cookie-consent-actions {
    gap: 12px;
  }
  .cookie-modal {
    max-width: 98vw;
    padding: 26px 8px 10px 8px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 97vw;
  }
  .feature {
    max-width: 97vw;
    min-width: 88vw;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 0.99rem;
  }
  h1 {
    font-size: 1.44rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .cta.primary {
    padding: 10px 16px;
    font-size: 1rem;
  }
  .footer-brand img { width: 20px; height: 20px; }
}

/*------------------------
  MICRO-INTERACTIONS & TRANSITIONS
-------------------------*/
a, button, .cta.primary, .feature, .card {
  transition: all var(--transition);
}
.cta.primary:active,
.cookie-btn:active {
  transform: scale(.97);
  box-shadow: 0 1px 3px #2222;
}

/*--------------
  PRINT/ACCESSIBILITY IMPROVEMENTS
---------------*/
@media print {
  .main-nav, .footer-nav, .mobile-menu-toggle, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay, .cta.primary {
    display: none !important;
  }
  body, .container {
    background: #fff !important;
    color: #000 !important;
  }
}

/*----------------------------
  MONOCHROME SOPHISTICATED EXTRAS
------------------------------*/
body, .section {
  background: #f4f4f6;
}
.feature {
  background: #fff;
  border: 1px solid #ededed;
}
.testimonial-card {
  background: #fff;
  border: 1.5px solid #ececec;
}
.card {
  background: #fff;
  border: 1.5px solid #ededed;
}
.section {
  background: #fafbfc;
}
hr {
  border-bottom:1.2px solid #ddd;
}

/* Ensure no grid, no absolute layouts, only flex layouts - all cards with min 20px spacing */
