/* 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #193052;
  background-color: #F4F6FA;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* TYPOGRAPHY SCALE & HEADINGS */
h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #193052;
  letter-spacing: 1px;
}
h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #193052;
  letter-spacing: 0.5px;
}
h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #193052;
}
h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #193052;
}

p, ul, ol, blockquote, cite {
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
  color: #173352;
}

ul, ol {
  margin-left: 1.5rem;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}

blockquote {
  border-left: 4px solid #193052;
  padding-left: 16px;
  color: #193052;
  background: #f0f3f9;
  font-style: italic;
  margin-bottom: 14px;
}
cite {
  font-size: 0.95rem;
  color: #5889b4;
}

.subheadline {
  font-size: 1.13rem;
  color: #444E60;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 20px;
}

/* GENERIC LAYOUTS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 24px rgba(25,48,82,0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  padding: 28px 22px;
  background: #f6f8fb;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(25,48,82,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 230px;
  flex: 1 1 260px;
  transition: box-shadow .22s, transform .22s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(25,48,82,0.13);
  transform: translateY(-2px) scale(1.015);
  z-index: 1;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  min-width: 260px;
  max-width: 360px;
  background: #f2f6fc;
  border: 1.5px solid #dae6f7;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(25,48,82,0.07);
  color: #193052;
  transition: box-shadow .17s, border-color .17s;
}
.testimonial-card:hover {
  border-color: #193052;
  box-shadow: 0 6px 18px rgba(25,48,82,0.13);
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #1a253b;
  margin-top: -6px;
  letter-spacing: 0.01em;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #f4f6fa;
  padding: 24px 20px;
  border-radius: 8px;
  box-shadow: 0 1px 7px rgba(25,48,82,.065);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 330px;
  transition: box-shadow .18s, background .18s;
}
.feature-grid > div:hover {
  background: #dde7f5;
  box-shadow: 0 2px 12px rgba(25,48,82,.12);
}
.feature-grid img {
  width: 36px;
  margin-bottom: 16px;
}

.event-filter {
  margin: 18px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-filter nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.event-filter a {
  color: #193052;
  text-decoration: underline;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 5px;
  transition: color .18s;
}
.event-filter a:hover {
  color: #E9C46A;
}

.event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 8px;
  margin-bottom: 14px;
}
.event-cards > div {
  flex: 1 1 250px;
  min-width: 220px;
  background: #EBEFF6;
  border-radius: 9px;
  padding: 22px 18px;
  box-shadow: 0 1px 8px rgba(25,48,82,0.07);
  transition: background .18s, box-shadow .18s;
  position: relative;
}
.event-cards > div:hover {
  background: #e0e7f3;
  box-shadow: 0 3px 16px rgba(25,48,82,0.15);
}

.review-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 16px;
}
.review-list > div {
  background: #f6f8fb;
  border-radius: 9px;
  padding: 22px 18px;
  flex: 1 1 250px;
  min-width: 220px;
  box-shadow: 0 0.5px 5px rgba(25,48,82,0.05);
}
.review-list img {
  width: 20px;
  display: inline-block;
  margin-right: 2px;
}

.text-section {
  margin-bottom: 24px;
}

.holiday-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #f2f6fc;
  padding: 18px 14px;
  border-radius: 8px;
}

/**** BUTTONS & CTA ****/
.cta, .primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #193052;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 28px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(25,48,82,0.10);
  transition: background .19s, box-shadow .21s, transform .17s;
}
.cta.primary {
  background: #E9C46A;
  color: #193052;
  font-weight: 700;
}
.cta:hover, .cta.primary:hover, .cta:focus {
  background: #1e3864;
  color: #fff;
  box-shadow: 0 6px 20px rgba(25,48,82,0.21);
  transform: translateY(-2px) scale(1.04);
}
.cta.primary:hover {
  background: #d4b05b;
  color: #fff;
}

button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  background: #193052;
  color: #fff;
  padding: 11px 28px;
  cursor: pointer;
  transition: background .17s, box-shadow .2s, color .13s, outline .12s;
  outline: none;
}
button:focus, button:hover {
  background: #1e3864;
  color: #fff;
}

/***** NAVIGATION *****/
header {
  background: #193052;
  color: #fff;
  box-shadow: 0 3px 20px rgba(25,48,82,.06);
  position: relative;
  z-index: 30;
  padding: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 18px;
  justify-content: flex-start;
}
.main-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 5px;
  transition: background .15s, color .14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E9C46A;
  color: #193052;
}
.main-nav img {
  height: 38px;
  margin-right: 14px;
}

/***** BURGER MENU - MOBILE *****/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  background: #E9C46A;
  border: none;
  color: #193052;
  font-size: 2.2rem;
  padding: 5px 16px;
  z-index: 1051;
  border-radius: 8px;
  transition: background .13s, color .13s, box-shadow .15s;
  box-shadow: 0 3px 16px rgba(25,48,82,0.13);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #d1b365;
  color: #173352;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(25,48,82, 0.95);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity .27s, transform .29s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  color: #E9C46A;
  background: none;
  border: none;
  font-size: 2.2rem;
  padding: 8px 18px 8px 8px;
  margin: 24px 18px 0 0;
  cursor: pointer;
  transition: background .13s, color .13s;
  border-radius: 5px;
  align-self: flex-end;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: #d5b364;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 60px 20px 40px 30px;
  width: 80vw;
  max-width: 340px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.36rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 0 10px 6px;
  border-radius: 6px;
  transition: background .15s, color .14s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E9C46A;
  color: #193052;
}

/***** FOOTER *****/
footer {
  background: #193052;
  color: #fff;
  padding: 28px 0 0 0;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  box-shadow: 0 -1px 18px rgba(25,48,82,0.07);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding: 0 18px 18px 18px;
}
footer img {
  height: 38px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 0;
}
footer nav a {
  color: #E9C46A;
  font-size: 1.09rem;
  text-decoration: none;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  transition: color .14s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: underline;
}
footer p {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #e4e8f1;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1300;
  background: #f2f6fc;
  border-top: 2px solid #E9C46A;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  box-shadow: 0 -1px 24px rgba(25,48,82,0.10);
  padding: 20px 40px;
  font-size: 1rem;
  color: #193052;
  transition: transform .38s cubic-bezier(0.61,0.01,0.37,1.06), opacity .23s;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-button, .cookie-settings-button {
  padding: 10px 22px;
  border-radius: 20px;
  border: none;
  background: #193052;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin: 0 4px;
  transition: background .17s, color .13s, box-shadow .18s;
  box-shadow: 0 2px 8px rgba(25,48,82,0.07);
}
.cookie-settings-button {
  background: #E9C46A;
  color: #193052;
}
.cookie-button:focus, .cookie-button:hover,
.cookie-settings-button:focus, .cookie-settings-button:hover {
  background: #1e3864;
  color: #fff;
}
.cookie-settings-button:focus, .cookie-settings-button:hover {
  background: #e5b961;
  color: #193052;
}

/* Cookie Consent Modal */
.cookie-consent-modal-overlay {
  position: fixed;
  z-index: 1400;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(25,48,82,0.59);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .33s;
}
.cookie-consent-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent-modal {
  background: #fff;
  color: #193052;
  border-radius: 18px;
  padding: 36px 32px 28px 32px;
  max-width: 430px;
  width: 94vw;
  box-shadow: 0 6px 36px rgba(25,48,82,0.14);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-consent-modal h2 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #193052;
  cursor: pointer;
}
.cookie-toggle {
  width: 36px; height: 20px;
  background: #E9C46A;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: background .17s;
  margin-left: 5px;
}
.cookie-toggle input {
  margin: 0;
  width: 0; height: 0;
  opacity: 0;
}
.cookie-toggle span {
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1px; left: 1px;
  transition: left .18s;
}
.cookie-toggle input:checked + span {
  left: 17px;
}
.cookie-consent-modal .cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-consent-modal .modal-close {
  position: absolute;
  top: 14px; right: 17px;
  background: none;
  font-size: 2rem;
  border: none;
  color: #193052;
  cursor: pointer;
  transition: color .15s, background .13s;
  border-radius: 5px;
  padding: 3px 8px;
}
.cookie-consent-modal .modal-close:focus,
.cookie-consent-modal .modal-close:hover {
  color: #fff;
  background: #E9C46A;
}

/***** MISC + UTILITY *****/
a {
  transition: color .14s;
}
a:focus, a:hover {
  color: #E9C46A;
}

/***** RESPONSIVE DESIGN - MOBILE FIRST *****/
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 920px) {
  .feature-grid, .testimonial-list, .event-cards, .card-container, .review-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.22rem;
    margin-bottom: 10px;
  }
  .container {
    padding: 0 7px;
  }
  .section {
    padding: 24px 7px;
    margin-bottom: 34px;
    gap: 10px;
  }
  .content-wrapper{
    gap: 16px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 0 7px 16px 7px;
  }
  .feature-grid, .testimonial-list, .event-cards, .card-container, .review-list {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
  .holiday-features {
    padding: 13px 5px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 12px;
    gap: 18px;
    font-size: 0.99rem;
  }
  .cookie-consent-modal {
    padding: 19px 8px 14px 8px;
    max-width: 98vw;
  }
}

/* Small screen accessibility for mobile-nav touch */
@media (pointer: coarse) {
  .mobile-nav a {
    padding: 13px 0 13px 7px;
    font-size: 1.19rem;
  }
}

/***** FORMATTING FOR CARDS, SECTIONS, LISTS *****/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** ACCESSIBILITY *****/
:focus {
  outline: 2px solid #E9C46A !important;
  outline-offset: 2px;
}

/***** Z-INDEX STRUCTURE *****/
header { z-index: 20; }
.mobile-menu { z-index: 1100; }
.cookie-consent-banner { z-index: 1300; }
.cookie-consent-modal-overlay { z-index: 1400; }

/***** LOADING & SUBTLE ANIMATIONS *****/
.section, .testimonial-card, .card, .feature-grid > div, .event-cards > div, .review-list > div {
  animation: fadeInUp 0.7s ease 0s 1;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/***** PRINT FRIENDLINESS *****/
@media print {
  header, .mobile-menu, .cookie-consent-banner, .cookie-consent-modal-overlay, footer, nav {
    display: none !important;
  }
  body { background: #fff; color: #000; }
}

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