/* ========================================================== */
/*                GENTLE VENTURES – STYLE.CSS                 */
/*             Soft Pastel Flex-only Responsive CSS            */
/* ========================================================== */

/* ===== 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; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { border: 0; max-width: 100%; display: block; }
:focus { outline: 2px solid #b9d7ea; outline-offset: 2px; }

/* ===== CSS VARIABLES (with fallback) ===== */
:root {
  --color-primary: #234973;
  --color-secondary: #f6f9fa;
  --color-accent: #F29F05;
  --color-bg: #f8f8fc;
  --color-pastel-blue: #eaf2fa;
  --color-pastel-lilac: #f7eafe;
  --color-pastel-mint: #e9f9f1;
  --color-pastel-yellow: #fff9ea;
  --color-pastel-orange: #ffeede;
  --color-pastel-green: #e7fae9;
  --color-pastel-pink: #fcebf1;
  --color-text-dark: #232336;
  --color-text-light: #5c5a70;
  --color-card: #ffffff;
}

/* ========== TYPOGRAPHY ========== */
html {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: var(--color-text-dark);
  background: var(--color-bg);
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1.5px;
  color: var(--color-primary);
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  color: var(--color-primary);
}
.lead {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 22px;
}
p, ul li, .text-section strong,
.footer-contact span, .footer-bottom {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.7;
}
.text-center { text-align: center; }

/* ========== LAYOUT CONTAINERS ========== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper,
.content-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* To support space-between in content-grid if used */
.content-grid { justify-content: space-between; }

@media (min-width: 769px) {
  .content-wrapper, .content-grid {
    flex-direction: row;
    gap: 32px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-secondary);
  border-radius: 28px;
  box-shadow: 0 7px 32px 0 rgba(190, 207, 237, 0.09);
}

/* ======= FLEX PATTERNS ======= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: var(--color-card);
  box-shadow: 0 2px 10px 0 rgba(190,207,237,0.13);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: var(--color-pastel-lilac);
  box-shadow: 0 6px 32px 0 rgba(140, 170, 209, 0.11);
  margin-bottom: 20px;
  min-width: 280px;
  max-width: 520px;
}
.testimonial-card p {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-primary);
  font-weight: 600;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: linear-gradient(90deg, #f7eafe 0%, #eaf2fa 100%);
  box-shadow: 0 3px 18px 0 rgba(140,170,209,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  gap: 30px;
}
header a img {
  height: 48px;
  transition: filter 0.2s;
}
header a img:hover {
  filter: brightness(0.92) saturate(0.99);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 12px;
  padding: 8px 15px;
  transition: background 0.18s, color 0.18s;
  color: #232336;
  background: transparent;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-pastel-blue);
  color: var(--color-primary);
}
.main-nav .cta-primary {
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 rgba(242,159,5,0.08);
  transition: background 0.18s;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: #efa400;
}
/* Mobile burger */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-pastel-blue);
  border: none;
  font-size: 2rem;
  border-radius: 10px;
  padding: 8px 12px;
  margin-left: 10px;
  color: var(--color-primary);
  cursor: pointer;
  transition: background 0.18s;
  z-index: 1002;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: #fff;
}
@media (min-width: 1000px) {
  .mobile-menu-toggle {
    display: none;
  }
}
/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  z-index: 9999;
  background: rgba(233, 249, 241, 0.82);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.87,.02,.27,1);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 32px 30px 0 0;
  font-size: 2.2rem;
  background: var(--color-pastel-pink);
  border: none;
  color: var(--color-primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.14s;
  z-index: 1001;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 48px 0 0 0;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--color-primary);
  background: var(--color-pastel-blue);
  padding: 16px 38px;
  margin: 0 0 3px 0;
  border-radius: 16px;
  transition: background 0.17s, color 0.17s;
  text-align: center;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
@media (min-width: 1000px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav { display: flex !important; }
}
@media (max-width: 999px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu {
    display: flex;
  }
}

/* ========== HERO/SECTION BACKGROUNDS ========== */
section {
  background: var(--color-pastel-blue);
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 6px 24px 0 rgba(140,170,209,0.12);
}
section:nth-child(even) {
  background: var(--color-pastel-lilac);
}
section.cta-section, .section.cta-section {
  background: var(--color-pastel-yellow);
}

/* ========== UL/LIST STYLES ========== */
ul {
  padding-left: 0;
  margin: 0 0 0 0;
}
ul li {
  padding: 12px 0 12px 32px;
  margin-bottom: 10px;
  position: relative;
}
ul li:last-child { margin-bottom: 0; }
ul li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 19px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}
section ul li:before {
  background: var(--color-primary);
  opacity: 0.23;
}
.feature-list li:before {
  background: var(--color-accent) !important;
}

/* ========== CARDS & FEATURES ========== */
.card {
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(140,170,209,0.12);
  padding: 28px 22px;
  transition: box-shadow 0.21s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px 0 rgba(140,170,209,0.17);
  transform: translateY(-4px) scale(1.015);
}
.card-container .card {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 380px;
}

/* ========== BUTTONS & CTAs ========== */
.cta-primary {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 17px;
  padding: 14px 36px;
  box-shadow: 0 2px 10px 0 rgba(242,159,5,0.07);
  text-align: center;
  transition: background 0.17s, box-shadow 0.22s, transform 0.15s;
  cursor: pointer;
  margin-top: 18px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #e58d00;
  box-shadow: 0 8px 20px 0 rgba(242,159,5,0.19);
  transform: translateY(-2px) scale(1.02);
  color: #fff;
}
.read-link {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.08em;
  transition: color 0.17s;
}
.read-link:hover, .read-link:focus {
  color: var(--color-accent);
}

/* ========== TEXT SECTIONS ========== */
.text-section {
  background: var(--color-pastel-mint);
  padding: 20px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 1px 9px 0 rgba(140,170,209,0.06);
}
.text-section img, .footer-contact img {
  display: inline-block;
  width: 22px; height: 22px;
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0.80;
}
.text-section strong {
  font-weight: 600;
  color: var(--color-primary);
}

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(90deg, #f7eafe 5%, #eaf2fa 95%);
  padding: 36px 0 18px 0;
  box-shadow: 0 -3px 16px 0 rgba(140,170,209,0.05);
  margin-top: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 18px;
  border-radius: 10px;
  transition: background 0.17s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-pastel-blue);
  color: var(--color-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 19px;
}
.footer-bottom {
  text-align: center;
  font-size: 0.98rem;
  color: #919faf;
  opacity: 0.74;
  padding-top: 12px;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 11000;
  background: var(--color-pastel-yellow);
  box-shadow: 0 -1px 18px 0 rgba(242,159,5,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding: 24px 16px 22px 16px;
  border-radius: 22px 22px 0 0;
  transition: transform 0.26s cubic-bezier(.87,.02,.27,1), opacity 0.22s;
  transform: translateY(0);
  opacity: 1;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-banner.hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: var(--color-text-dark);
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.btn-cookie {
  padding: 10px 25px;
  border-radius: 14px;
  border: none;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  transition: background 0.16s, transform 0.16s;
  font-size: 1rem;
}
.btn-cookie.settings {
  background: var(--color-pastel-blue);
  color: var(--color-primary);
}
.btn-cookie.settings:hover,
.btn-cookie.settings:focus {
  background: var(--color-accent);
  color: #fff;
}
.btn-cookie.reject {
  background: var(--color-pastel-lilac);
  color: var(--color-primary);
}
.btn-cookie.reject:hover,
.btn-cookie.reject:focus {
  background: #e58d00;
  color: #fff;
}
.btn-cookie.accept:hover,
.btn-cookie.accept:focus {
  background: #e58d00;
  color: #fff;
  transform: scale(1.037);
}

/* ========== COOKIE SETTINGS MODAL ========== */
.cookie-modal-overlay {
  display: none; /* toggled via JS */
  position: fixed;
  z-index: 12000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(36,81,115,0.28);
  animation: cookie-fade-in 0.20s;
}
.cookie-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes cookie-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 9px 48px 0 rgba(36,81,115,0.18);
  padding: 38px 22px 28px 22px;
  min-width: 302px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--color-text-dark);
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.27rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-toggle {
  width: 34px;
  height: 20px;
  border-radius: 12px;
  background: var(--color-pastel-blue);
  position: relative;
  outline: none;
  border: 1px solid #b0c8ef;
  margin-left: 7px;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle[data-on="true"] {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.cookie-toggle-knob {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(36,81,115,0.14);
  transition: left 0.2s;
}
.cookie-toggle[data-on="true"] .cookie-toggle-knob {
  left: 17px;
}
.cookie-modal .btn-cookie {
  margin-top: 18px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--color-pastel-pink);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.13s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ========== RESPONSIVE ADAPTATION ========== */
@media (max-width: 1000px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  section, .section {
    padding: 20px 6px;
    border-radius: 16px;
  }
  .footer-contact, .footer-nav { gap: 12px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.37rem; }
  .content-wrapper, .content-grid, .text-image-section {
    flex-direction: column !important;
    gap: 20px;
  }
  .testimonial-card {
    min-width: 0; max-width: 95vw;
    padding: 15px;
  }
  .footer-contact span,
  .footer-bottom {
    font-size: 0.94rem;
  }
  .main-nav { display: none !important; }
}
@media (max-width: 520px) {
  .container { padding: 0 4px; }
  section, .section { padding: 10px 2px; }
}

/* ========== MICRO-ANIMATIONS ========== */
.cta-primary, .btn-cookie, .footer-nav a, .main-nav a, .mobile-nav a {
  transition: background 0.16s, color 0.16s, box-shadow 0.20s, transform 0.18s;
}
.testimonial-card {
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 16px 48px 0 rgba(140,170,209,0.21);
  transform: scale(1.017);
}
.card, .feature-item {
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 8px 28px 0 rgba(140,170,209,0.17);
  transform: scale(1.02);
}

/* ========== ACCESSIBILITY & MISC ========== */
::-webkit-scrollbar {
  background-color: var(--color-pastel-mint);
  width: 11px;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 10px;
}

/* ========== SPECIAL SECTION SPACING ========== */
/* Used in pastels and for extra breathing room */
section > .container,
.section > .container {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ========== OVERRIDES & FIXES ========== */
@media (max-width:550px) {
  .footer-contact { font-size: 0.92rem; }
  .footer-bottom { font-size: 0.92rem; }
  .footer-contact span { white-space: normal; }
}

/* ========== CUSTOM UTILITIES ========== */
.mt-3 { margin-top: 32px; }
.mb-3 { margin-bottom: 32px; }
.gap-2 { gap: 20px; }

/* ========== END GENTLE VENTURES MAIN CSS ========== */
