/* --- 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, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F7F7F7;
  color: #243357;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  overflow-x: hidden;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #243357;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, .main-nav a:hover, .footer-nav a:hover, .mobile-nav a:hover, .cta-btn:hover {
  color: #F8B195;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* --- TYPOGRAPHY --- */
h1 {
  font-size: 2.75rem; /* 44px */
  line-height: 1.15;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #243357;
}
h2 {
  font-size: 2rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 600;
  margin-bottom: 18px;
  color: #243357;
}
h3 {
  font-size: 1.25rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 600;
  color: #243357;
}
p, li {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #243357;
}
blockquote {
  font-family: 'Georgia', serif;
  font-style: italic;
  color: #3A3A3A;
  margin: 0 0 16px 0;
  border-left: 4px solid #F8B195;
  padding-left: 16px;
}

/* --- GENERAL LAYOUT CLASSES --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(36, 51, 87, 0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(36,51,87,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(36,51,87,0.12);
}
.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: #F7F7F7;
  border-left: 4px solid #F8B195;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(36, 51, 87, 0.05);
  padding: 20px 30px;
  margin-bottom: 20px;
  color: #243357;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #243357;
}
.testimonial-card span {
  font-size: 1rem;
  font-style: italic;
  color: #3A3A3A;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(36,51,87,0.06);
  padding: 22px 20px 18px 20px;
  flex: 1 1 230px;
  transition: box-shadow 0.2s;
}
.feature-item:hover {
  box-shadow: 0 4px 24px rgba(36,51,87,0.1);
  border-left: 4px solid #F8B195;
}
.feature-item img {
  max-width: 48px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(36, 51, 87, 0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
header img {
  height: 40px;
}
nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  color: #243357;
  letter-spacing: 0.02em;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #F8B195;
  transition: width .2s;
  margin-top: 3px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.cta-btn {
  background: #F8B195;
  color: #243357;
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  padding: 10px 32px;
  border: none;
  border-radius: 22px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(248, 177, 149, 0.10);
  cursor: pointer;
  margin-left: 32px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #243357;
  color: #fff;
  box-shadow: 0 4px 18px rgba(36,51,87,0.18);
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #243357;
  cursor: pointer;
  margin-left: 24px;
  z-index: 105;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F8B19522;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.48,.03,.52,.96);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 42px 26px 20px 26px;
  min-width: 220px;
  box-shadow: -4px 0 30px rgba(36,51,87,0.10);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #243357;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 16px;
  transition: background 0.18s;
  padding: 2px 10px;
  border-radius: 8px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F8B19522;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Georgia', serif;
  color: #243357;
  padding: 12px 2px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F8B195;
  color: #fff;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg, #F7F7F7 65%, #F8B195 130%);
  padding: 62px 0 44px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero .cta-btn {
  margin: 22px 0 0 0;
}

/* --- FEATURE GRID / CARDS --- */
.features {
  background: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 18px rgba(36,51,87,0.04);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
/* --- PREVIEWS AND LISTS --- */
.trends-preview ul,
.trends ul,
.services ul,
.values ul,
.legal ul,
.tips ul,
.inspiration ul,
.advices ul {
  margin-bottom: 16px;
  margin-top: 4px;
  list-style: disc outside;
  color: #243357;
  font-family: 'Open Sans', Arial, sans-serif;
}
.trends-preview a {
  color: #243357;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.16s;
}
.trends-preview a:hover {
  color: #F8B195;
}

/* --- ADVICE GRID --- */
.advice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.advice-item {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(36,51,87,0.06);
  padding: 22px 18px 18px 18px;
  min-width: 200px;
}
.advice-item h3 {
  margin-bottom: 10px;
}

/* --- TEAM AND CONTACT --- */
.team-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 4px;
}
.team-section li {
  margin-bottom: 10px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 10px;
  margin-bottom: 15px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-details img {
  width: 40px;
}
.map-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.05rem;
}
.hours .special-notes {
  background: #F8B19522;
  border-left: 4px solid #F8B195;
  padding: 14px 16px;
  border-radius: 8px;
  color: #243357;
  margin-top: 12px;
}

/* --- CTA SECTION --- */
.cta {
  background: #F8B19511;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 2px 22px rgba(248, 177, 149, 0.08);
}
.cta .content-wrapper {
  align-items: center;
}
.cta .cta-btn {
  margin-top: 16px;
}

/* --- FOOTER --- */
footer {
  background: #243357;
  color: #fff;
  padding: 48px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F8B195;
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition: color .18s;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-contact img {
  width: 16px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-legal {
  margin-top: 12px;
  font-size: 0.96rem;
  color: #F7F7F7;
  opacity: 0.74;
}

/* --- SECTIONS, VALIGN, GAPS, CARDS --- */
.text-section {
  background: #F7F7F7;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 20px;
  color: #243357;
  box-shadow: 0 1px 6px rgba(36,51,87,0.04);
}
.values {
  background: #fff;
  box-shadow: 0 2px 15px rgba(36,51,87,0.05);
  border-radius: 16px;
  margin-top: 32px;
}
.legal {
  background: #fff;
  border-radius: 16px;
  padding: 40px 20px;
  margin-bottom: 70px;
  box-shadow: 0 2px 12px rgba(36,51,87,0.07);
}

/* --- THANK YOU PAGE SECTION --- */
.thank-you {
  min-height: 370px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(36, 51, 87, 0.07);
  padding: 56px 20px 36px 20px;
  margin-bottom: 60px;
}
.thank-you ul {
  margin-top: 12px;
  margin-bottom: 12px;
}

/* --- EVENTS SECTION --- */
.events-overview ul {
  margin-bottom: 18px;
}
.events-overview li {
  margin-bottom: 14px;
  font-size: 1.09rem;
}
.join .cta-btn {
  margin-top: 15px;
}

/* --- MISC HELPER CLASSES --- */
.hide {
  display: none !important;
}

/* --- MICRO-ANIMATIONS --- */
.card, .feature-item, .testimonial-card, .advice-item {
  transition: box-shadow 0.2s, border-left 0.2s, transform 0.15s;
}
.card:hover, .feature-item:hover {
  transform: translateY(-3px) scale(1.01);
}
.cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.15s, color 0.18s, box-shadow 0.16s, filter 0.12s;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1020px){
  .container {
    max-width: 96vw;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 900px){
  .feature-grid, .advice-grid, .content-grid {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px){
  header .container {
    flex-direction: row;
    gap: 12px;
    padding: 0 10px;
  }
  nav.main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .feature-grid, .advice-grid, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 22px;
  }
  .contact-details {
    flex-direction: column;
    gap: 22px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .thank-you {
    padding: 38px 6px 20px 6px;
  }
  .section {
    padding: 22px 8px;
  }
  .cta {
    border-radius: 12px;
  }
}
@media (max-width: 520px){
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .container {
    padding: 0 8px;
  }
  .card, .feature-item, .advice-item {
    padding: 12px;
  }
}


/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 2px solid #F8B195;
  box-shadow: 0 -2px 16px rgba(36, 51, 87, 0.08);
  padding: 22px 14px;
  z-index: 9998;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: center;
  font-size: 1rem;
  animation: slideUpCookie .7s;
}
@keyframes slideUpCookie {
  from {transform: translateY(100%); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner-content {
  max-width: 450px;
  color: #243357;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-banner-buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Georgia', serif;
  font-size: 1.02rem;
  border: none;
  border-radius: 11px;
  padding: 7px 20px;
  cursor: pointer;
  margin: 0;
  transition: background 0.15s, color 0.13s;
  box-shadow: 0 1px 8px rgba(36,51,87,0.06);
}
.cookie-accept {
  background: #F8B195;
  color: #243357;
  font-weight: 500;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #243357;
  color: #fff;
}
.cookie-reject {
  background: #243357;
  color: #fff;
  font-weight: 500;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #F8B195;
  color: #243357;
}
.cookie-settings {
  background: #fff;
  color: #F8B195;
  border: 1px solid #F8B195;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #F8B19544;
  color: #243357;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(36,51,87,0.38);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn 0.32s;
}
@keyframes cookieFadeIn {
  from {opacity:0;}
  to{opacity:1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 94vw;
  box-shadow: 0 8px 32px rgba(36,51,87,0.19);
  padding: 38px 28px 22px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  color: #243357;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal-category span {
  flex: 1;
  font-size: 1rem;
  color: #243357;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 23px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  background: #F8B195;
  border-radius: 23px;
  top: 0; left: 0; right:0; bottom:0;
  transition: background 0.2s;
  cursor: pointer;
}
.toggle-switch input:checked + .toggle-slider {
  background: #243357;
}
.toggle-slider:before {
  content: '';
  position: absolute;
  height: 17px;
  width: 17px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(17px);
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 6px;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.45rem;
  position: absolute;
  top: 9px; right: 14px;
  color: #243357;
  cursor: pointer;
  opacity: 0.88;
  transition: color 0.14s, opacity 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F8B195;
  opacity: 1;
}
.cookie-modal .cookie-accept,
.cookie-modal .cookie-reject,
.cookie-modal .cookie-settings {
  width: auto;
  border-radius: 9px;
  font-size: 1rem;
  min-width: 80px;
  padding: 6px 18px;
}

@media (max-width: 500px){
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    font-size: 0.97rem;
    text-align: left;
    padding: 19px 4px 14px 4px;
  }
  .cookie-banner-buttons {
    gap: 8px;
  }
  .cookie-modal {
    padding: 24px 5vw 12px 5vw;
    font-size: 1rem;
  }
}

/* --- END CSS --- */
