/* CSS RESET & BASE --------------------------------------------------- */
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;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #233D4D;
  background: #F0F4EF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
a {
  color: #233D4D;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #F9B233;
  outline-offset: 2px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #233D4D;
  font-weight: 700;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; letter-spacing: -1px; }
h2 { font-size: 1.7rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
p, ul, ol { font-size: 1rem; line-height: 1.6; margin-bottom: 14px; }
strong { color: #233D4D; font-weight: 700; }
ul, ol { padding-left: 23px; }



/* FLEX & CONTAINER UTILITY CLASSES -------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  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: 14px;
  box-shadow: 0 1px 10px rgba(35,61,77,0.05);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 32px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .preview-card, .event-card, .testimonial-card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 12px rgba(35,61,77,0.07);
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  min-width: 240px;
  flex: 1 1 275px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .preview-card:hover, .event-card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 22px rgba(35,61,77,0.14);
  transform: translateY(-3px) scale(1.025);
}

.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: #f0f4ef;
  border-left: 4px solid #F9B233;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(35,61,77,0.07);
}
.testimonial-card p {
  font-size: 1.14rem;
  color: #233D4D;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card span {
  color: #233D4D;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO AREA ------------------------------------------------------------- */
.hero, .event-hero, .thank-you-section {
  background: #F0F4EF url('../assets/hero-bg.svg') center/cover no-repeat;
  min-height: 330px;
  display: flex;
  align-items: center;
  padding: 55px 0 45px 0;
  margin-bottom: 0;
}
.hero h1, .event-hero h1, .thank-you-section h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.1rem;
  color: #233D4D;
}
.hero .cta-button {
  margin-top: 22px;
}

/* HEADERS & NAVIGATION -------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(35,61,77,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 900;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
}
.logo img { height: 38px; width: auto; display: block; }

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-left: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  font-weight: 500;
  color: #233D4D;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  font-size: 1rem;
  transition: color 0.18s, border-color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F9B233;
  border-bottom: 2px solid #F9B233;
}
.cta-button {
  background: #F9B233;
  color: #233D4D;
  border: none;
  border-radius: 25px;
  padding: 13px 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(249,178,51,0.07);
  transition: background 0.13s, color 0.15s, box-shadow 0.17s, transform 0.12s;
  outline: none;
  margin-left: 18px;
  display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
  background: #233D4D;
  color: #fff;
  box-shadow: 0 4px 14px rgba(35,61,77,0.10);
  transform: translateY(-1px) scale(1.03);
}

/* MOBILE NAVIGATION -------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #233D4D;
  cursor: pointer;
  margin-left: 20px;
  z-index: 1002;
  transition: color 0.14s;
}
.mobile-menu-toggle:focus {
  color: #F9B233;
  outline: 2px solid #F9B233;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  box-shadow: 0 3px 18px rgba(35,61,77,.14);
  z-index: 1200;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.36s cubic-bezier(.44,.06,.55,1);
  padding: 38px 32px 32px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #233D4D;
  font-size: 2.25rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 28px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #233D4D;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 0;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.18s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #F9B233;
  background: #F0F4EF;
}
@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
    margin-left: 7px;
  }
  .cta-button {
    padding: 11px 27px;
    font-size: 1rem;
    margin-left: 9px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 820px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 821px) {
  .mobile-menu {
    display: none !important;
  }
}


/* FEATURE, CARDS & LISTINGS --------------------------------------------- */
.feature-grid, .service-list, .listing-grid, .event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.feature-grid > div, .service-list > div, .listing-grid > div, .event-list > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 12px rgba(35,61,77,0.06);
  padding: 22px 18px;
  flex: 1 1 250px;
  min-width: 240px;
  transition: box-shadow 0.15s, transform 0.13s;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.feature-grid > div:hover, .service-list > div:hover, .listing-grid > div:hover, .event-list > div:hover {
  box-shadow: 0 4px 18px rgba(35,61,77,0.12);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img, .feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
}
.service-list h2, .feature-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #233D4D;
}
.listing-grid .preview-card {
  min-width: 252px;
  min-height: 230px;
  margin-bottom: 0;
  border-left: 4px solid #F9B233;
}
.event-list .event-card {
  min-width: 252px;
  border-left: 4px solid #233D4D;
  background: #fff;
}
.event-card a {
  margin-top: 9px;
  align-self: flex-start;
  color: #F9B233;
  font-weight: 600;
  font-size: 1.07rem;
  border-bottom: 2px solid transparent;
}
.event-card a:hover {
  border-color: #F9B233;
}


/* SEARCH BAR / FORM ---------------------------------------------------- */
.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 18px;
}
.search-bar input, .search-bar select {
  border: 1.2px solid #C1C8C5;
  border-radius: 8px;
  background: #F0F4EF;
  font-size: 1.02rem;
  padding: 11px 15px;
  color: #233D4D;
  outline: none;
  transition: border 0.16s;
  min-width: 182px;
}
.search-bar input:focus, .search-bar select:focus {
  border-color: #F9B233;
  background: #fff;
}
.search-bar .cta-button {
  margin-left: 5px;
  min-width: 134px;
  align-self: flex-end;
}

@media (max-width: 600px) {
  .feature-grid, .service-list, .listing-grid, .event-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .service-list > div, .listing-grid > div, .event-list > div {
    min-width: 0;
  }
  .search-bar {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .search-bar .cta-button {
    width: 100%;
    margin-left: 0;
  }
}


/* CTA SECTION ---------------------------------------------------------- */
.cta-section {
  background: #F9B233;
  color: #233D4D;
  border-radius: 12px;
  box-shadow: 0 1px 12px rgba(249,178,51,0.07);
  padding: 50px 24px;
  margin-bottom: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section h2 {
  color: #233D4D;
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.cta-section .cta-button {
  background: #233D4D;
  color: #fff;
  margin-left: 0;
  margin-top: 10px;
}
.cta-section .cta-button:hover, .cta-section .cta-button:focus {
  background: #fff;
  color: #233D4D;
}
@media (max-width: 600px) {
  .cta-section {
    padding: 30px 8px;
  }
}


/* FOOTER --------------------------------------------------------------- */
footer {
  background: #233D4D;
  color: #F0F4EF;
  margin-top: 70px;
  padding: 35px 0 25px 0;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #F9B233;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 3px;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
}
.footer-contact p {
  color: #F0F4EF;
  font-size: 0.97rem;
  margin-bottom: 7px;
}
.footer-contact a {
  color: #F9B233;
  text-decoration: underline;
  font-weight: 600;
}
.footer-contact a:hover {
  color: #fff;
}
@media (max-width: 720px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}


/* CONTACT & FORM NOTICE ------------------------------------------------ */
.contact-form .form-notice {
  background: #fffbe6;
  color: #233D4D;
  padding: 14px 16px;
  border-left: 3px solid #F9B233;
  border-radius: 7px;
  margin-bottom: 17px;
  font-size: 1.04rem;
}
.contact-form ul {
  margin-bottom: 20px;
}


/* COOKIE BANNER -------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #233D4D;
  color: #F0F4EF;
  box-shadow: 0 -1px 16px rgba(35,61,77,0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 24px 22px 24px;
  z-index: 2500;
  font-size: 1rem;
  transition: transform 0.26s cubic-bezier(.44,.06,.55,1), opacity 0.2s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 23px;
  padding: 10px 28px;
  margin-left: 0;
  border: none;
  outline: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.12s;
  box-shadow: 0 2px 4px rgba(35,61,77,0.07);
}
.cookie-banner button.accept {
  background: #F9B233;
  color: #233D4D;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #fff;
}
.cookie-banner button.reject {
  background: #fff;
  color: #233D4D;
  border: 1.5px solid #C1C8C5;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #F9B233;
  color: #233D4D;
}
.cookie-banner button.settings {
  background: none;
  color: #F9B233;
  border: 1.5px solid #F9B233;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #F9B233;
  color: #233D4D;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 6px 15px 6px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 11px;
  }
}

/* COOKIE PREFERENCES MODAL ---------------------------------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(35,61,77,0.32);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.24s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 410px;
  box-shadow: 0 0 30px rgba(35,61,77,.15);
  padding: 32px 26px 28px 26px;
  margin-bottom: 0;
  animation: cookieSlideUp 0.41s cubic-bezier(.56,.08,.67,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-modal-header h2 {
  font-size: 1.25rem;
  margin-bottom: 0;
}
.cookie-modal-close {
  font-size: 1.8rem;
  color: #233D4D;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F0F4EF;
  border-radius: 9px;
  padding: 12px 15px;
}
.cookie-category label {
  color: #233D4D;
  font-size: 1.01rem;
  font-weight: 600;
}
.cookie-toggle {
  accent-color: #F9B233;
  width: 22px; height: 22px;
}
.cookie-category.essential label,
.cookie-category.essential input {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 19px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 10px 25px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #F9B233;
  color: #233D4D;
  transition: background 0.15s, color 0.1s;
  cursor: pointer;
}
.cookie-modal-actions button:last-child {
  background: #233D4D;
  color: #fff;
}
.cookie-modal-actions button:hover {
  opacity: 0.92;
}

@media (max-width: 600px) {
  .cookie-modal-content {
    border-radius: 16px 16px 0 0;
    padding: 26px 10px 20px 10px;
    max-width: 98vw;
  }
}

/* THANK YOU SECTION ---------------------------------------------------- */
.thank-you-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  background: #F0F4EF;
}
.thank-you-section h1 {
  color: #233D4D;
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.thank-you-section .cta-button {
  margin-top: 20px;
}

/* MEDIA QUERIES & RESPONSIVE LAYOUT ------------------------------------ */
@media (max-width: 900px) {
  .container {
    padding: 0 8px;
  }
  .footer-logo img, .logo img {
    height: 30px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .service-list, .listing-grid, .event-list {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .event-hero, .hero, .thank-you-section {
    min-height: 190px;
    padding: 30px 0;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.13rem; }
}
@media (max-width: 440px) {
  .footer-contact p {
    font-size: 0.90rem;
  }
}

/* SCROLLBAR BEAUTIFICATION --------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #F0F4EF;
}
::-webkit-scrollbar-thumb {
  background: #C1C8C5;
  border-radius: 20px;
}

/* ANIMATIONS FOR MICRO-INTERACTIONS ------------------------------------ */
.card, .preview-card, .event-card, .testimonial-card, .feature-grid > div, .service-list > div {
  transition: box-shadow 0.17s cubic-bezier(.6,.01,.54,1.02), transform 0.13s;
}
.cta-button, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.16s, color 0.12s, transform 0.13s;
}

/* END OF FILE */
