/* ==== CSS RESET & NORMALIZE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F5F8FA;
  color: #21243D;
  line-height: 1.6;
  min-height: 100vh;
}
img,svg {
  max-width: 100%;
  height: auto;
}
ul,ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #F2777A;
  outline-offset: 2px;
}

/* ==== BRAND VARIABLES ==== */
:root {
  --color-primary: #21243D;
  --color-secondary: #F5F8FA;
  --color-accent: #F2777A;
  --color-dark: #21243D;
  --color-light: #fff;
  --color-shadow: rgba(33, 36, 61, 0.07);
  --color-border: #E0E4ED;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ==== TYPOGRAPHY ==== */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-primary);
  letter-spacing: -1px;
  font-weight: 800;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: -0.5px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.15px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
}
p, li, span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
}
strong {
  font-weight: 700;
  color: var(--color-accent);
}
.text-section p,
.text-section ul {
  margin-bottom: 18px;
}

/* ==== CONTAINER & SECTION LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light);
  border-radius: 28px;
  box-shadow: 0 8px 32px var(--color-shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ==== HERO ==== */
.hero {
  background: linear-gradient(90deg, #ffd6e0 0%, #e0e7ff 100%);
  padding: 64px 0 36px 0;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .text-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero .btn-primary {
  margin-top: 24px;
}

/* ==== FEATURES ==== */
.features, .services, .about, .cta, .testimonials, .contact {
  margin-bottom: 60px;
}
.features .content-wrapper, .services .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
.features ul,
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 12px;
}
.features ul li, .services ul li {
  flex: 1 1 240px;
  background: var(--color-light);
  border-radius: 22px;
  box-shadow: 0 4px 18px var(--color-shadow);
  padding: 28px 20px 20px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.22s cubic-bezier(.4,1,.7,1), box-shadow 0.22s;
}
.features ul li img {
  margin-bottom: 14px;
  width: 44px;
  height: 44px;
}
.features ul li:hover, .services ul li:hover {
  transform: translateY(-6px) scale(1.03) rotate(-0.5deg);
  box-shadow: 0 10px 28px rgba(242,119,122,0.18);
}

/* ==== TESTIMONIALS ==== */
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.testimonial-card {
  background: #fffbe7;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(242,119,122,0.13), 0 1.5px 0 #ffe3ea;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-height: 100px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card p {
  color: #21243D;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card strong {
  font-size: 0.95rem;
  color: #F2777A;
  font-family: var(--font-display);
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(242,119,122,0.19), 0 3px 0 #fbdceb;
  transform: scale(1.018);
}

/* ==== CTA ==== */
.cta {
  background: #E0E7FF;
  border-radius: 38px;
  box-shadow: 0 5px 16px rgba(44, 44, 170, 0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
  text-align: center;
}
.cta .btn-primary {
  margin-top: 18px;
}

/* ==== CARD CONTAINERS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-light);
  border-radius: 14px;
  box-shadow: 0 3px 16px var(--color-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(242,119,122,0.14);
  transform: scale(1.025) rotate(-0.75deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 18px;
  gap: 10px;
}

.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;
}

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

/* ==== BLOG CATEGORIES FILTER ==== */
.categories-filter {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.categories-filter span {
  font-weight: bold;
  color: var(--color-accent);
}
.categories-filter a {
  color: var(--color-primary);
  background: #FFD6E0;
  border-radius: 5px;
  padding: 5px 13px;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.categories-filter a:hover {
  background: var(--color-accent);
  color: var(--color-light);
}

.season-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 32px 0;
}
.season-grid > div {
  flex: 1 1 200px;
  background: #e5f7ff;
  border-radius: 16px;
  padding: 22px 16px;
  min-width: 180px;
  text-align: left;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(33,36,61,0.04);
  transition: background 0.2s, box-shadow 0.3s, transform 0.18s;
}
.season-grid > div:hover {
  background: #ffd6e0;
  box-shadow: 0 8px 28px rgba(242,119,122,0.14);
  transform: scale(1.029);
}

/* ==== HEADER & NAVIGATION ==== */
header {
  width: 100%;
  background: var(--color-light);
  box-shadow: 0 0.5px 0 #e9e9f0;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding-top: 8px;
  padding-bottom: 8px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
}
header nav a {
  padding: 6px 10px;
  border-radius: 7px;
  color: var(--color-primary);
  font-weight: 500;
  transition: background 0.19s, color 0.19s;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
header nav a:hover,
header nav a:focus {
  background: #ffd6e0;
  color: #d72643;
}
header nav .btn-primary {
  margin-left: 12px;
}
/* Hamburger Button */
.mobile-menu-toggle {
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  margin-left: 16px;
  z-index: 120;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #D72643;
}
/* Hide mobile menu toggle on desktop */
@media (min-width: 1000px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,36,61,0.97);
  z-index: 110;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(-100vw);
  transition: transform 0.44s cubic-bezier(.64,1,.64,1);
  padding: 0 18px 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 26px 18px 16px 0;
  font-size: 2.4rem;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  z-index:120;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 86vw;
  max-width: 400px;
  margin-left: 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 10px 16px 10px 0;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-light);
}
@media (min-width: 1000px) {
  .mobile-menu {
    display: none !important;
  }
  header nav {
    display: flex;
  }
}
@media (max-width: 999px) {
  header nav {
    display: none;
  }
}

/* ==== BUTTONS ==== */
.btn-primary {
  background: var(--color-accent);
  color: var(--color-light);
  border: none;
  border-radius: 10px;
  padding: 13px 34px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 11px rgba(242,119,122,0.12);
  cursor: pointer;
  margin: 0 0;
  outline: none;
  transition: background 0.19s, color 0.18s, box-shadow 0.18s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #D72643;
  color: #fffbe7;
  box-shadow: 0 8px 20px rgba(242,119,122,0.26);
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  background: var(--color-light);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 8px;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border 0.16s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #ffd6e0;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

/* ==== FOOTER ==== */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  box-shadow: 0 -3px 20px var(--color-shadow);
  padding-top: 40px;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.footer-top nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-top nav a {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1rem;
  opacity: 0.82;
  transition: color 0.16s, opacity 0.14s;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  color: var(--color-accent);
  opacity: 1;
}
.footer-bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.contact-info p {
  color: #fff;
  font-size: 1rem;
  opacity: 0.93;
  display: flex;
  align-items: center;
  gap: 9px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.social-links a img {
  filter: brightness(92%) contrast(108%);
  transition: filter 0.2s, transform 0.19s;
  width: 31px;
  height: 31px;
}
.social-links a:hover img {
  filter: brightness(108%) contrast(120%) drop-shadow(0 0 1.5px #F2777A);
  transform: translateY(-2px) scale(1.1) rotate(-7deg);
}
.copyright {
  color: #c6ccdd;
  font-size: 0.97rem;
  text-align: left;
  padding: 8px 0 18px 0;
  opacity: 0.87;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #21243D;
  color: #fff;
  padding: 24px 20px 24px 24px;
  box-shadow: 0 -2px 22px rgba(33,36,61,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  z-index: 250;
  border-top-right-radius: 32px;
  border-top-left-radius: 32px;
  animation: cookie-slide-in 0.55s cubic-bezier(.46,1,.7,1) both;
}
@keyframes cookie-slide-in {
 from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.cookie-btns {
  display: flex;
  gap: 18px;
}
.cookie-accept,
.cookie-reject {
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-display);
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-accept:hover,
.cookie-accept:focus {
  background: #af3e4c;
}
.cookie-reject {
  background: #111325;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cookie-reject:hover,
.cookie-reject:focus {
  background: #22243b;
  color: #fff;
}
.cookie-settings {
  padding: 10px 18px;
  background: #ffd6e0;
  border: none;
  border-radius: 8px;
  color: #D72643;
  font-family: var(--font-display);
  font-weight: 700;
  margin-left: 6px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-settings:hover,
.cookie-settings:focus {
  background: #fff;
  color: #af3e4c;
  border: 1px solid #F2777A;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 300;
  inset: 0;
  background: rgba(33,36,61,0.72);
  justify-content: center;
  align-items: center;
  animation: cookie-fade-in .28s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  padding: 35px 24px 17px 24px;
  max-width: 390px;
  width: 98vw;
  box-shadow: 0 10px 38px rgba(33,36,61,0.13);
  animation: scale-in 0.39s cubic-bezier(.38,1,.7,1);
}
@keyframes scale-in {
  from { transform: scale(0.84); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.30rem;
  color: var(--color-accent);
  margin-bottom: 18px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 10px 0;
  border-bottom: 1px solid #F2777A;
}
.cookie-modal .category:last-child {
  border-bottom: 0;
}
.cookie-modal .category label {
  font-size: 1.08rem;
  color: var(--color-primary);
  font-family: var(--font-display);
}
/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 37px;
  height: 20px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  border-radius: 20px;
  transition: background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background-color: #F2777A;
}
.toggle-slider:before {
  position: absolute;
  content: '';
  height: 15px;
  width: 15px;
  left: 2.5px;
  bottom: 2.5px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(242,119,122,0.14);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(17px);
}
.cookie-modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
/* Essential cookies can't be toggled */
.category.essential label {
  color: #c0c1c7;
  font-style: italic;
}
.category.essential .toggle-switch{
  opacity: 0.5;
  pointer-events: none;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 768px) {
  h1, .hero h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.15rem;
    margin-bottom: 18px;
  }
  .container {
    padding: 0 8px;
  }
  .section, .about, .cta, .testimonials, .features, .services, .contact {
    padding: 24px 5px;
    margin-bottom: 34px;
    border-radius: 14px;
  }
  .features ul, .services ul {
    gap: 14px;
  }
  .features ul li, .services ul li {
    padding: 18px 8px;
    border-radius: 11px;
    min-width: unset;
  }
  .card-container {
    gap: 12px;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .social-links a img {
    width: 28px;
    height: 28px;
  }
  .copyright {
    text-align: left;
    padding-bottom: 12px;
  }
  .hero {
    padding: 36px 0 18px 0;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }
  .text-image-section, .season-grid, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .season-grid > div {
    min-width: 120px;
    padding: 13px 8px;
  }
}

/* Custom Artistic Touches */
.features ul li, .services ul li, .season-grid > div, .card {
  border: 2.4px dashed #ffd6e0;
  position: relative;
  background-clip: padding-box;
}
.features ul li:after, .services ul li:after {
  content: '';
  display: block;
  position: absolute;
  top: -12px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffd6e0;
  opacity: 0.25;
  z-index: 1;
}
.features ul li:nth-child(2):after,
.season-grid > div:nth-child(even):after {
  background: #e0e7ff;
}
.features ul li:nth-child(3):after {
  background: #e5f7ff;
}
.season-grid > div:after {
  left: unset;
  right: -14px;
  bottom: -10px;
  top: unset;
  width: 31px;
  height: 31px;
}

/* Micro-Interactions */
a, .btn-primary, .btn-secondary, .categories-filter a {
  transition: background 0.16s, color 0.16s, box-shadow 0.22s, transform 0.19s;
}

/* Selection color */
::selection {
  background: #FFD6E0;
  color: #21243D;
}

/* Hide scrollbars on mobile-menu */
.mobile-menu::-webkit-scrollbar {
  display: none;
}
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}