/* CSS Reset & Normalize */
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F6F7F9;
  color: #2A3142;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}

/* Soft Pastel Palette */
:root {
  --primary: #2A3142;
  --secondary: #E2AD99;
  --accent: #F6F7F9;
  --gradient-pink: #FEE4EC;
  --gradient-blue: #E6F1FF;
  --pastel-mint: #D3EFE8;
  --pastel-peach: #FFE8D1;
  --pastel-yellow: #FFF5CA;
  --pastel-lavender: #EDEAFF;
  --pastel-grey: #F2F4F6;
  --white: #FFF;
  --shadow: 0 4px 32px rgba(42,49,66,0.07);
  --border-radius: 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 {
  font-size: 2.375rem; /* 38px */
  margin-bottom: 14px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 14px;
}
h3 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem; /* 18px */
}

p {
  color: #3F4250;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
ul li,
ol li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #4D5389;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.19s;
}
a:hover {
  color: var(--secondary);
}

strong {
  font-weight: 700;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  padding: 0 0 0 0;
  background: none;
  box-shadow: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  min-width: 260px;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  border-radius: 24px;
  background: var(--pastel-mint);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Service Cards, Tips & Outfit Cards */
.services-grid, .tip-card, .outfit-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.services-grid > div, .tip-card, .outfit-card {
  flex: 1 0 260px;
  min-width: 260px;
  background: var(--pastel-peach);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, background 0.18s;
  position: relative;
}
.services-grid > div:hover, .tip-card:hover, .outfit-card:hover {
  background: var(--pastel-yellow);
  box-shadow: 0 8px 36px rgba(42,49,66,0.11);
}

/* CTA & Buttons */
.cta {
  display: inline-block;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  text-align: center;
  padding: 13px 34px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(42,49,66,0.08);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.19s, color 0.17s, box-shadow 0.21s;
}
.cta.primary {
  background: linear-gradient(90deg, var(--pastel-peach), var(--pastel-lavender));
  color: var(--primary);
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, var(--secondary), var(--gradient-pink));
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(42,49,66,0.18);
  outline: none;
}

button, .mobile-menu-close, .mobile-menu-toggle {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  background: none;
  color: var(--primary);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.18s;
}
button:focus {
  outline: 2px solid var(--secondary);
}

/* Main Navigation */
header {
  background: linear-gradient(90deg, var(--gradient-blue) 60%, var(--pastel-peach) 100%);
  box-shadow: 0 2px 12px rgba(42,49,66,0.06);
  position: relative;
  z-index: 2;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 18px 18px 0;
}
.main-nav .logo {
  display: flex;
  align-items: center;
  margin-right: 28px;
}
.main-nav .cta {
  margin-left: auto;
  margin-right: 0;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--pastel-yellow);
  color: var(--secondary);
}

/* Footer */
footer {
  background: var(--accent);
  border-top: 1px solid var(--pastel-peach);
  padding: 40px 18px 24px 18px;
  margin-top: 48px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--primary);
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
}
.footer-nav a:hover {
  background: var(--pastel-peach);
  color: var(--secondary);
}
.brand-footer {
  display: flex;
  justify-content: center;
  margin: 12px 0;
}
.brand-footer img {
  height: 40px;
  width: auto;
}
.footer-contact {
  font-size: 0.96rem;
  color: #7C8CA2;
  text-align: center;
  margin-top: 8px;
}

/* Lists with Icons */
ul li img {
  height: 21px;
  width: 21px;
  margin-right: 9px;
}

/* Special Cards & Elements */
.tip-card, .outfit-card {
  background: var(--pastel-lavender);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  padding: 28px 16px;
}
.tip-card:hover, .outfit-card:hover {
  background: var(--pastel-yellow);
}

.testimonial-card {
  background: var(--pastel-mint);
  color: var(--primary);
  border-left: 7px solid var(--secondary);
  font-size: 1.11rem;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.19s, background 0.18s;
}
.testimonial-card:hover {
  background: var(--pastel-peach);
  box-shadow: 0 8px 36px rgba(42,49,66,0.11);
}
.testimonial-card p {
  font-style: italic;
  color: #243251;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: var(--primary);
  font-weight: 700;
}
.testimonial-card div {
  font-size: .99rem;
  color: #5A616D;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 8900;
  background: linear-gradient(90deg, var(--pastel-peach), var(--pastel-mint));
  color: var(--primary);
  box-shadow: 0 -2px 16px rgba(42,49,66,0.11);
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  transition: transform 0.35s cubic-bezier(.86,0,.07,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cookie-btns button {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 18px;
  border-radius: 17px;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(42,49,66,0.12);
  border: none;
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.16s, color 0.15s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--white);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed; left:0; right:0; top:0; bottom:0;
  background: rgba(42,49,66, 0.32);
  z-index: 9910;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinbg .21s;
}
@keyframes fadeinbg {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  padding: 32px 24px 21px 24px;
  border-radius: 23px;
  max-width: 370px;
  box-shadow: 0 8px 28px rgba(42,49,66,0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.05rem;
  animation: modal-slidein .27s cubic-bezier(.86, 0, .07, 1);
}
@keyframes modal-slidein {
  from { transform: translateY(40px); opacity: 0;} to { transform: none; opacity:1; }
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: var(--pastel-grey);
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  margin-left: 8px;
}
.cookie-toggle.enabled {
  background: var(--secondary);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px; top:2px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 2px 4px rgba(42,49,66,0.11);
}
.cookie-toggle.enabled::before {
  transform: translateX(16px);
}
.cookie-category .cookie-toggle[aria-disabled='true'], .cookie-toggle[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 17px;
  padding: 7px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--primary);
  color: var(--white);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 17px;
  z-index: 113;
  background: var(--secondary);
  height: 44px;
  width: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(42,49,66,0.10);
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--white);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom:0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  background: linear-gradient(90deg, var(--pastel-peach) 32%, var(--pastel-lavender) 100%);
  z-index: 1111;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.86,0,.07,1);
  box-shadow: -4px 0 26px rgba(42,49,66,0.06);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 30px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1202;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(42,49,66,0.10);
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--white);
}
.mobile-nav {
  margin: 90px auto 0 auto;
  width: 92vw;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: flex-start;
}
.mobile-nav a {
  padding: 14px 11px;
  border-radius: 10px;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  width: 100%;
  background: none;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}

@media (max-width: 1024px) {
  .container {
    max-width: 900px;
  }
  .main-nav {
    gap: 13px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 720px;
  }
  .main-nav {
    gap: 8px;
  }
  .content-wrapper {
    padding: 26px 12px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 96vw;
    padding: 0 7px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-nav {
    gap: 11px;
  }
  .content-wrapper {
    padding: 18px 5px;
    margin-bottom: 32px;
    gap: 18px;
  }
  .section {
    margin-bottom: 36px;
    padding: 20px 6px;
    gap: 13px;
  }
  .card, .services-grid > div {
    min-width: 98vw;
    padding: 21px 7px;
    font-size: .99rem;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 14px 9px;
    font-size: 1rem;
  }
  .card-container, .content-grid, .services-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .mobile-nav {
    max-width: 95vw;
    margin-top: 98px;
  }
  .tip-card, .outfit-card {
    min-width: 96vw;
    padding: 16px 6px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
  .container {
    padding: 0 2vw;
  }
}

/* Subtle Animations */
h1, h2, h3, h4, p, .cta, .services-grid > div, .card, .testimonial-card {
  transition: box-shadow 0.19s, background 0.19s, color 0.17s, transform 0.18s;
}
.cta:active, button:active {
  transform: scale(.97);
}

/* Custom Scrollbar for style touch */
body::-webkit-scrollbar {
  width: 10px;
  background: var(--accent);
}
body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 12px;
}

/* Visually hidden (for accessibility: e.g., cookie essential always enabled checkbox) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
  border: 0; padding: 0; margin: 0;
}

/* Utility */
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.align-center { align-items: center; }

/* END CSS */
