/* RESET & BOILERPLATE */
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: 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.5;
  background: #FFF7F0;
  color: #254F6E;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
}
:root {
  /* Brand Palette */
  --primary: #254F6E;
  --secondary: #F1B24A;
  --accent: #FFFFFF;
  --creative-pink: #FC6681;
  --creative-mint: #4AE8C4;
  --creative-blue: #88B4F1;
  --creative-lavender: #D7B4F8;
  --background: #FFF7F0;
  /* Font family fallbacks */
  --font-display: 'Quicksand', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
p,
ul li,
ol li {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #364254;
  line-height: 1.7;
  margin-bottom: 12px;
}

strong, b {
  color: var(--creative-pink);
  font-weight: 700;
}

blockquote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--creative-mint);
  background: rgba(136,180,241,0.10);
  border-left: 4px solid var(--creative-pink);
  padding: 16px 24px;
  margin-bottom: 10px;
  border-radius: 12px;
}

/* LINKS */
a {
  color: var(--creative-pink);
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 1px solid transparent;
}
a:hover, a:focus {
  color: var(--primary);
  border-bottom: 1px solid var(--secondary);
  background: rgba(241,178,74,0.10);
  border-radius: 4px;
}

/* LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  padding: 0; /* Section handles padding */
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--background);
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(36,80,110, 0.07), 0 1.5px 4px rgba(241,178,74,.07);
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent);
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(252,102,129,0.06);
  position: relative;
  padding: 24px 20px 20px 20px;
  transition: box-shadow 0.25s, transform 0.15s;
  min-width: 250px;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(252,102,129,0.13);
  transform: translateY(-4px) scale(1.03);
}
.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: center;
  gap: 20px;
  min-width: 220px;
  max-width: 480px;
  background: #fff;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(36, 80, 110, .09);
  margin-bottom: 20px;
  border: 1.5px solid var(--creative-blue);
  font-size: 1rem;
}
.testimonial-card blockquote {
  color: var(--primary);
  background: transparent;
  border: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 0;
  font-size: 1.12rem;
  line-height: 1.6;
}
.testimonial-card p {
  color: var(--creative-pink);
  margin: 0;
  font-weight: 700;
  font-style: normal;
  font-size: 1.05em;
  letter-spacing: 0.3px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(100deg, var(--background) 60%, #F1B24A 140%);
  border-radius: 0 0 36px 36px;
  min-height: 48vh;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  z-index: 1;
}
.hero h1 {
  color: var(--creative-pink);
  font-family: var(--font-display);
  font-size: 2.35rem;
  letter-spacing: 1.1px;
  text-shadow: 0 2px 16px rgba(252,102,129,0.08);
}
.hero p {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

/* FEATURES */
.features {
  background: var(--creative-mint);
  background: linear-gradient(95deg, #F7FAFE 60%, #D7B4F8 250%);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
}
.features h2 {
  color: var(--primary);
  margin-bottom: 12px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 0;
}
.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 14px 24px;
  min-width: 220px;
  font-size: 1.03rem;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(76,232,196,0.11);
}
.features li img {
  width: 32px;
  height: 32px;
}

/* CTAs & BUTTONS */
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  outline: none;
  border-radius: 18px;
  padding: 0.75em 2.1em;
  font-size: 1.14em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.08s;
  margin: 0 10px 10px 0;
  box-shadow: 0 2px 12px rgba(241,178,74,0.12);
}
.button-primary {
  background: var(--creative-pink);
  color: #fff;
  letter-spacing: .8px;
  box-shadow: 0 4px 20px rgba(252,102,129,0.12);
}
.button-primary:hover, .button-primary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04);
}
.button-secondary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--secondary);
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--primary);
  transform: translateY(-2px) scale(1.04);
}
/* Buttons inside cookie/modal sections */
.cookie-banner button, .cookie-modal button {
  min-width: 120px;
  margin-right: 12px;
  margin-bottom: 5px;
  font-size: 1em;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px 0;
  font-size: 1rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(136,180,241,0.07);
  overflow: hidden;
}
thead {
  background: var(--primary);
  color: #fff;
}
thead th {
  padding: 14px 10px;
  font-family: var(--font-display);
  font-size: 1.08em;
  font-weight: 700;
}
tbody td {
  padding: 14px 10px;
  border-bottom: 1px solid #eee;
  text-align: center;
  color: var(--primary);
}
tbody tr:last-child td {
  border-bottom: none;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 0 0;
  margin-top: 60px;
  border-radius: 36px 36px 0 0;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 4px 8px;
  transition: color 0.2s, background 0.2s;
  border-radius: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  background: #fff;
}
.footer-info {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 32px 0;
  font-size: 0.98em;
}

/* HEADER & NAVBAR */
header {
  background: var(--accent);
  box-shadow: 0 4px 20px rgba(241,178,74,0.06);
  z-index: 400;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 78px;
  padding-top: 8px;
  padding-bottom: 8px;
}
header a img {
  height: 52px;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .4px;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a.button-primary {
  margin-left: 12px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--creative-pink);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 8px;
  font-size: 2.1rem;
  padding: 5px 14px;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--creative-pink);
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: rgba(255, 247, 240, 0.97);
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 500;
  padding: 28px 32px 24px 25px;
  box-shadow: 0 12px 32px rgba(36, 80, 110, 0.13);
  transform: translateX(-110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.33s cubic-bezier(0.51,0.04,0.32,1.01), opacity 0.23s;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--creative-pink);
  border: none;
  font-size: 2rem;
  margin-bottom: 24px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.18s;
  padding: 2px 18px 2px 9px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--creative-pink);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.22em;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 8px 0 8px 8px;
  border-radius: 6px;
  min-width: 175px;
  transition: background 0.19s, color 0.18s;
  margin-bottom: 2px;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--creative-pink);
  color: #fff;
}


/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%) translateY(120px);
  width: 98%;
  max-width: 570px;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 0 34px rgba(36,80,110,0.19), 0 3px 12px rgba(241,178,74,0.10);
  border-radius: 24px 24px 0 0;
  z-index: 900;
  padding: 26px 25px 18px 25px;
  font-size: 1.04em;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.69,0,0.28,1.01), opacity 0.24s;
}
.cookie-banner.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 7px 0 0 0;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 10px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 0.55em 1.5em;
  transition: background 0.16s, color 0.17s;
  margin: 0 12px 0 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--creative-pink);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--creative-blue);
  color: var(--primary);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(37,79,110,0.13);
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.visible {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 6px 40px rgba(37,79,110,0.13), 0 1.5px 6px rgba(241,178,74, .10);
  padding: 30px 28px 22px 28px;
  width: 100%;
  max-width: 520px;
  margin-bottom: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideModalIn 0.34s cubic-bezier(0.69,0,0.28,1.01);
}
@keyframes slideModalIn {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.3em;
  color: var(--creative-pink);
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
}
.cookie-modal .category-label {
  font-family: var(--font-display);
  font-size: 1.10em;
  font-weight: 700;
  color: var(--primary);
}
.cookie-modal .category-switch {
  width: 38px;
  height: 22px;
  position: relative;
  margin-right: 8px;
}
.cookie-modal .category-switch input[type=checkbox] {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #D7B4F8;
  border-radius: 20px;
  transition: background 0.2s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform 0.18s, background 0.14s;
}
.cookie-modal .category-switch input:checked + .slider {
  background: var(--creative-mint);
}
.cookie-modal .category-switch input:checked + .slider:before {
  transform: translateX(16px);
  background: var(--secondary);
}
.cookie-modal .category-desc {
  margin-left: 56px;
  margin-bottom: 6px;
  font-size: .98em;
  color: #364254;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
}
.cookie-modal button {
  border-radius: 10px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 0.55em 1.5em;
  font-family: var(--font-display);
  font-weight: 700;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--creative-pink);
  color: #fff;
}

/* GALLERY/EVENTIVE CREATIVE HIGHLIGHTS */
.location-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
section > .container > .content-wrapper > div {
  margin-bottom: 22px;
  background: linear-gradient(85deg, #FC6681 3%, #F1B24A 110%);
  border-radius: 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.10em;
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(252,102,129,0.09);
}
section > .container > .content-wrapper > div:last-child {
  margin-bottom: 0;
}


/* SPACING & FLEX REQUIREMENTS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* GENERAL LISTS */
ul, ol {
  margin: 0 0 24px 0;
}
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 28px;
  font-family: var(--font-body);
  color: var(--primary);
  font-size: 1.09em;
}
ul li img {
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

ol {
  list-style-type: decimal;
  padding-left: 18px;
}
ol li {
  padding-left: 0;
}

/* Animations: Hover, Focus, Microinteractions */
.button-primary, .button-secondary {
  will-change: transform, box-shadow, color, background;
}
.button-primary:active, .button-secondary:active {
  transform: scale(.97);
}
.card, .testimonial-card, .features li {
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .testimonial-card:hover, .features li:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 24px rgba(241,178,74,0.16);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
  .footer-nav {
    gap: 8px;
  }
  section {
    padding: 30px 7px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 97.5%;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  header .container {
    padding: 9px 7px;
    gap: 7px;
    height: 62px;
  }
  header a img {
    height: 38px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cookie-banner {
    max-width: 96vw;
    padding: 19px 6px 12px 11px;
    font-size: .97em;
  }
  .card-container, .content-grid {
    gap: 13px;
  }
  .features ul {
    gap: 12px;
  }
  .features li {
    min-width: 0;
    padding: 10px 8px;
    font-size: 1em;
  }
  .card {
    padding: 16px 7px 12px 13px;
    min-width: 120px;
  }
  .testimonial-card {
    min-width: 120px;
    max-width: 100%;
    padding: 11px 7px;
    border-radius: 14px;
    font-size: .97em;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
  .hero {
    min-height: 31vh;
    border-radius: 0 0 18px 18px;
    margin-bottom: 20px;
  }
  section {
    margin-bottom: 33px;
    padding: 16px 7px;
    border-radius: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 4px;
    align-items: center;
    margin-bottom: 8px;
  }
  .footer-info {
    padding: 8px 0 18px 0;
    font-size: 0.95em;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 93.2%;
  }
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.02rem;
  }
  .button-primary, .button-secondary {
    font-size: 1em;
    padding: 0.55em 1.1em;
  }
  section > .container > .content-wrapper > div {
    font-size: 1em;
    padding: 10px 7px;
    border-radius: 10px;
  }
}

/* Z-INDEX LAYERS */
header { z-index: 400; position: relative; }
.mobile-menu { z-index: 500; }
.cookie-banner { z-index: 900; }
.cookie-modal-overlay { z-index: 1100; }

/* OVERRIDES FOR CONSISTENCY* /
/* Ensure absolutely NO overlap for cards! */
.card, .testimonial-card, .features li, .section, section, .content-wrapper, .container {
  box-sizing: border-box;
}
