/*--- 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;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.4;
  background: #f7eaea;
  color: #245750;
}
ul,ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #a01737;
  transition: color 0.18s cubic-bezier(0.44,0,0.56,1);
}
a:hover, a:focus {
  color: #ca4261;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
}
:root {
  --color-primary: #245750;
  --color-secondary: #f7eaea;
  --color-accent: #a01737;
  --color-accent-2: #ca4261;
  --shadow-main: 0 2px 16px 0 rgba(36,87,80,0.12),0 1.5px 8px 0 rgba(202,66,97,0.09);
  --radius: 18px;
  --radius-btn: 24px;
  --ff-display: 'Playfair Display', serif;
  --ff-body: 'Lato', Arial, sans-serif;
}

/*--- TYPOGRAPHY ---*/
h1 {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--color-accent);
  font-weight: 800;
  margin-bottom: 14px;
}
h3 {
  font-family: var(--ff-body);
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: bold;
  margin: 16px 0 8px;
}
p,li,span,td,th {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.8;
}
strong {
  font-weight: 700;
}

/*--- CONTAINER ---*/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*--- HEADER & NAV ---*/
header {
  background: #ffffff;
  box-shadow: var(--shadow-main);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1040;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
header nav {
  display: flex;
  gap: 18px;
}
header nav a {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  background: transparent;
  padding: 8px 16px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-accent-2);
  color: #fff;
}
.cta-primary {
  background: var(--color-accent);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1.08rem;
  font-weight: bold;
  padding: 10px 32px;
  border-radius: var(--radius-btn);
  box-shadow: 0 3px 16px 0 rgba(202,66,97,0.13);
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.23s cubic-bezier(.66,.17,.31,.87), box-shadow 0.2s;
  position: relative;
  outline: none;
  z-index: 2;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-accent-2);
  box-shadow: 0 6px 24px 0 rgba(36,87,80,0.05);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/*--- MOBILE MENU BUTTON ---*/
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(202,66,97,0.09);
  transition: background 0.18s, transform 0.18s;
  position: relative;
  z-index: 1202;
}
.mobile-menu-toggle:active {
  background: var(--color-primary);
  transform: scale(0.97);
}

/*--- MOBILE MENU ---*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(0.68,-0.1,0.36,1);
  box-shadow: 0 5px 30px 0 rgba(36,87,80,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  font-size: 2rem;
  background: var(--color-accent-2);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 24px 18px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: background .17s, transform .19s;
  box-shadow: 0 2px 8px 0 rgba(202,66,97,0.09);
}
.mobile-menu-close:active {
  background: var(--color-primary);
  transform: scale(0.97);
}
.mobile-nav {
  margin-top: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.32rem;
  font-family: var(--ff-display);
  color: var(--color-primary);
  padding: 16px 0;
  border-bottom: 1px solid #f3dcdc;
  width: 100%;
  display: block;
  background: none;
  font-weight: 700;
  transition: color 0.17s, background 0.17s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent-2);
  color: #fff;
  border-radius: 12px;
}

/* Hide desktop nav and show burger on mobile */
@media (max-width: 991px) {
  header nav { display: none; }
  .cta-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 991px) {
  .mobile-menu { display: flex; }
}

/*--- MAIN ---*/
main a:not(.cta-primary) {
  color: var(--color-accent);
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.16s;
}
main a:not(.cta-primary):hover, main a:not(.cta-primary):focus {
  color: var(--color-primary);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-main);
}

/*--- HERO ---*/
.hero {
  background: linear-gradient(120deg, #fff 70%, #f7eaea 100%);
  min-height: 420px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-main);
}
.hero .container { align-items: center; }
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 660px;
  gap: 12px;
  padding: 32px 0;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: var(--color-accent);
  text-shadow: 1px 2px 0 #ffe5ef;
}
.hero p {
  font-size: 1.22rem;
  margin: 0 0 18px 0;
}
.hero .cta-primary { margin: 10px 0 0 0; }

/*--- FEATURES/GRID BLOCKS ---*/
.features, .services, .faq, .about, .about-preview, .occasions-overview, .cta, .faq-preview, .contact-preview, .contact, .hours, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-main);
  background: #fff;
}
.features .content-wrapper, .services .content-wrapper, .about .content-wrapper, .about-preview .content-wrapper, .occasions-overview .content-wrapper, .faq .content-wrapper, .faq-preview .content-wrapper, .contact-preview .content-wrapper, .contact .content-wrapper, .hours .content-wrapper, .legal .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.features ul, .services ul, .about ul, .occasions-overview ul, .faq ul, .contact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.features ul li, .services ul li, .about ul li, .occasions-overview ul li, .faq ul li, .contact ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f7eaea;
  padding: 14px 22px;
  border-radius: 14px;
  min-width: 210px;
  font-size: 1rem;
  font-family: var(--ff-body);
  box-shadow: 0 1.7px 8px 0 rgba(202,66,97,0.045);
}
.features ul li img, .services ul li img, .contact ul li img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/*--- SECTION GAPS for multi-section layouts ---*/
.section + .section {
  margin-top: 32px;
}

/*--- TESTIMONIAL CARDS ---*/
.testimonials .content-wrapper {
  gap: 28px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff8fa;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 rgba(202,66,97,0.09);
  border-left: 7px solid var(--color-accent);
  position: relative;
  min-width: 240px;
}
.testimonial-card p {
  color: #222;
  font-family: var(--ff-body);
  font-size: 1.13rem;
}
.testimonial-card strong {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: #ca4261;
}

/*--- CTA SECTION ---*/
.cta {
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: 0 2px 22px 0 rgba(36,87,80,0.09);
}
.cta .content-wrapper {
  gap: 18px;
}
.cta .cta-primary {
  background: #fff;
  color: var(--color-accent);
  box-shadow: none;
  margin: 0 auto;
}
.cta .cta-primary:hover,
.cta .cta-primary:focus {
  background: var(--color-primary);
  color: #fff;
}

/*--- CARD CONTAINER/GRID ---*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-main);
  padding: 18px 22px;
  min-width: 220px;
  max-width: 100%;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 2px 36px 0 rgba(36,87,80,0.14);
  transform: translateY(-3px) scale(1.008);
}

/*--- CONTENT GRID ---*/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/*--- TEXT-IMAGE SECTION ---*/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/*--- FEATURE ITEM ---*/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*--- TABLES ---*/
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  margin-bottom: 18px;
  font-family: var(--ff-body);
}
th, td {
  padding: 12px;
  border-bottom: 1.5px solid #e4dedd;
  text-align: left;
  color: var(--color-primary);
}
th {
  background: #f7eaea;
  font-weight: 800;
  font-size: 1.03rem;
}
tr:last-child td {
  border-bottom: none;
}

/*--- FOOTER ---*/
footer {
  background: #245750;
  color: #fff;
  padding: 28px 0 18px 0;
  font-size: 1rem;
}
footer .container {
  align-items: flex-start;
  gap: 16px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
footer nav a {
  color: #fff;
  font-family: var(--ff-display);
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: .3px;
  opacity: 0.91;
  transition: opacity 0.16s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-accent-2);
  opacity: 1;
}
footer address {
  font-style: normal;
  color: #f7eaea;
  font-size: 0.98rem;
  margin-bottom: 5px;
}
footer div {
  color: #e0dede;
  font-size: 0.91rem;
}

/*--- COOKIE CONSENT BANNER ---*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff8fa;
  color: var(--color-primary);
  box-shadow: 0 -2px 12px 0 rgba(36,87,80,0.08);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 24px 20px;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .28s, transform .28s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120px);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button, .cookie-modal button {
  font-family: var(--ff-display);
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  margin-right: 8px;
}
.cookie-banner .btn-accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: var(--color-accent-2);
}
.cookie-banner .btn-reject {
  background: #ffceda;
  color: var(--color-accent);
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #ffc5df;
  color: #a01737;
}
.cookie-banner .btn-settings {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid #d9b9bf;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #f7eaea;
}

/*--- COOKIE MODAL ---*/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 52%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  z-index: 2200;
  border-radius: 25px;
  box-shadow: 0 6px 44px 0 rgba(36,87,80,0.13);
  padding: 36px 28px 28px 28px;
  width: 98%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 1;
  transition: opacity 0.23s, transform 0.23s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-30%) scale(0.98);
}
.cookie-modal h2 {
  color: var(--color-primary);
  margin-bottom: 14px;
  font-size: 1.28rem;
  text-align: left;
  font-family: var(--ff-display);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7eaea;
  border-radius: 10px;
  padding: 11px 13px;
}
.cookie-category .cookie-toggle {
  width: 34px;
  height: 20px;
  border-radius: 10px;
  background: #ccc;
  position: relative;
}
.cookie-category .cookie-toggle input {
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
}
.cookie-category .cookie-toggle .toggle-thumb {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1.5px 8px 0 rgba(36,87,80,0.09);
  transition: left 0.15s;
}
.cookie-category .cookie-toggle input:checked + .toggle-thumb {
  left: 16px;
  background: var(--color-accent);
}
.cookie-category.essential .cookie-toggle {
  background: #ca4261;
}
.cookie-category.essential .cookie-toggle .toggle-thumb {
  left: 16px;
  background: #fff;
}
.cookie-category.essential .cookie-toggle input {
  pointer-events: none;
}
.cookie-modal .cookie-actions {
  text-align: right;
  margin-top: 10px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .btn-save {
  background: var(--color-accent);
  color: #fff;
}
.cookie-modal .btn-cancel {
  background: #faf1f1;
  color: var(--color-accent);
}
.cookie-modal .btn-save:hover, .cookie-modal .btn-save:focus {
  background: var(--color-accent-2);
}
.cookie-modal .btn-cancel:hover, .cookie-modal .btn-cancel:focus {
  background: #f7eaea;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 21px;
  right: 22px;
  font-size: 1.5rem;
  color: var(--color-accent-2);
  background: none;
  border: none;
  z-index: 2;
  cursor: pointer;
}

/*--- ANIMATIONS ---*/
.cta-primary, .cta-primary *, .cookie-banner button, .cookie-modal button {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.18s;
}
.card, .testimonial-card, .features ul li, .services ul li {
  transition: box-shadow 0.16s, transform 0.16s;
}
.features ul li:hover, .services ul li:hover {
  box-shadow: 0 4px 24px 0 rgba(202,66,97,0.13);
  transform: translateY(-3px) scale(1.025);
}

/* Fun, bouncy animation on hover for playful effect */
.cta-primary:hover, .cookie-banner button:active, .cookie-modal button:active {
  transform: scale(1.06) rotate(-2deg);
}

/*--- RESPONSIVE ---*/
@media (max-width: 1110px) {
  .container {
    max-width: 96vw;
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.52rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  header .container {
    min-height: 54px;
    gap: 8px;
  }
  .hero {
    min-height: 320px;
    margin-bottom: 32px;
    padding: 8px 0;
    border-radius: 0 0 28px 28px;
  }
  .hero .content-wrapper {
    padding: 12px 0;
    align-items: stretch;
  }
  .section { padding: 26px 8px; }
  .features, .services, .about, .about-preview, .occasions-overview, .cta, .faq-preview, .contact-preview, .contact, .hours, .legal {
    padding: 26px 8px;
    margin-bottom: 38px;
  }
  .features ul, .services ul, .about ul, .occasions-overview ul, .faq ul, .contact ul {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    min-width: 180px;
    padding: 14px 10px;
  }
  .card {
    min-width: 90vw;
    padding: 14px 8px;
  }
  .card-container {
    gap: 12px;
  }
  .content-grid {
    gap: 9px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  header nav, .cta-primary { display: none; }
}
@media (max-width: 480px) {
  .cta-primary { font-size: .97rem; padding: 8px 12px; }
  .card, .testimonial-card { padding: 10px 4px; }
}

/*--- PRINT ---*/
@media print {
  .cookie-banner, .cookie-modal, .mobile-menu, .mobile-menu-toggle, header, footer { display: none !important; }
}

/*--- PLAYFUL, DYNAMIC FONTS w/ FALLBACKS ---*/
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900|Lato:400,700&display=swap');

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  background: var(--color-secondary);
}

/*--- EXTRAS / OVERRIDES ---*/
::-webkit-scrollbar {
  width: 10px;
  background: #ffe5ef;
}
::-webkit-scrollbar-thumb {
  background: #ca4261;
  border-radius: 8px;
}

hr {
  border: 0;
  height: 2px;
  background: #ececec;
  margin: 28px 0;
}

/*--- Focus Outline for Accessibility ---*/
:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1.5px;
}

/*--- For form, modal, playful elements, etc. (extend as needed) ---*/
input, textarea, select {
  border: 1.5px solid #e4dedd;
  border-radius: 7px;
  padding: 7px 12px;
  font-family: var(--ff-body);
  font-size: 1rem;
  margin-bottom: 10px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  background: #fff3f6;
}

/*--- Decorative floating shapes for playful feel (optional) ---*/
@media (min-width: 720px) {
  .hero::after {
    content: '';
    position: absolute;
    right: -68px;
    top: 42px;
    width: 140px;
    height: 140px;
    background: #ca4261;
    opacity: 0.07;
    border-radius: 40% 60% 60% 40%/50% 40% 60% 50%;
    z-index: 0;
    pointer-events: none;
    animation: floatdec 8s ease-in-out infinite alternate;
  }
  @keyframes floatdec {
    0% { transform: translateY(0px) scale(1.03) rotate(0deg); }
    100% { transform: translateY(-28px) scale(1.10) rotate(15deg); }
  }
}

/*--- EoF ---*/
