/* ============================== */
/*          CSS RESET             */
/* ============================== */
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, 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 {
  scroll-behavior: smooth;
}

body {
  background: #F9F6F2;
  color: #23495C;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}

ol, ul {
  list-style: none;
}
a {
  color: #A15B00;
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover, a:focus {
  color: #23495C;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* ============================== */
/*        BRAND COLOR PALETTE     */
/* ============================== */
:root {
  --color-primary: #23495C;
  --color-secondary: #F9F6F2;
  --color-accent: #A15B00;
  --color-pastel-blue: #E6F1FA;
  --color-pastel-apricot: #FBEADE;
  --color-pastel-lavender: #F5F0FA;
  --color-pastel-mint: #E8F6F3;
  --color-pastel-sand: #FFF8ED;
  --color-dark: #1b2c36;
}

/* ============================== */
/*        TYPOGRAPHY              */
/* ============================== */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900|Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.28rem;
  margin-bottom: 14px;
  font-weight: 700;
}

p, li {
  color: var(--color-dark);
  font-size: 1rem;
  margin-bottom: 12px;
}
.subheadline {
  color: #547089;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 700;
  color: #23495C;
}

/* ============================== */
/*        UTILITY CONTAINERS      */
/* ============================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(170, 175, 192, 0.10);
  padding: 36px 28px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cta-section {
  background: var(--color-pastel-mint);
  border: 1.5px dashed var(--color-accent);
  align-items: center;
  text-align: center;
  gap: 24px;
  box-shadow: 0 2px 18px rgba(179,195,210,.07);
}
.text-section {
  background: var(--color-pastel-apricot);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(179,195,210,.10);
  padding: 28px 18px;
  min-width: 235px;
  flex: 1 1 min(320px, 100%);
  transition: box-shadow .25s;
}
.card:hover {
  box-shadow: 0 8px 40px rgba(190,200,227,.22);
}

.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;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-pastel-lavender);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(157, 175, 215, 0.12);
  min-width: 235px;
  flex: 1 1 min(320px, 100%);
  margin-bottom: 20px;
  transition: box-shadow .22s, background .18s;
}
.testimonial-card p {
  color: #23495C;
  font-size: 1.10rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #A15B00;
  font-size: 0.98rem;
  font-weight: 600;
  margin-left: auto;
  margin-bottom: 0;
}
.testimonial-card:hover {
  background: var(--color-pastel-mint);
  box-shadow: 0 8px 36px rgba(157, 175, 215, 0.22);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-pastel-sand);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(200, 190, 180, 0.10);
  padding: 24px 18px;
  flex: 1 1 min(260px, 100%);
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow .22s, background .22s;
}
.feature-item img {
  width: 45px;
  height: 45px;
  margin-bottom: 8px;
  display: block;
}
.feature-item:hover {
  background: var(--color-pastel-mint);
  box-shadow: 0 5px 26px rgba(190,210,221, 0.16);
}

.collection-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.collection-item {
  background: #fff;
  border-radius: 15px;
  padding: 22px 16px;
  box-shadow: 0 2px 10px rgba(205, 196, 195, 0.08);
  flex: 1 1 min(250px, 100%);
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow .17s;
}
.collection-item:hover {
  box-shadow: 0 8px 40px rgba(190,200,227,.16);
}

.collection-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.collection-card {
  background: var(--color-pastel-lavender);
  border-radius: 15px;
  padding: 22px 16px;
  box-shadow: 0 2px 10px rgba(165, 180, 205, 0.08);
  flex: 1 1 min(250px, 100%);
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow .17s;
}
.collection-card:hover {
  box-shadow: 0 8px 40px rgba(180,200,227,.12);
}

.service-highlight, .service-details, .included-items-list, .community-benefits, .member-stories, .personalization-options, .service-benefits {
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.filters, .occasion-filters, .pricing-information, .service-pricing, .pricing {
  color: #547089;
  font-size: 1.04rem;
  margin-top: 9px;
  margin-bottom: 7px;
}

.event-list {
  margin-bottom: 22px;
  padding-left: 8px;
}
.event-list li {
  margin-bottom: 8px;
}

.contact-info {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 12px;
}
.address-block, .email-info, .opening-hours {
  background: var(--color-pastel-mint);
  border-radius: 15px;
  padding: 16px 13px;
  box-shadow: 0 2px 12px rgba(180,215,205,0.07);
  min-width: 160px;
  flex: 1 1 140px;
}

/* ============================== */
/*        BUTTONS & LINKS         */
/* ============================== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #FBEADE 0%, #E8F6F3 100%);
  color: var(--color-primary);
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 36px;
  border-radius: 28px;
  border: 2px solid var(--color-accent);
  box-shadow: 0 2px 12px rgba(165, 180, 205, 0.10);
  margin-top: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, transform 0.16s;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #E8F6F3 0%, #FBEADE 100%);
  color: var(--color-accent);
  box-shadow: 0 6px 30px rgba(177, 157, 112, 0.11);
  transform: translateY(-2px) scale(1.045);
  border-color: #23495C;
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 26px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border 0.14s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-pastel-apricot);
  color: var(--color-primary);
}

/* ============================== */
/*       HEADER, NAVIGATION       */
/* ============================== */
header {
  width: 100%;
  background: var(--color-pastel-blue);
  box-shadow: 0 2px 9px rgba(169,190,220,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  min-height: 86px;
  gap: 10px;
}
.logo img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Open Sans', sans-serif;
  color: var(--color-primary);
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 12px;
  transition: background .18s, color .16s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  background: var(--color-pastel-apricot);
  color: var(--color-accent);
}

.mobile-menu-toggle {
  display: none;
  position: relative;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-left: auto;
  padding: 7px 15px;
  z-index: 300;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus {
  background: var(--color-pastel-apricot);
}

/* ============================== */
/*       MOBILE NAV OVERLAY       */
/* ============================== */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(250, 241, 235, 0.96);
  box-shadow: 0 4px 30px rgba(177,170,160,0.17);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.56,.04,.37,1);
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 23px;
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 1202;
  border-radius: 9px;
  transition: background 0.16s;
  padding: 2px 11px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--color-pastel-apricot);
}
.mobile-nav {
  margin-top: 78px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 30px 6px 30px;
  font-size: 1.20rem;
  width: 100%;
  max-width: 440px;
  margin-left: 0;
}
.mobile-nav a {
  color: var(--color-primary);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 14px;
  background: none;
  transition: background 0.15s, color .14s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-pastel-mint);
  color: var(--color-accent);
}

/* ============================== */
/*            FOOTER              */
/* ============================== */
footer {
  width: 100%;
  background: var(--color-pastel-blue);
  box-shadow: 0 -2px 9px rgba(169,190,220,0.06);
  margin-top: 34px;
  padding: 22px 0 14px 0;
}
.footer-brand img {
  max-height: 34px;
  margin-bottom: 13px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 12px 0 20px 0;
}
.footer-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  padding: 4px 10px;
  border-radius: 10px;
  transition: background .13s;
}
.footer-nav a:hover {
  background: var(--color-pastel-apricot);
  color: var(--color-accent);
}
.footer-contact {
  margin-top: 8px;
  color: #23495C;
  font-size: 0.99rem;
}
.footer-contact a {
  color: var(--color-accent);
  text-decoration: underline dotted;
  transition: color .14s;
}
.footer-contact a:hover {
  color: var(--color-primary);
}

/* ============================== */
/*         COOKIE BANNER          */
/* ============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #F5F0FA 0%, #E6F1FA 100%);
  color: var(--color-primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 18px 10px 16px 10px;
  z-index: 2500;
  box-shadow: 0 -2px 14px 0 rgba(122, 148, 179, 0.08);
  gap: 32px;
  animation: fadein-bottom .45s cubic-bezier(.51,.03,.5,1.1);
}
@keyframes fadein-bottom {
  from { transform: translateY(70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: #23495C;
  margin: 0 12px 0 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
}
.cookie-banner button {
  font-family: 'Open Sans', sans-serif;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 22px;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner .cookie-accept {
  background: var(--color-pastel-mint);
  color: var(--color-primary);
  border: 2px solid #81b5a1;
}
.cookie-banner .cookie-accept:hover {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: var(--color-pastel-lavender);
  color: var(--color-accent);
  border: 2px solid #d4b1ed;
}
.cookie-banner .cookie-reject:hover {
  background: #f5dade;
  color: var(--color-primary);
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: var(--color-accent);
  border: 2px dashed var(--color-accent);
}
.cookie-banner .cookie-settings:hover {
  background: var(--color-pastel-apricot);
  color: var(--color-primary);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,30,44,0.25);
  z-index: 3000;
  display: none;
  justify-content: center;
  align-items: center;
  transition: opacity .25s;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: modal-fadein .4s;
}
@keyframes modal-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  padding: 34px 24px 20px 24px;
  border-radius: 22px;
  box-shadow: 0 6px 40px 0 rgba(77,100,105,.16);
  max-width: 410px;
  min-width: 290px;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-title {
  font-family: 'Merriweather',serif;
  font-size: 1.26rem;
  font-weight: 700;
  margin-bottom: 11px;
}
.cookie-categories {
  margin-bottom: 5px;
  padding-left: 3px;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}
.cookie-category label {
  margin-left: 10px;
  font-weight: 600;
  font-size: 1.06rem;
}
.cookie-checkbox {
  width: 22px;
  height: 22px;
  accent-color: var(--color-accent);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 12px;
  right: 13px;
  font-size: 1.3rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.15s;
  padding: 3px 10px;
}
.cookie-modal .close-modal-btn:hover {
  background: var(--color-pastel-apricot);
}

/* ============================== */
/*        MISC ELEMENTS           */
/* ============================== */
ul, ol {
  margin-bottom: 18px;
  padding-left: 22px;
}
li {
  margin-bottom: 7px;
  line-height: 1.6;
}

hr {
  border: none;
  border-top: 1px dashed #e6ded6;
  margin: 32px 0 28px 0;
}

/* ============================== */
/*           RESPONSIVE           */
/* ============================== */
@media (max-width: 1100px) {
  .container {
    max-width: 92vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .collection-grid, .testimonials, .collection-slider, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .main-nav {
    gap: 10px;  
  }
  .footer-nav {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 1.45rem;
    margin-bottom: 16px;
  }
  h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
  }
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .content-wrapper {
    padding: 22px 8px;
    border-radius: 15px;
  }
  .section {
    padding: 26px 7px;
    margin-bottom: 32px;
  }
  .feature-item, .contact-info .address-block, .contact-info .email-info, .contact-info .opening-hours {
    padding: 14px 7px;
  }
  .footer-brand img {
    max-height: 23px;
  }
  .contact-info {
    flex-direction: column;
    gap: 16px;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 12px 14px;
  }
  .footer-contact {
    font-size: .89rem;
    text-align: left;
  }
  .cta-section {
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 13px 6px 14px 6px;
  }
  .cookie-banner p {
    margin-bottom: 4px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 9px;
    width: 100%;
    align-items: stretch;
  }
}
@media (max-width: 500px) {
  .cta-section {
    border-width: 1px;
    padding: 6px 0;
    border-radius: 10px;
  }
  .cookie-modal {
    border-radius: 10px !important;
    padding: 13px 6px 10px 6px;
    min-width: 90vw;
  }
  .collection-item, .collection-card, .feature-item, .card, .testimonial-card {
    min-width: unset;
    padding: 13px 5px;
  }
}

/* ============================== */
/*          SPECIAL CASES         */
/* ============================== */
.content-wrapper.cta-section .btn-primary {
  margin-right: 0;
  margin-left: 0;
}
.filters strong, .occasion-filters strong {
  font-weight: 700;
  color: var(--color-accent);
}
.commitment-section {
  background: var(--color-pastel-lavender);
  border-left: 4px solid var(--color-accent);
  border-radius: 11px;
  padding: 14px 12px;
  margin-bottom: 18px;
}

input[type='checkbox'].cookie-checkbox:disabled {
  opacity: 0.52;
  accent-color: #e0ded6;
}

/* Hide scroll when mobile menu/modal is open (to be toggled via .no-scroll on <body>) */
.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

/* ============================== */
/*        ANIMATION (UI)          */
/* ============================== */
/* Slight fade-in for cards */
.card, .feature-item, .testimonials .testimonial-card, .collection-item, .collection-card {
  opacity: 0;
  transform: translateY(25px);
  animation: softfadein 0.7s cubic-bezier(.39,.63,.51,.97) forwards;
}
@keyframes softfadein {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================== */
/*     Dreamy Pastel Highlights   */
/* ============================== */
.cta-section, .content-wrapper.text-section {
  box-shadow: 0 4px 40px 0 rgba(213,220,232, 0.16);
}

/* ============================== */
/*       END CSS FILE             */
/* ============================== */
