/* CSS Reset & Normalize */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*,*:before,*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #181927;
  color: #F4ECE2;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  background: linear-gradient(120deg, #222435 0%, #323558 50%, #181927 100%);
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: block;
}
a {
  color: #7FB07F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD36E;
  outline: none;
  text-shadow: 0 0 8px #7FB07F80;
}
ul,ol {
  margin-left: 20px;
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.75rem;}
h2 {font-size: 2rem;}
h3 {font-size: 1.25rem;}
h4 {font-size: 1.125rem;}

@media (max-width: 650px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.5rem;}
  h3 {font-size: 1rem;}
}

p,li,blockquote {
  font-size: 1rem;
  color: #F4ECE2;
}
strong {color: #fff;}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Hero Section */
.hero {
  margin-bottom: 60px;
  padding: 48px 0 40px 0;
  background: radial-gradient(ellipse at 80% 0%, #1d203c 0%, #222435 90%);
  border-bottom: 3px solid #7FB07F44;
  box-shadow: 0 6px 30px #22243585;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  text-shadow: 0 3px 24px #000a;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #cce9d6;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 28px 0;
  }
}

/* Section Layouts */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features, .services, .about, .contact, .legal, .confirmation, .testimonials {
  margin-bottom: 60px;
  padding: 40px 0;
  background: linear-gradient(100deg, #232742 50%, #181927 100%);
  border-radius: 28px;
  box-shadow: 0 2px 16px #11192840;
}
@media (max-width: 768px) {
  .features, .services, .about, .contact, .legal, .confirmation, .testimonials {
    padding: 28px 0;
    border-radius: 0;
  }
}

/* Flexbox Card & Content Layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #21263a;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px #14183160, 0 0 0 2px #7FB07F07;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.25s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 32px 2px #7FB07F50, 0 0 0 3px #7FB07F30;
  transform: translateY(-4px) scale(1.01);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F4ECE2;
  border-radius: 16px;
  box-shadow: 0 2px 16px #21263a30;
  color: #191830;
  margin-bottom: 20px;
  min-width: 260px;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 6px;
  border-left: 3px solid #7FB07F;
  padding-left: 14px;
}
.testimonial-card p {
  color: #fff;
  margin-bottom: 0;
}
.testimonial-card.mini {
  padding: 16px 14px;
  font-size: 0.95rem;
  border-radius: 12px;
}
@media (max-width: 650px) {
  .testimonial-card {
    font-size: 0.97rem;
    padding: 15px 10px;
  }
}

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

/* Feature Grid (ul.feature-grid) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #232742;
  border-radius: 18px;
  padding: 28px 22px 22px 22px;
  box-shadow: 0 2px 16px #11192833;
  min-width: 200px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  gap: 14px;
  border: 1.5px solid #30345A;
  transition: box-shadow 0.18s, border-color 0.22s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 6px 36px 1px #7FB07F44, 0 0 0 2px #7FB07F22;
  border-color: #7FB07F;
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 1px 12px #7FB07F50);
}
.feature-grid h3 {
  color: #7FB07F;
  font-size: 1.29rem;
  margin-bottom: 6px;
  text-align: center;
}
.feature-grid p {
  padding: 0 2px;
  color: #cce9d6;
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 950px) {
  .feature-grid {
    justify-content: center;
  }
  .feature-grid li {
    min-width: 153px;
    flex: 1 1 170px;
  }
}
@media (max-width: 700px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-grid li {
    min-width: 122px;
    flex: 1 1 160px;
    padding: 20px 12px 15px 12px;
  }
}

/* Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 17px;
  right: 18px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #7FB07F;
  z-index: 1002;
  cursor: pointer;
  border-radius: 8px;
  padding: 4px 16px;
  box-shadow: 0 2px 12px #1015304b;
  transition: background 0.18s, box-shadow 0.17s;
}
.mobile-menu-toggle:focus {
  background: #25293e;
  box-shadow: 0 0 0 2.5px #7FB07F77;
  outline: none;
}
@media (max-width: 930px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #181927ee;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  min-width: 0;
  z-index: 1500;
  padding: 0 30px 0 0;
  pointer-events: none;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.33s cubic-bezier(0.86,0,0.07,1), opacity 0.23s;
}
.mobile-menu.active {
  pointer-events: auto;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  display: block;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  line-height: 1;
  position: absolute;
  top: 28px;
  right: 28px;
  cursor: pointer;
  z-index: 1600;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #25293e;
  color: #FFD36E;
}
.mobile-nav {
  margin-top: 95px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  font-size: 1.24rem;
}
.mobile-nav a {
  display: block;
  width: 95vw;
  padding: 18px 5vw;
  color: #F4ECE2;
  background: none;
  border-radius: 0 36px 36px 0;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-left: -5vw;
  transition: background 0.13s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #262E53;
  color: #7FB07F;
}

@media (min-width: 931px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Header Navigation */
header nav {
  background: rgba(34,36,53,0.94);
  box-shadow: 0 2px 16px #1619262b;
  border-bottom: 2px solid #2B2F4D;
  padding: 0;
}
header .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 18px;
  list-style: none;
  align-items: center;
  margin: 0 0 0 18px;
}
header nav ul li {
  font-size: 1rem;
}
header nav ul li a {
  color: #cce9d6;
  padding: 8px 11px;
  border-radius: 6px;
  transition: background 0.18s, color 0.15s, text-shadow 0.16s;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: #232742;
  color: #FFD36E;
  text-shadow: 0 0 6px #FFD36E33;
  outline: none;
}
.cta-btn {
  background: #7FB07F;
  color: #191830;
  font-weight: 700;
  font-size: 1.12rem;
  border: none;
  border-radius: 20px;
  padding: 11px 30px;
  box-shadow: 0 4px 24px #7FB07F40;
  letter-spacing: 0.01em;
  margin-left: 0;
  text-shadow: 0 2px 10px #1d211d14;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, transform 0.21s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD36E;
  color: #181927;
  box-shadow: 0 2px 32px #FFD36E60;
  transform: translateY(-1px) scale(1.025);
}
.cta-btn.secondary {
  background: #232742;
  color: #7FB07F;
  border: 2px solid #7FB07F;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #7FB07F;
  color: #191830;
  border: 2px solid #FFD36E;
}
@media (max-width: 930px) {
  header nav ul,
  header .cta-btn {
    display: none !important;
  }
  header .content-wrapper {
    justify-content: flex-start;
    gap: 0;
    padding: 14px 0;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
}

/* Service/Lists Styles */
.arrangement-categories, .gift-categories, .service-list, .occasion-grid ul, .brand-values ul {
  padding-left: 18px;
  margin-bottom: 8px;
}
.arrangement-categories li, .gift-categories li, .service-list li, .brand-values li {
  margin-bottom: 8px;
  padding-left: 0;
}
.occasion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.occasion-grid > div {
  flex: 1 1 210px;
  background: #232742;
  border-radius: 16px;
  box-shadow: 0 2px 12px #11192833;
  padding: 24px 18px 12px 18px;
  min-width: 170px;
  margin-bottom: 18px;
}
.occasion-grid h3 {
  color: #FFD36E;
  margin-bottom: 7px;
}
.occasion-grid p {
  color: #cce9d6;
  font-size: 0.98rem;
}
@media (max-width: 800px) {
  .occasion-grid {
    flex-direction: column;
    gap: 16px;
  }
  .occasion-grid > div {
    min-width: 0;
    padding: 18px 5px 10px 13px;
  }
}

.step-by-step, .zones-and-times, .special-packages, .ordering-info, .brand-values, .map-snippet, .opening-hours {
  background: #232742;
  border-radius: 15px;
  padding: 18px 19px;
  margin-bottom: 20px;
  box-shadow: 0 1px 7px #1119282b;
}
.step-by-step h3,
.zones-and-times h3,
.special-packages h3,
.ordering-info h3 {
  color: #FFD36E;
  font-size: 1.14rem;
  margin-bottom: 11px;
}
.step-by-step ol,
.zones-and-times ul,
.special-packages ul,
.ordering-info ul,
.brand-values ul {
  padding-left: 17px;
}

/* Contact/Details styles */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 15px;
}
.contact-details img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 8px;
}
.map-snippet img {
  display: inline-block;
  width: 21px;
  height: 21px;
  margin-right: 8px;
  vertical-align: middle;
}
.opening-hours h3 {
  margin-bottom: 3px;
}

/* Confirmation section */
.confirmation .container {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.confirmation .content-wrapper {
  background: #222435dd;
  padding: 38px 22px;
  border-radius: 22px;
  box-shadow: 0 4px 30px #7FB07F33;
  gap: 19px;
  align-items: center;
}
.confirmation h1 {
  color: #FFD36E;
}
.confirmation p {
  color: #cce9d6;
}

/* About page style */
.mission-statement, .team-intro {
  background: #232742;
  border-radius: 15px;
  box-shadow: 0 1px 7px #1119282b;
  padding: 18px 19px;
  margin-bottom: 18px;
}
.mission-statement h2, .team-intro h2 {
  color: #FFD36E;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

/* Footer Styling */
footer {
  background: #232742;
  margin-top: 25px;
  padding: 40px 0 18px 0;
  color: #cce9d6;
  border-top: 2px solid #2B2F4D;
}
footer .container {
  padding: 0 16px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
footer img {
  width: 46px;
  height: 46px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: #7FB07F;
  font-weight: 500;
  transition: color 0.13s;
  font-size: 1.05rem;
}
footer nav a:hover,footer nav a:focus{ color: #FFD36E;}
footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer .legal-links {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-top: 8px;
}
footer .social-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 12px;
}
footer .social-links a img {
  width: 24px;
  height: 24px;
  filter: brightness(1.5) drop-shadow(0 2px 9px #7FB07Fcc);
  transition: filter 0.18s;
}
footer .social-links a:hover img, footer .social-links a:focus img {
  filter: brightness(2.6) drop-shadow(0 0 5px #FFD36E44);
}
@media (max-width:850px) {
  footer .content-wrapper {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  footer nav, .contact-info, .social-links, .legal-links {
    margin-bottom: 10px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #191830;
  color: #F4ECE2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 34px;
  gap: 24px;
  z-index: 1900;
  box-shadow: 0 -2px 28px #11192830;
  transition: transform 0.28s, opacity 0.24s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  font-size: 0.99rem;
  flex: 1 1 280px;
  color: #F4ECE2;
  margin-right: 18px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-shrink: 0;
}
.cookie-btn {
  border: none;
  border-radius: 15px;
  background: #7FB07F;
  color: #191830;
  font-weight: 700;
  padding: 8px 26px;
  font-size: 1rem;
  box-shadow: 0 2px 16px #7FB07F33;
  cursor: pointer;
  transition: background 0.16s, color 0.19s, box-shadow 0.16s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #FFD36E;
  color: #181927;
  box-shadow: 0 4px 24px #FFD36E50;
}
.cookie-btn.cookie-settings {
  background: transparent;
  border: 2px solid #7FB07F;
  color: #7FB07F;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #232742;
  color: #FFD36E;
  border: 2px solid #FFD36E;
}
@media (max-width:650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
    gap: 10px;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
  }
  .cookie-banner .cookie-actions {
    gap: 11px;
  }
}

/* Cookie Modal Styles */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: #181927ee;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #232742;
  color: #F4ECE2;
  border-radius: 20px;
  box-shadow: 0 2px 32px #7FB07F33;
  padding: 36px 34px;
  min-width: 340px;
  max-width: 94vw;
  font-size: 1rem;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #FFD36E;
  margin-bottom: 14px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.cookie-category {
  background: #21263a;
  border-radius: 12px;
  padding: 13px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cookie-category label {
  font-size: 1rem;
  color: #FFD36E;
  font-weight: 500;
}
.cookie-category .cookie-toggle {
  margin-left: 22px;
  accent-color: #7FB07F;
  width: 20px;
  height: 20px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 10px;
  background: none;
  border: none;
  color: #FFD36E;
  font-size: 1.75rem;
  cursor: pointer;
  border-radius: 8px;
  padding: 2px 10px;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #25293e;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: 0;
    padding: 20px 8px;
    font-size: 0.95rem;
  }
}

/* Legal Section Formatting */
.legal {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #222435;
  border-radius: 20px;
  box-shadow: 0 2px 13px #1119282b;
}
.legal h1, .legal h2 {
  margin-bottom: 13px;
}
.legal ul, .legal ol {
  margin-bottom: 14px;
}

/* Micro-interactions for buttons/links */
button, .cta-btn, .cookie-btn {
  transition: background 0.18s, color 0.17s, box-shadow 0.16s, transform 0.13s;
}
button:focus-visible, a:focus-visible {
  outline: 2.5px solid #FFD36E;
  outline-offset: 2px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 7px;
  background: #21263a;
}
::-webkit-scrollbar-thumb {
  background: #7FB07F;
  border-radius: 6px;
}

@media (max-width: 800px) {
  .container {
    padding: 0 8px;
  }
}

/* Utilities */
.mt-24 { margin-top: 24px; }
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-16 { margin-bottom: 16px; }
.pb-24 { padding-bottom: 24px; }
.pb-16 { padding-bottom: 16px; }

/* ---------------------------------------------------
  Responsive Flex Direction for Wrappers
--------------------------------------------------- */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card-container, .content-grid, .feature-grid, .occasion-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
}

/* Remove Grid Forbid, reinforce only Flex */
[class*="grid"], .feature-grid, .content-grid, .card-container, .occasion-grid {
  display: flex !important;
  flex-wrap: wrap;
  gap: 20px;
}

/* Fallback font families */
body, input, textarea, button {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

/* For proper color contrast in reviews/testimonials */
.testimonials, .testimonial-card {
  color: #fff;
  background: none;
}

/* Animate in for modals/banners */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.cookie-banner, .cookie-modal {
  animation: fadeInUp 0.4s cubic-bezier(0.68,-0.55,0.27,1.55) 1;
}

/* Prevent overlap and enforce white spacing */
.card, .feature-grid li, .testimonial-card, .occasion-grid > div, .step-by-step, .brand-values, .special-packages, .ordering-info, .map-snippet, .opening-hours {
  margin-bottom: 20px;
}

/* Ensure wide browser compatibility */
:root {
  --primary: #222435;
  --secondary: #7FB07F;
  --accent: #F4ECE2;
}

/* Strictly NO grid or columns, flex only */
/* No display:grid, grid-*, column-*, break-inside anywhere! */
