/* =====================================================================
   ZEPHYR POWER: playful_dynamic STYLE - style.css
   ===================================================================== */
/* === RESET, NORMALIZE, BASE ================================================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #254E58;
  background: #F2EDE9;
  min-height: 100vh;
  letter-spacing: 0.01em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: #254E58; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #70A37F; text-decoration: underline; }
ul, ol { margin: 0 0 1.5em 1.2em; }
li { margin-bottom: 0.5em; }
strong { font-weight: bold; }

/* === BRAND COLORS === */
:root {
  --primary: #254E58;
  --secondary: #70A37F;
  --accent: #ffd86a; /* OVERWRITE accent (was #F2EDE9) for more fun */
  --bg-accent: #FEF7ED;
  --card-bg: #fff;
  --card-contrast: #254E58;
  --shadow: 0 3px 20px rgba(39, 94, 110, 0.08), 0 1.5px 6px 0 rgba(112, 163, 127, 0.11);
  --radius: 22px;
  --transition: all 0.25s cubic-bezier(.53,.04,.3,.99);
  --testimonial-bg: #fffbe9;
}

/* === FONT SETUP === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--primary);
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1.12;
  text-shadow: 1px 4px 0 #ffe5b3, 0 2px 10px #70A37F22;
}
h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, .tagline {
  font-size: 1.08rem;
  margin-bottom: 16px;
}
.tagline {
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.28rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

/* === CONTAINERS, LAYOUT, SPACING === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: transparent;
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.feature-grid, .service-list, .content-grid, .faq-list, .recipe-list, .service-cards, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  min-width: 265px;
  flex: 1 1 290px;
  transition: var(--transition), box-shadow 0.3s;
  z-index: 1;
}
.card:hover { box-shadow: 0 8px 32px rgba(39, 94, 110, 0.16), 0 3px 12px #70A37F33; }

.content-grid > div, .feature-grid > div, .service-list > div, .faq-list > div, .recipe-list > div, .service-cards > div {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 18px 20px 18px;
  margin-bottom: 20px;
  min-width: 255px;
  flex: 1 1 280px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition), box-shadow 0.3s;
}
.content-grid > div:hover, .feature-grid > div:hover, .service-list > div:hover, .faq-list > div:hover, .recipe-list > div:hover, .service-cards > div:hover {
  box-shadow: 0 8px 32px #254E5833, 0 3px 12px #FFD86A50;
  transform: scale(1.034) rotate(-2deg);
  cursor: pointer;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-list {
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--testimonial-bg);
  color: var(--card-contrast);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: 0 1px 8px #254E5822;
  min-width: 265px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p { font-size: 1.11rem; }
.testimonial-rating {
  font-size: 1.3rem;
  color: #ffd108;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  line-height: 1;
}
.testimonial-author {
  font-style: italic;
  font-size: 1rem;
  color: var(--primary);
  margin-top: auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.price, .service-cards .price {
  display: inline-block;
  color: #fff;
  background: var(--secondary);
  border-radius: 18px;
  padding: 5px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 6px;
  box-shadow: 0 2px 8px #70A37F33;
  letter-spacing: 1px;
  animation: priceAnim 4s infinite linear alternate;
}
@keyframes priceAnim {
  0% { box-shadow: 0 2px 8px #70A37F33; }
  90% { box-shadow: 0 6px 24px #FFD86A55; }
  100% { box-shadow: 0 4px 12px #FFD86A33; }
}

/* --- FAQ Styles --- */
.faq-list > div {
  cursor: pointer;
  transition: var(--transition);
}
.faq-list > div:hover { background: #fffcb0; }

/* --- General List Styling --- */
ul {
  list-style: disc inside;
  margin: 0 0 16px 0;
}
ul li {
  font-size: 1rem;
  margin-bottom: 0.5em;
}

/* === HEADER AND NAVIGATION ============================================== */
header {
  background: #fff;
  box-shadow: 0 2px 14px #254E5822;
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px 20px;
}
header img {
  height: 40px;
  width: auto;
  min-width: 110px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.07em;
  color: var(--primary);
  padding: 7px 11px;
  border-radius: 14px;
  transition: var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #0e222d;
  text-decoration: none;
}
.cta-button {
  display: inline-block;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 18px;
  padding: 13px 32px;
  margin-left: 22px;
  margin-right: 0;
  margin-bottom: 0;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 8px #70A37F33;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
}
.cta-button.primary {
  background: linear-gradient(95deg, #FFD86A 40%, #70A37F 100%);
  color: #254E58;
  text-shadow: 0 2px 0 #fff9e5;
  animation: pulseCta 2.5s infinite alternate;
}
@keyframes pulseCta {
  0% { box-shadow: 0 2px 12px #ffd86a83; }
  100% { box-shadow: 0 10px 28px #ffd86aab; }
}
.cta-button.secondary {
  background: var(--secondary);
  color: #fff;
  margin-left: 0;
  animation: wiggleBtn 3.5s infinite ease-in-out;
}
@keyframes wiggleBtn {
  0%,100% { transform: rotate(-2deg); }
  10% { transform: rotate(2deg); }
  20% { transform: rotate(-2deg); }
  30% { transform: rotate(2deg); }
  40% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
  60% { transform: rotate(0deg); }
}
.cta-button:hover, .cta-button:focus {
  background: #ffeb9d;
  color: #254E58;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 6px 22px var(--secondary)55, 0 2px 14px #ffd86a80;
}

/* --- Hamburger Mobile Nav --- */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 14px;
  padding: 6px 16px 8px 16px;
  cursor: pointer;
  z-index: 1013;
  transition: var(--transition);
  margin-left: 18px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD86A;
  color: #254E58;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  z-index: 1200;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.66,.01,.17,1.01);
  box-shadow: 0 10px 41px #254E5855;
  padding: 0 30px 0 25px;
}
.mobile-menu.show {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--secondary);
  border: none;
  font-size: 2.3rem;
  font-weight: bold;
  align-self: flex-end;
  margin-top: 16px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:hover { color: #ffbd30; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.18rem;
  color: var(--primary);
  background: #ffd86a19;
  padding: 13px 14px;
  border-radius: 16px;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFD86A;
  color: #254E58;
}

/* === FOOTER ============================================================= */
footer {
  background: #70A37F;
  color: #fff;
  padding: 44px 0 24px 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
}
.footer-nav, .footer-contact, .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav {
  min-width: 180px;
  gap: 9px;
}
.footer-nav a {
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: color 0.19s;
}
.footer-nav a:hover {
  color: #FFD86A;
}
.footer-brand {
  align-items: center;
  gap: 6px;
  min-width: 120px;
}
.footer-brand img { height: 39px; }
.footer-brand div { font-size: 0.97em; color: #e6ffec; opacity: 0.84; }
.footer-contact div a { color: #ffd86a; transition: color 0.19s; }
.footer-contact div a:hover { color: #fff; }

/* === COOKIE CONSENT BANNER ============================================= */
#cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  opacity: 0;
  z-index: 2200;
  width: 98vw;
  max-width: 430px;
  background: #fff;
  color: #254E58;
  box-shadow: 0 -6px 30px #254E5839;
  border-radius: 24px 24px 0 0;
  padding: 28px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-size: 1.05em;
  animation: none;
  transition: var(--transition), opacity 0.21s, transform 0.26s;
}
#cookie-banner.visible {
  transform: translate(-50%, 0);
  opacity: 1;
  animation: popUp 0.38s cubic-bezier(.54,0,.58,1.33);
}
@keyframes popUp {
  from { opacity: 0; transform: translate(-50%, 100%) scale(.98); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1.03); }
}
#cookie-banner strong { color: var(--secondary); }
.cookie-btns {
  display: flex;
  gap: 14px;
  width: 100%;
  margin-top: 5px;
}
#cookie-banner button {
  border: none;
  border-radius: 14px;
  padding: 8px 19px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  cursor: pointer;
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 1px 6px #70A37F29;
}
#cookie-banner button.reject {
  background: #ffd86a;
  color: #254E58;
}
#cookie-banner button.settings {
  background: #254E58;
  color: #fff;
}
#cookie-banner button:hover, #cookie-banner button:focus {
  filter: brightness(1.08);
  transform: scale(1.07);
}

/* --- Cookie Modal Styles --- */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2220;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(77, 81, 85, 0.36);
}
#cookie-modal-overlay.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
#cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 34px #254E5855;
  padding: 32px 22px 24px 24px;
  max-width: 406px;
  width: 92vw;
  z-index: 2221;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popUp2 0.38s cubic-bezier(.54,0,.58,1.33);
}
@keyframes popUp2 {
  from { opacity: 0; transform: translateY(30px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1.03); }
}
#cookie-modal h3 {
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #f0f0ef;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 24px;
  background: #ffd86a;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
  margin-left: 8px;
  border: none;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s, background 0.19s;
  box-shadow: 0 1px 4px #70A37F33;
}
.cookie-toggle:checked:before {
  transform: translateX(14px);
  background: #fffbe9;
}
.cookie-category.label-essential label {
  opacity: 0.62;
}
#cookie-modal-close {
  position: absolute;
  top: 21px;
  right: 21px;
  background: transparent;
  color: var(--secondary);
  border: none;
  font-size: 2.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.17s;
}
#cookie-modal-close:hover { color: #ffd108; }
#cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
#cookie-modal-actions button {
  border-radius: 14px;
  padding: 8px 19px;
  border: none;
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 6px #70A37F29;
}
#cookie-modal-actions button.reject {
  background: #ffd86a;
  color: #254E58;
}
#cookie-modal-actions button.save {
  background: #254E58;
  color: #fff;
}
#cookie-modal-actions button:hover,
#cookie-modal-actions button:focus {
  filter: brightness(1.08);
  transform: scale(1.08);
}

/* === UTILITIES =================== */
.hide { display: none !important; }
.center { text-align: center; }

/* === PLAYFUL/DECORATIVE MICRO-ANIMATIONS =============================== */
.feature-grid img,
.content-grid img,
.service-list img,
.recipe-list img {
  height: 46px;
  width: 46px;
  margin-bottom: 8px;
  border-radius: 12px;
  background: #ffd86a22;
  animation: iconbounce 2.3s infinite alternate cubic-bezier(.81, -.17, .33, 1.13);
}
@keyframes iconbounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-9px) rotate(5deg); }
}

/* ✨ ROUNDED BUBBLES BEHIND CARDS - playful background accent ✨ */
.card::before, .content-grid > div::before, .feature-grid > div::before, .service-list > div::before, .faq-list > div::before, .recipe-list > div::before, .service-cards > div::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -24px; top: -17px;
  width: 68px; height: 68px;
  background: #FFD86A55;
  border-radius: 50%;
  filter: blur(2px) brightness(1.04);
  opacity: 0.45;
  pointer-events: none;
  transition: opacity .26s;
}
.card:hover::before, .content-grid > div:hover::before, .feature-grid > div:hover::before, .service-list > div:hover::before, .faq-list > div:hover::before, .recipe-list > div:hover::before, .service-cards > div:hover::before {
  opacity: 0.78;
}

/* === RESPONSIVE DESIGN (mobile-first) == */
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
  .feature-grid, .service-list, .content-grid, .testimonial-list, .faq-list, .recipe-list, .service-cards {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .main-nav, .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 17px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.22rem; }
  section { padding: 28px 7vw; }
  .feature-grid, .service-list, .content-grid, .testimonial-list, .faq-list, .recipe-list, .service-cards {
    flex-direction: column;
    gap: 14px;
  }
  .content-wrapper { gap: 16px; }
  .main-nav { display: none; }
  .cta-button { margin-left: 0; margin-top: 12px; }
  .mobile-menu-toggle { display: block; margin-left: auto; }
  .text-image-section { flex-direction: column; gap: 20px; }
  header .container { padding: 14px 12px; }
}
@media (max-width: 575px) {
  h1 { font-size: 1.09rem; }
  .container { padding: 0 7px; }
  section { padding: 17px 0; }
  footer { padding: 28px 0 13px 0; }
  #cookie-banner { padding: 20px 9px 14px 13px; font-size: 0.95em; }
}

/* === ACCESSIBILITY & INTERACTIVE STATES ================================ */
:focus { outline: 2px dashed #ffd86a; outline-offset: 2px; }

/* === PRINT STYLES (reduce ink, clarify output) ========================= */
@media print {
  header, footer, .mobile-menu, #cookie-banner, #cookie-modal-overlay {display:none!important;}
  body { background: #fff!important; color: #254E58!important; }
  section { background: none!important; box-shadow: none!important; }
}
