/* 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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background-color: #EAF2EF;
  color: #234159;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #234159;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F8C660;
  outline: none;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #234159;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #234159;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #234159;
}
h4, .h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
p {
  font-size: 1rem;
  color: #234159;
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
}
.text-section ul,
ul.events-list {
  margin-bottom: 16px;
  margin-top: 8px;
  padding-left: 20px;
}
.text-section ul li,
ul.events-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 0;
}

/* SPACING & LAYOUT PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 rgba(35,65,89,.07), 0 1.5px 8px 0 rgba(35,65,89,.07);
  border: 1px solid #ddd;
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(248,198,96,0.15), 0 3px 12px 0 rgba(35,65,89,0.08);
  border-color: #F8C660;
  z-index: 1;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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: 12px;
  background: #fff;
  color: #234159;
  border-left: 4px solid #F8C660;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(35,65,89,.08);
  padding: 24px 32px;
  margin-bottom: 20px;
  max-width: 420px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px 0 rgba(248,198,96,0.12), 0 1.5px 8px 0 rgba(35,65,89,0.07);
  border-left: 4px solid #234159;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #F8C66044;
  padding: 24px 18px;
  box-shadow: 0 2px 8px 0 rgba(35,65,89, .07);
  min-width: 220px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.feature-item img {
  width: 36px;
  height: 36px;
}
.feature-item:hover {
  box-shadow: 0 6px 28px 0 rgba(248,198,96,0.10), 0 1.5px 8px 0 rgba(35,65,89,0.08);
  border: 1.5px solid #F8C660;
  z-index: 1;
}
.feature-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.usp-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 0;
  margin: 16px 0;
}
.usp-row ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #234159;
  background: #fff;
  border-radius: 8px;
  padding: 7px 14px;
  box-shadow: 0 1px 5px 0 rgba(35,65,89,0.03);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}
.cta.primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #234159;
  color: #fff;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  border: none;
  padding: 13px 34px;
  border-radius: 40px;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(248,198,96,0.05);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  border: 2px solid #F8C660;
  position: relative;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #F8C660;
  color: #234159;
  box-shadow: 0 4px 24px 0 rgba(248,198,96,0.14);
  border: 2px solid #234159;
}
.cta {
  text-decoration: none;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(35,65,89,.05);
  z-index: 50;
  position: sticky;
  top: 0;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-bottom: 1px solid #EAF2EF;
  background: #fff;
}
.logo img {
  height: 40px;
  width: auto;
}
nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Merriweather', serif;
  color: #234159;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding: 3px 0;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F8C660;
}
.main-nav a.active {
  color: #F8C660;
  font-weight: 700;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #234159;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  margin-left: 15px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F8C660;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(35,65,89,0.98);
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.71,0,0.29,1);
  padding: 24px 0 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.31s cubic-bezier(0.44,0,0.2,1);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #F8C660;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 8px 32px 30px 0;
  cursor: pointer;
  padding: 12px 10px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(248,198,96,0.14);
  outline: none;
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 6px 0;
  margin-right: 14px;
  transition: color 0.16s;
  border-bottom: 2px solid transparent;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #F8C660;
  border-bottom: 2px solid #F8C660;
}

/* HERO SECTION */
.hero {
  background: #234159;
  color: #fff;
  min-height: 300px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #fff;
}
.hero p {
  color: #fff;
  font-size: 1.07rem;
}
.hero .cta.primary {
  margin-top: 10px;
  border: 2px solid #F8C660;
  background: #F8C660;
  color: #234159;
}
.hero .cta.primary:hover {
  background: #fff;
  color: #234159;
  border-color: #F8C660;
}

/* SECTION AND CONTENT VARIANTS */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
section:last-child {
  margin-bottom: 0;
}

.text-section {
  max-width: 740px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.feature-description {
  font-size: 1rem;
  color: #234159;
  opacity: 0.84;
  margin-top: 5px;
}

/* EVENTS LIST ALIGNMENT */
ul.events-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
  color: #234159;
  margin-bottom: 14px;
}
ul.events-list li {
  background: #fff;
  border-radius: 8px;
  padding: 11px 16px;
  box-shadow: 0 1px 6px 0 rgba(35,65,89,0.06);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #234159;
}

/* FOOTER */
footer {
  background: #234159;
  color: #fff;
  padding-top: 38px;
  margin-top: 60px;
  box-shadow: 0 -4px 12px 0 rgba(35,65,89,0.07);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 14px 20px;
  border-bottom: 1px solid #F8C66026;
}
.footer-top img {
  height: 36px;
  width: auto;
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  color: #F8C660;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 20px 14px 20px;
  gap: 28px;
}
.contact-overview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  font-size: 0.97rem;
}
.contact-overview div img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  filter: brightness(120%) sepia(0.8) hue-rotate(-38deg) saturate(180%) contrast(1.1);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #F8C660;
}
.social-links span {
  font-weight: 600;
  font-size: 1rem;
}
.social-links img {
  height: 28px;
  width: 28px;
  transition: transform 0.16s, filter 0.18s;
  cursor: pointer;
  filter: brightness(200%) sepia(0.3) hue-rotate(-17deg) saturate(2.2);
}
.social-links img:hover {
  transform: scale(1.15) translateY(-2px);
  filter: brightness(110%) sepia(1) hue-rotate(54deg) contrast(1.2);
}
.footer-bottom {
  border-top: 1px solid #F8C66026;
  text-align: center;
  padding: 15px 20px 25px 20px;
  font-size: 0.99rem;
  color: #F8C660;
}

/* COOKIES BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  border-top: 3px solid #F8C660;
  color: #234159;
  z-index: 3000;
  box-shadow: 0 0 18px 0 rgba(35,65,89,0.08);
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
  animation: bannerfadein 0.44s cubic-bezier(0.69,0,0.29,1);
  font-size: 1rem;
}
@keyframes bannerfadein {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 7px;
}
.cookie-banner button,
.cookie-banner .settings-btn {
  padding: 10px 22px;
  border-radius: 29px;
  border: 2px solid #F8C660;
  background: #234159;
  color: #fff;
  font-weight: 600;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border 0.14s;
}
.cookie-banner .accept-btn {
  background: #F8C660;
  color: #234159;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #234159;
  color: #fff;
}
.cookie-banner .reject-btn {
  border-color: #234159;
  background: transparent;
  color: #234159;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #F8C660;
  color: #234159;
  border-color: #F8C660;
}
.cookie-banner .settings-btn {
  background: #fff;
  color: #234159;
  border-color: #F8C660;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #F8C660;
  color: #234159;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(35,65,89,0.75);
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  max-width: 400px;
  width: 94vw;
  box-shadow: 0 6px 32px 0 rgba(35,65,89,0.23);
  padding: 32px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  animation: cookiein 0.31s cubic-bezier(0.71,0,0.29,1);
}
@keyframes cookiein {
  from { opacity: 0; transform: scale(0.95) translateY(18px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.3rem;
  color: #234159;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #234159;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #F8C660;
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-btnrow {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 10px 22px;
  border-radius: 29px;
  border: 2px solid #F8C660;
  background: #234159;
  color: #fff;
  font-weight: 600;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border 0.14s;
}
.cookie-modal button.save-btn {
  background: #F8C660;
  color: #234159;
}
.cookie-modal button.save-btn:hover {
  background: #234159;
  color: #fff;
}
.cookie-modal button.cancel-btn {
  background: #fff;
  color: #234159;
  border-color: #234159;
}
.cookie-modal button.cancel-btn:hover {
  background: #F8C660;
  color: #234159;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  color: #F8C660;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.16s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: #F8C66022;
  outline: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1000px) {
  .container { max-width: 94vw; }
  .footer-meta { flex-direction: column; gap: 22px; }
}
@media (max-width: 900px) {
  .footer-top { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-meta { flex-direction: column; gap: 19px; }
}
@media (max-width: 820px) {
  .feature-columns {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .usp-row ul { flex-direction: column; gap: 13px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .header-top {
    flex-direction: row;
    align-items: center;
    gap: 9px;
    padding: 10px 12px 10px 12px;
  }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: inline-block; }
  .footer-nav { flex-direction: column; gap: 7px; }
  .footer-meta, .social-links, .contact-overview { flex-direction: column; gap: 13px; }
  .container { max-width: 99vw; padding-left: 8px; padding-right: 8px; }
  .section, section { padding: 28px 0 28px 0; margin-bottom: 35px; }
  .hero { min-height: 170px; padding: 28px 0; margin-bottom: 32px; }
  .testimonial-slider { flex-direction: column; gap: 18px; }
  .testimonial-card { max-width: 99vw; padding: 18px 10px; }
  .card-container, .content-grid { gap: 13px; }
  .feature-columns { gap: 13px; }
  .cta.primary { padding: 12px 20px; font-size: 1rem; }
  .cta-row { gap: 10px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 15px; }
  ul.events-list li { font-size: 0.97rem; }
}
@media (max-width: 500px) {
  h1, .h1 { font-size: 1.6rem; }
  h2, .h2 { font-size: 1.3rem; }
  .testimonial-card, .card, .feature-item {
    padding-left: 10px; padding-right: 10px;
    font-size: 0.99rem;
  }
  .feature-item img { width: 30px; height: 30px; }
}

/* FINE BUTTON STATES */
button:focus-visible, a:focus-visible { outline: 2px solid #F8C660; outline-offset: 2px; }

/* MICRO-INTERACTIONS */
.cta-row .cta.primary {
  position: relative;
  overflow: hidden;
  transition: color 0.15s, background 0.15s;
}
.cta.primary::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: 0; right: 0; height: 4px;
  background: #F8C660;
  opacity: 0.52;
  transform: scaleX(0);
  transition: transform 0.28s cubic-bezier(0.39,0,0.73,1);
}
.cta.primary:hover::after {
  transform: scaleX(1);
}

/* SELECTION COLOR */
::selection { background: #F8C660; color: #234159; }

/* SCROLLBAR CUSTOMISATION (optional, webkit only) */
::-webkit-scrollbar { width: 10px; background: #EAF2EF; }
::-webkit-scrollbar-thumb { background: #c0bcaf; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #F8C660; }
