/* =====================================================
   CSS RESET & NORMALIZATION FOR CONSISTENT BASELINE
   ===================================================== */
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;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAFA;
  color: #274156;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}
input[type="text"], input[type="date"] {
  border: 1px solid #e2e2e2;
  background: #fff;
  border-radius: 7px;
  padding: 10px 14px;
  transition: border .2s;
  font-size: 1rem;
}
input[type="text"]:focus, input[type="date"]:focus {
  border-color: #FDB813;
  background: #fffbe8;
}

/* FONTS: MONTSERRAT FOR HEADINGS, ROBOTO FOR BODY  */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #274156;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.17;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }
p, ul, ol, li { font-size: 1rem; color: #33475b; }
strong, b { font-weight: 700; }
blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #274156;
  border-left: 3px solid #FDB813;
  margin-left: 0;
  padding-left: 18px;
  background: #FFFBE8;
  margin-bottom: 10px;
}

/* SPACING & GENERAL CONTAINER*/
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(39,65,86,0.05);
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo-wrapper {
  display: flex;
  align-items: center;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  min-height: 70px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #274156;
  opacity: 0.98;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F5F6F9;
  color: #FDB813;
}
.main-nav .cta-primary {
  margin-left: 20px;
  background: #FDB813;
  color: #fff;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(39,65,86,0.06);
  transition: background 0.22s, color 0.22s, box-shadow .2s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #eaa203;
  color: #fff;
  box-shadow: 0 4px 15px 0 rgba(253,184,19,0.12);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #274156;
  border: none;
  cursor: pointer;
  margin-left: 20px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f6f7fa;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  z-index: 101;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform .38s cubic-bezier(0.55,0,0.1,1), opacity .23s;
  box-shadow: 0 12px 32px 0 rgba(39,65,86,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  align-self: flex-end;
  background: none;
  border: none;
  color: #274156;
  margin: 18px 24px 0 0;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f6f7fa;
}
.mobile-nav {
  margin: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #274156;
  border-radius: 10px;
  padding: 14px 10px;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFFBE8;
  color: #FDB813;
}

/* HERO SECTIONS */
.hero, .thank-you, .about, .policy {
  margin-bottom: 60px;
  padding: 60px 0 40px 0;
  background: #fff;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 2px 16px 0 rgba(39,65,86,0.05);
}
.hero .content-wrapper,
.about .content-wrapper,
.policy .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: #274156;
  font-size: 2.7rem;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero p {
  color: #33475b;
  font-size: 1.15rem;
  margin-bottom: 20px;
}

/* CTA BUTTONS */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 28px;
  text-align: center;
  letter-spacing: 0.05em;
  transition: background .21s, color .21s, box-shadow .21s, transform .13s;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 2px 10px 0 rgba(39,65,86,0.04);
  border: none;
}
.cta-primary {
  background: #FDB813;
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: #eaa203;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 22px 0 rgba(253,184,19,.13);
}
.cta-secondary {
  background: transparent;
  color: #274156;
  border: 1.5px solid #274156;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #274156;
  color: #fff;
}

/* FEATURES FLEX GRID AND CARDS */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: center;
}
.feature {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(39,65,86,0.04);
  padding: 28px 22px 20px 22px;
  min-width: 230px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .19s, transform .13s;
}
.feature:hover {
  box-shadow: 0 9px 36px rgba(253,184,19,0.11);
  transform: translateY(-3px) scale(1.02);
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

/* EVENT & CONTENT CARDS */
.card-container, .event-grid, .news-feed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.card, .event-card, .news-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(39,65,86,0.05);
  margin-bottom: 20px;
  padding: 20px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow .20s, transform .14s;
}
.card:hover, .event-card:hover, .news-item:hover {
  box-shadow: 0 8px 24px 0 rgba(253,184,19,.10);
  transform: translateY(-2px) scale(1.01);
}

/* Lists with just text (index, etc.) */
.events-preview ul, .news-preview ul, .places-preview ul,
.events-list ul, .places-directory ul, .faq ul, .guides ul,
.helpful-resources ul, .info-boxes ul, .team ul {
  list-style: disc inside none;
  margin: 10px 0 18px 0;
  padding-left: 18px;
  color: #33475b;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* FLEXBOX SECTION PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(39,65,86,0.06);
  padding: 22px 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe8;
  border-radius: 13px;
  box-shadow: 0 1.5px 10px 0 rgba(39,65,86,0.04);
  flex: 1 1 260px;
  margin-bottom: 20px;
  min-width: 230px;
}
.testimonial-card blockquote {
  border-left: 3px solid #FDB813;
  background: transparent;
  margin-bottom: 0;
  padding-left: 15px;
  color: #274156;
}
.testimonial-card p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #274156;
  margin-top: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPACING FOR PREVIEWS, CTA, POLICY */
.events-preview, .news-preview, .places-preview, .cta, .policy {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(39,65,86,0.03);
}

.cta .content-wrapper {
  align-items: center;
  gap: 16px;
  text-align: center;
}

/* DIRECTORY, FILTERS, SEARCH */
.filter-search, .filters, .categories-filter {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 12px 0 0 0;
}
.categories-filter a {
  color: #274156;
  background: #f6f7fa;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.97rem;
  margin-right: 6px;
  transition: background .16s, color .16s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: #FDB813;
  color: #fff;
}
.filters ul {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.97rem;
}
.filters input[type="date"] {
  min-width: 160px;
}

/* INFO SECTIONS, FAQ, GUIDES, RESOURCES */
.info-boxes, .faq, .guides, .helpful-resources {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(39,65,86,0.04);
  padding: 18px 20px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq ul, .guides ul, .helpful-resources ul {
  gap: 7px;
}
.faq h3, .guides h3, .helpful-resources h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: #274156;
}

.quick-links {
  margin: 20px 0 0 0;
}

/* TEAM-STYLING (about) */
.team ul {
  gap: 8px;
}
.team li strong {
  color: #274156;
  font-weight: bold;
}

/* CONTACT SECTION */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f6f7fa;
  border-radius: 9px;
  padding: 14px 16px;
  font-size: 0.98rem;
}

/* FOOTER STYLES */
footer {
  background: #fff;
  border-top: 1px solid #ededed;
  padding: 0;
}
footer .container {
  padding: 0 20px 28px 20px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 26px;
}
.footer-logo {
  flex: 0 0 110px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #274156;
  font-size: 1rem;
  padding: 4px 0;
  border-radius: 6px;
  transition: background .14s, color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FDB813;
  background: #f7f7f7;
}
.footer-contact, .footer-legal, .footer-newsletter, .footer-social {
  font-size: 0.97rem;
  color: #33475b;
}
.footer-contact {
  max-width: 230px;
}
.footer-legal {
  color: #a1a7b3;
  font-size: 0.96rem;
  margin-top: 14px;
}
.footer-legal a {
  color: #a1a7b3;
  text-decoration: underline;
  margin: 0 5px;
  transition: color .14s;
}
.footer-legal a:hover, .footer-legal a:focus {
  color: #FDB813;
}
.footer-newsletter h3 {
  font-size: 1.1rem;
  margin-bottom: 7px;
  color: #274156;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border-radius: 6px;
  padding: 7px;
  transition: background .13s;
}
.footer-social a:hover {
  background: #FDB813;
}
.footer-social img {
  width: 24px;
  height: 24px;
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #274156;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 20px;
  z-index: 300;
  font-size: 1rem;
  box-shadow: 0 -2px 18px 0 rgba(39,65,86,0.11);
  animation: cookies-appear .6s cubic-bezier(.52,.04,.42,1);
}
@keyframes cookies-appear {
  from { transform: translateY(85px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 7px;
  padding: 8px 20px;
  font-size: 1rem;
  cursor: pointer;
  background: #fff;
  color: #274156;
  transition: background .18s, color .18s, box-shadow .13s;
  box-shadow: 0 2px 7px rgba(253,184,19,0.08);
}
.cookie-banner .accept {
  background: #FDB813;
  color: #fff;
  font-weight: 600;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #ffcc38;
}
.cookie-banner .reject {
  background: #fff;
  color: #274156;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #f6f7fa;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #FDB813;
  border: 1.5px solid #FDB813;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #ffefc8;
}

.cookie-modal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(39,65,86,0.32);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .26s;
}
@keyframes fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  color: #274156;
  border-radius: 18px;
  max-width: 420px;
  width: 95vw;
  box-shadow: 0 14px 40px 0 rgba(39,65,86,0.19);
  padding: 32px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: dialogueZoom .31s cubic-bezier(.62,1.52,.29,.99);
}
@keyframes dialogueZoom {
  from {transform: scale(.82); opacity: 0;} to {transform: scale(1); opacity: 1;}
}
.cookie-modal h2 {
  color: #274156;
  font-size: 1.35rem;
  margin-bottom: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  background: #f6f7fa;
  border-radius: 7px;
  padding: 10px 10px;
  min-height: 38px;
  justify-content: space-between;
}
.cookie-category .toggle {
  width: 42px;
  height: 22px;
  border-radius: 15px;
  background: #e9eaec;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .14s;
}
.cookie-category .toggle[data-enabled="true"] {
  background: #FDB813;
}
.cookie-category .slider {
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: left .19s;
}
.cookie-category .toggle[data-enabled="true"] .slider {
  left: 22px;
  background: #fffbe8;
  box-shadow: 0 2px 7px rgba(253,184,19,0.13);
}
.cookie-modal .cookie-modal-actions {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 8px 18px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: #FDB813;
  color: #fff;
  transition: background .16s;
}
.cookie-modal button:nth-child(2) {
  background: #fff;
  color: #274156;
  border: 1.5px solid #FDB813;
}
.cookie-modal button:nth-child(2):hover {
  background: #fffbe8;
}


/* =============================
   RESPONSIVENESS
   ============================= */
@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
  }
  header .container {
    padding: 10px 12px;
  }
  footer .container {
    padding: 0 12px 28px 12px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .event-grid, .news-feed, .footer-main {
    flex-direction: column;
    align-items: stretch !important;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-main {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .hero h1, .about h1, .policy h1, .thank-you h1 {
    font-size: 1.55rem;
  }
  .hero, .thank-you, .about, .policy, .events-preview, .news-preview, .places-preview, .cta, .services, .info-boxes {
    padding: 22px 0 10px 0;
    margin-bottom: 36px;
    border-radius: 0;
  }
  .features, .feature-grid, .card-container, .event-grid, .news-feed, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card, .feature, .card, .event-card, .news-item {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .cookie-modal {
    max-width: 97vw;
    padding: 22px 8px 18px 8px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.1rem; }
  .container {
    padding: 0 8px;
  }
  .events-preview, .news-preview, .places-preview, .cta {
    padding: 16px 3px;
  }
  .footer-main { gap: 9px; }
  .mobile-nav {
    padding: 0 10px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 18px 10px;
  }
}

/* =============================
   ACCESSIBILITY & FOCUS STATES
   ============================= */
a:focus, button:focus {
  outline: 2px solid #FDB813;
  outline-offset: 2px;
}
input:focus {
  border-color: #FDB813;
  background: #fffbe8;
  outline: none;
}

/* =============================
   UTILITIES (MARGIN/GAP)
   ============================= */
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.gap-20 { gap: 20px !important; }
.gap-32 { gap: 32px !important; }
.rounded-14 { border-radius: 14px; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* =============================
   PRINT
   ============================= */
@media print {
  header, nav, .mobile-menu-toggle, .cookie-banner, .cookie-modal-backdrop, footer {
    display: none !important;
  }
  section, main, .container {
    padding: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
  }
}

/* END OF CSS */
