/* -----------------------------------------------
   CSS RESET & BASE (normalize + mobile-first)
----------------------------------------------- */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FFF;
  color: #232B33;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #174C61;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #F3B63E;
  outline-offset: 2px;
}
a:hover {
  color: #F3B63E;
}
ul, ol {
  list-style-position: outside;
  margin-left: 1.25em;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #174C61;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.18;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.22rem; }
h4, h5, h6 { font-size: 1rem; }
p, li, blockquote, span, label {
  color: #36414B;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
blockquote {
  background: #F5F6F8;
  border-left: 4px solid #F3B63E;
  padding: 18px 24px;
  font-style: italic;
  color: #174C61;
  margin-bottom: 24px;
  border-radius: 8px;
}
strong { color: #174C61; font-weight: 700; }

/* -----------------------------------------------
   LAYOUT & CONTAINER
----------------------------------------------- */
.container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
}

/* Ensure minimum vertical spacing for special sections */
.hero, .about-hero, .hero-overview, .blog-hero, .thankyou-section {
  background: #F5F6F8;
  padding-top: 64px;
  padding-bottom: 64px;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(23,76,97,0.05);
  margin-bottom: 60px;
}
.subheadline {
  color: #69707A;
  font-size: 1.18rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 18px;
}

/* -----------------------------------------------
   FLEX SPACING & CARD LAYOUTS
----------------------------------------------- */
.features-grid, .team-list, .card-grid, .blog-grid, .resources-blocks, .tickets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.card {
  background: #FFF;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(23,76,97,0.05);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 1 250px;
  position: relative;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(23,76,97,0.09);
}
.card:last-child {
  margin-bottom: 0;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #F5F6F8;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(23,76,97,0.04);
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 260px;
}
.testimonial-card .testimonial-author {
  color: #174C61;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-card .stars {
  display: flex;
  gap: 3px;
}

.blog-post {
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(23,76,97,0.04);
  padding: 24px 18px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 188px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: box-shadow 0.22s;
}
.blog-post:hover {
  box-shadow: 0 8px 28px 0 rgba(23,76,97,0.13);
}

.blog-category {
  display: inline-block;
  background: #F3B63E;
  color: #174C61;
  font-size: 0.89rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 16px;
  margin-top: 6px;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(23,76,97,0.04);
  padding: 24px 20px;
  min-width: 188px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
}
.team-member:hover {
  box-shadow: 0 4px 24px 0 rgba(23,76,97,0.10);
}

.resources-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.resource-section {
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 rgba(23,76,97,0.04);
  padding: 18px 16px;
  min-width: 160px;
  flex: 1 1 180px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s;
}
.resource-section h3 {
  margin-bottom: 8px;
}
.resource-section ul li span {
  margin-left: 8px;
  color: #69707A;
  font-size: 0.96rem;
}

.tickets-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tickets-grid li {
  background: #F5F6F8;
  border-radius: 7px;
  padding: 14px 20px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}
.tickets-grid span {
  color: #174C61;
  font-weight: 600;
}
.tickets-grid button {
  background: #F3B63E;
  border: none;
  color: #174C61;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 18px;
  border-radius: 8px;
  margin-left: 14px;
  opacity: 0.4;
  pointer-events: none;
}

/* -----------------------------------------------
   FLEXBOX LAYOUTS for Utility Classes
----------------------------------------------- */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* -----------------------------------------------
   BUTTONS & INTERACTIVES
----------------------------------------------- */
.cta-button, button, .blog-grid .blog-post a {
  background: #174C61;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  border: none;
  border-radius: 9px;
  padding: 14px 28px;
  margin-top: 10px;
  display: inline-block;
  box-shadow: 0 2px 8px 0 rgba(23,76,97,0.07);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.10s;
  text-align: center;
  letter-spacing: 0.01em;
}
.cta-button:hover, button:not(:disabled):hover {
  background: #F3B63E;
  color: #174C61;
  transform: translateY(-2px) scale(1.018);
  box-shadow: 0 10px 25px 0 rgba(243,182,62,0.11);
}
.cta-button:focus, button:focus {
  outline: 2px solid #F3B63E;
  outline-offset: 2px;
}
.cta-button:active {
  background: #174C61;
  color: #FFF;
}

button[disabled], .tickets-grid button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

/* -----------------------------------------------
   HEADER & NAVIGATION
----------------------------------------------- */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 2px 10px 0 rgba(23,76,97,0.04);
  position: sticky;
  top: 0;
  z-index: 103;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 10px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #174C61;
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 1.03rem;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover, header nav a:active {
  background: #F5F6F8;
  color: #F3B63E;
}
header .cta-button {
  margin-left: 20px;
}
header img {
  height: 38px;
}

/* Hamburger Button */
.mobile-menu-toggle {
  background: #F3B63E;
  border: none;
  color: #174C61;
  padding: 8px 18px 8px 13px;
  font-size: 1.55rem;
  border-radius: 8px;
  display: none;
  cursor: pointer;
  align-items: center;
  transition: background 0.18s, color 0.18s;
  z-index: 112;
}
.mobile-menu-toggle:hover {
  background: #174C61;
  color: #FFF;
}

/* -----------------------------------------------
   MOBILE MENU OVERLAY & NAVIGATION
----------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,76,97,0.98);
  color: #FFF;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 68px;
  width: 100vw;
  height: 100vh;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(.64,.09,.08,1), opacity 0.24s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 24px;
  background: transparent;
  border: none;
  color: #F3B63E;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 1210;
  padding: 0 7px;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: #FFF;
}
.mobile-nav {
  width: 90vw;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 36px;
}
.mobile-nav a {
  display: block;
  color: #FFF;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  padding: 15px 20px;
  border-radius: 9px;
  background: transparent;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #174C61;
  color: #F3B63E;
}

/* Hide desktop menu & show burger on mobile */
@media (max-width: 1000px) {
  header nav, header .cta-button {display: none;}
  .mobile-menu-toggle {display: flex;}
}
@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important;}
}

/* -----------------------------------------------
   FOOTER
----------------------------------------------- */
footer {
  background: #F5F6F8;
  color: #232B33;
  padding: 36px 0 15px 0;
  margin-top: 60px;
  border-top: 1px solid #E9EBEE;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-links a {
  color: #174C61;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  transition: color 0.17s;
}
.footer-links a:hover {
  color: #F3B63E;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-contact img {
  width: 44px; height: 44px;
  border-radius: 7px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1rem;
  color: #232B33;
  font-family: 'Open Sans', Arial, sans-serif;
}
.contact-info img {
  width: 14px; height: 14px;
  vertical-align: middle;
  margin-right: 4px;
}
.social-links {
  display: flex;
  gap: 15px;
  margin: 12px 0 0 0;
}
.social-links a img {
  width: 26px;
  height: 26px;
  opacity: 0.89;
  transition: opacity 0.16s, transform 0.14s;
}
.social-links a:hover img {
  opacity: 1;
  transform: translateY(-2px) scale(1.09);
}
footer small {
  margin-top: 12px;
  color: #69707A;
  font-size: 0.93rem;
}

/* -----------------------------------------------
   COOKIE CONSENT BANNER (fixed bottom)
----------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  z-index: 1400;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  background: #F5F6F8;
  color: #232B33;
  box-shadow: 0 -2px 11px 0 rgba(23,76,97,0.07);
  padding: 22px 14px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #E9EBEE;
  animation: cookieSlideIn 0.65s;
}
@keyframes cookieSlideIn {
  from {transform: translateY(100%);} to {transform: translateY(0);}
}
.cookie-consent-text {
  font-size: 1rem;
  color: #232B33;
  text-align: center;
  margin-bottom: 10px;
}
.cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}
.cookie-btn {
  background: #174C61;
  color: #FFF;
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  padding: 9px 22px;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(23,76,97,0.06);
  transition: background 0.19s, color 0.19s;
}
.cookie-btn:focus{
  outline: 2px solid #F3B63E;
}
.cookie-btn.accept {background: #174C61; color: #FFF;}
.cookie-btn.accept:hover {background: #F3B63E; color: #174C61;}
.cookie-btn.reject {background: #69707A; color: #FFF;}
.cookie-btn.reject:hover {background: #DE2C1C; color: #FFF;}
.cookie-btn.settings {background: #F3B63E; color: #174C61;}
.cookie-btn.settings:hover {background: #174C61; color: #F3B63E;}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; bottom: 0; left: 0; right: 0;
  background: rgba(23,76,97, 0.92);
  z-index: 1450;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.37s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FFF;
  border-radius: 13px;
  max-width: 390px;
  width: 95vw;
  padding: 33px 24px 22px 24px;
  box-shadow: 0 8px 38px 0 rgba(23,76,97,0.24);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal 0.6s;
}
@keyframes fadeInModal {
  from {transform: scale(0.96) translateY(30px); opacity: 0;} to {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #174C61;
  margin-bottom: 0;
}
.cookie-option-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1.09rem;
  color: #232B33;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #174C61;
  border-radius: 4px;
  margin-right: 6px;
}
.cookie-category input[disabled] {
  opacity: 0.55;
}
.cookie-modal-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  color: #174C61;
  font-size: 1.44rem;
  font-weight: 700;
  position: absolute;
  top: 9px;
  right: 17px;
  cursor: pointer;
  opacity: 0.9;
  transition: color 0.16s;
}
.cookie-modal-close:hover {
  color: #DE2C1C;
}

/* -----------------------------------------------
   TYPOGRAPHY SCALE & UTILITIES
----------------------------------------------- */
.font-display {font-family: 'Montserrat', Arial, sans-serif;}
.font-body {font-family: 'Open Sans', Arial, sans-serif;}
.text-center {text-align: center;}
.text-right {text-align: right;}

/* -----------------------------------------------
   MISC. AND COMPONENT CLASSES
----------------------------------------------- */
.event-list, .event-calendar ul, .faq ul, .brand-story ul, .contact-info ul, .resource-section ul {
  margin-bottom: 24px;
  padding-left: 15px;
  list-style-type: disc;
  color: #36414B;
}
.event-list li, .event-calendar ul li, .faq ul li, .brand-story ul li, .resource-section ul li {
  margin-bottom: 9px;
  font-size: 1.06rem;
  color: #36414B;
}

.quote-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.quote-carousel blockquote {
  min-width: 180px;
  flex: 1 1 210px;
}

/* -----------------------------------------------
   RESPONSIVE DESIGN (mobile-first)
----------------------------------------------- */
@media (max-width: 900px) {
  .features-grid, .team-list, .card-grid, .blog-grid, .resources-blocks, .testimonials {
    gap: 16px;
  }
  .card, .team-member, .blog-post, .resource-section, .testimonial-card {
    min-width: 85vw;
    flex: 1 1 100%;
  }
  .blog-grid, .card-grid, .features-grid {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.02rem; }
  .container {
    padding: 0 7px;
  }
  section, .section {
    padding: 28px 5px;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 520px) {
  .hero, .about-hero, .thankyou-section, .hero-overview, .blog-hero {
    border-radius: 5px;
    padding-top: 30px; padding-bottom: 30px;
  }
  .card, .team-member, .blog-post, .resource-section, .testimonial-card {
    padding: 14px 8px;
  }
}

/* -----------------------------------------------
   MINIMALIST DESIGN ACCENTS
----------------------------------------------- */
.features-grid .feature {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 1px 7px 0 rgba(23,76,97,0.05);
  padding: 22px 18px;
  min-width: 170px;
  flex: 1 1 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s;
}
.features-grid .feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
.features-grid .feature:hover {
  box-shadow: 0 7px 19px 0 rgba(23,76,97,0.10);
}

/* -----------------------------------------------
   FORM ELEMENTS (INPUTS, ETC.)
----------------------------------------------- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 7px;
  border: 1px solid #D5DDE2;
  background: #FFF;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 15px;
  width: 100%;
  transition: border 0.16s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #174C61;
  box-shadow: 0 1px 7px 0 rgba(23,76,97,0.12);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #174C61;
}

/* -----------------------------------------------
   MISC. ADJUSTMENTS
----------------------------------------------- */
::-webkit-scrollbar {width:10px; background:#F5F6F8;}
::-webkit-scrollbar-thumb { background: #E9EBEE; border-radius:7px;}

/* -----------------------------------------------
   HIDE ELEMENTS ACCESSIBLY
----------------------------------------------- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
