/* --- 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.6;
  background: #F5F7FA;
  color: #202634;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
  box-sizing: inherit;
}

a {
  color: #7BAEC8;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #202634;
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul,
ol {
  margin-left: 1.5em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #202634;
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 700;
}

h1 {font-size: 2.5rem; margin-bottom: 20px;}
h2 {font-size: 2rem; margin-bottom: 18px;}
h3 {font-size: 1.4rem; margin-bottom: 10px;}
h4 {font-size: 1.1rem; margin-bottom: 8px;}
p, ul, ol {margin-bottom: 14px;}

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

body {
  background: linear-gradient(120deg, #F5F7FA 0%, #7BAEC8 100%);
  /* fallback: solid color for background-compatibility */
  background-color: #F5F7FA;
}

/* ----- MAIN LAYOUT ----- */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (max-width: 700px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 16px;
  }
}

/* ----- HEADER ----- */
header {
  width: 100%;
  background: #fff;
  position: relative;
  box-shadow: 0 2px 16px rgba(32,38,52,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 14px 0;
  z-index: 100;
}
header > a img {
  height: 42px;
  margin-left: 24px;
}
.main-nav {
  display: flex;
  gap: 24px;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #202634;
  padding: 8px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #7BAEC8;
  color: #fff;
}

.cta-btn {
  background: linear-gradient(90deg, #7BAEC8 0%, #202634 100%);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 1.12rem;
  border: none;
  box-shadow: 0 4px 20px rgba(32,38,52,0.07);
  cursor: pointer;
  margin: 0 24px 0 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #202634 0%, #7BAEC8 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(32,38,52,0.16);
  transform: translateY(-2px) scale(1.04);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  display: none;
  margin-right: 18px;
  color: #7BAEC8;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 210;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #202634;
}

/* ----- MOBILE HEADER NAV ----- */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 0;
  background: #f5f7fa;
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.85,0,0.15,1);
  box-shadow: -8px 0 24px rgba(32,38,52,0.11);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #7BAEC8;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 16px 20px 0 0;
  cursor: pointer;
  transition: color 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #202634;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 52px 0 0 32px;
}
.mobile-nav a {
  padding: 8px 0;
  color: #202634;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 4px;
  width: 100%;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #7BAEC8;
  color: #fff !important;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
    margin-left: 10px;
  }
  .cta-btn {
    padding: 10px 20px;
    font-size: 1rem;
    margin: 0 10px 0 0;
  }
  header > a img {
    margin-left: 12px;
    height: 38px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ----- SECTION STYLES (Flex & Spacing) ----- */
.section,
.hero,
.features,
.highlights,
.services,
.trend-overview,
.outfit-chooser,
.cta,
.contact,
.blog-list,
.confirmation,
.legal,
.about {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(32,38,52,0.055);
}

@media (max-width: 700px) {
  .section,
  .hero,
  .features,
  .highlights,
  .services,
  .trend-overview,
  .outfit-chooser,
  .cta,
  .contact,
  .blog-list,
  .confirmation,
  .legal,
  .about {
    padding: 26px 6px;
    border-radius: 9px;
    margin-bottom: 38px;
  }
}

/* -------- HERO --------- */
.hero {
  background: linear-gradient(100deg, #7BAEC8 0%, #F5F7FA 100%);
  box-shadow: 0 4px 32px rgba(32,38,52,0.09);
  color: #202634;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  margin-top: 28px;
}
.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 10px;
  color: #202634;
}
.hero .subheadline {
  font-size: 1.22rem;
  color: #34556A;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero {
    min-height: 180px;
    margin-top: 18px;
  }
}

/* FEATURE GRID & CARDS --------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 30px 0 10px 0;
}
.feature-grid > div {
  background: #f5f7fa;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(32,38,52,0.07);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  padding: 28px 22px 18px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.18s;
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 22px rgba(32,38,52,0.14);
  transform: translateY(-6px) scale(1.02);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 2px;
}
.feature-grid h3 {
  margin: 0 0 6px 0;
  color: #202634;
}

/*  --------- .card-container & .card -------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(32,38,52,0.07);
  padding: 22px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 18px rgba(32,38,52,0.14);
  transform: translateY(-4px) scale(1.01);
}

/* -------- HIGHLIGHTS & OTHERS ------ */
.highlights ul,
.trend-overview ul,
.outfit-chooser ul,
.features ul,
.services ul,
.about ul,
.legal ul,
.blog-categories ul {
  margin-bottom: 18px;
  margin-top: 4px;
  padding-left: 24px;
  font-size: 1rem;
}
.highlights ul li,
.trend-overview ul li,
.outfit-chooser ul li,
.features ul li,
.services ul li,
.about ul li,
.legal ul li,
.blog-categories ul li {
  margin-bottom: 10px;
}

/* ------- BLOG LIST ENTRIES --------- */
.blog-entry {
  background: #f5f7fa;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(32,38,52,0.08);
  padding: 22px 22px 16px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.blog-entry:hover {
  box-shadow: 0 6px 18px rgba(32,38,52,0.12);
  transform: translateY(-2px) scale(1.015);
}
.blog-entry h3 {
  margin-bottom: 8px;
}
.blog-entry a {
  color: #202634;
  font-weight: 500;
  margin-top: 8px;
  display: inline-block;
  transition: color 0.18s;
}
.blog-entry a:hover {
  color: #7BAEC8;
  text-decoration: underline;
}

.blog-categories {
  margin-top: 16px;
}

/* ------- CTA SECTION ------- */
.cta {
  background: linear-gradient(92deg, #202634 0%, #7BAEC8 100%);
  color: #fff;
  text-align: left;
  box-shadow: 0 6px 24px rgba(32,38,52,.11);
}
.cta h2,
.cta p {
  color: #fff;
}

/* ----- TESTIMONIALS ----- */
.testimonials {
  background: #fff;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f5f7fa;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(32,38,52,0.09);
  margin-bottom: 20px;
  margin-top: 6px;
  color: #202634;
  font-size: 1.06rem;
  transition: box-shadow 0.17s, transform 0.12s;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: #34556A;
  margin-left: 2px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(32,38,52,0.14);
  background: #EAF4FA;
  transform: scale(1.01);
}

/* ---- FOOTER ---- */
footer {
  background: #202634;
  color: #fff;
  padding: 36px 0 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
  font-size: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
}
.footer-brand img {
  width: 36px;
  height: 36px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin-top: 6px;
}
.footer-nav a {
  color: #7BAEC8;
  font-size: 1rem;
  transition: color 0.18s;
  border-radius: 5px;
  padding: 2px 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: #7BAEC8;
}
.footer-contact {
  font-size: 0.96rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 2px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
}
@media (max-width: 900px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 30px 0;
  }
  .footer-brand {
    margin-bottom: 8px;
  }
  .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 650px) {
  footer {
    font-size: 0.97rem;
    padding: 20px 0 14px 0;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ----- TYPOGRAPHY ------*/
.text-section {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #202634;
  background: none;
  padding: 0;
}
.text-section h2, .text-section h3, .text-section h4 {
  color: #202634;
}
.text-section b {
  font-weight: bold;
}

/* ----- FLEX SPACING/ALIGNMENT TEMPLATE CLASSES ----- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
  .content-grid {
    gap: 12px;
  }
  .text-image-section {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

/* ---- BUTTONS & MICROS ---- */
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.19s, color 0.19s, transform 0.17s;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #7BAEC8;
  outline-offset: 2px;
}

/* ---- FORMS ---- */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1.5px solid #7BAEC8;
  padding: 8px 14px;
  background: #f5f7fa;
  margin-bottom: 18px;
  transition: border 0.19s;
}
input:focus, select:focus, textarea:focus {
  border-color: #202634;
  outline: none;
}

/* ==== COOKIE BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #202634;
  color: #fff;
  z-index: 1999;
  padding: 24px 10px 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  box-shadow: 0 -5px 30px rgba(32,38,52,0.15);
  transition: transform 0.28s cubic-bezier(0.85,0,0.15,1);
  font-size: 1rem;
}
.cookie-banner[aria-hidden='true']{
  transform: translateY(140%);
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 2px;
  flex-wrap: wrap;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  background: #7BAEC8;
  color: #202634;
  border: none;
  padding: 10px 22px;
  border-radius: 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  margin: 0 2px;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-btns button:hover,
.cookie-banner .cookie-btns button:focus {
  background: #fff;
  color: #7BAEC8;
}
.cookie-banner .cookie-btns .reject {
  background: none;
  border: 1.4px solid #7BAEC8;
  color: #7BAEC8;
}
.cookie-banner .cookie-btns .reject:hover {
  background: #fff;
  color: #202634;
}
.cookie-banner .cookie-btns .cookie-settings-btn {
  background: #fff;
  color: #202634;
  border: 1.4px solid #7BAEC8;
  margin-left: 0;
  font-size: 1rem;
}
.cookie-banner .cookie-btns .cookie-settings-btn:hover {
  background: #7BAEC8;
  color: #fff;
}

@media (max-width: 650px) {
  .cookie-banner {
    font-size: 0.95rem;
    padding: 18px 4px 14px 4px;
  }
  .cookie-banner .cookie-btns {
    gap: 11px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-background {
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(32,38,52,0.30);
  z-index: 2002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s cubic-bezier(0.85,0,0.15,1);
}
.cookie-modal {
  background: #fff;
  color: #202634;
  border-radius: 15px;
  max-width: 410px;
  width: 92vw;
  padding: 32px 22px 24px 22px;
  box-shadow: 0 16px 48px rgba(32,38,52,0.17);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  font-size: 1.02rem;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 18px;
  border: none;
  background: none;
  color: #7BAEC8;
  font-size: 1.45rem;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: #202634;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-weight: 500;
  color: #202634;
}
.cookie-category input[type=checkbox]:disabled + label {
  color: #aaa;
  opacity: 0.55;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-actions button {
  padding: 8px 24px;
  border-radius: 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  background: #7BAEC8;
  color: #202634;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-actions button:hover {
  background: #202634;
  color: #fff;
}

/* ---- UTILITIES ---- */
.mt-0 {margin-top: 0 !important;}
.mb-0 {margin-bottom: 0 !important;}
.gap-8 {gap: 8px !important;}
.gap-16 {gap: 16px !important;}
.gap-24 {gap: 24px !important;}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 9px;
  background: #EAF4FA;
}
::-webkit-scrollbar-thumb {
  background: #7BAEC8;
  border-radius: 5px;
}

/* ---- SELECTION COLOR ---- */
::selection {
  background: #7BAEC8;
  color: #fff;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeIn {
  from {opacity: 0;transform: translateY(8px);}
  to {opacity:1;transform:translateY(0);}
}
.section,.hero,.features,.highlights,.testimonial-card,.services,.trend-overview,.outfit-chooser,.cta,.contact,.blog-list,.confirmation,.legal,.about {
  animation: fadeIn 0.7s cubic-bezier(0.85,0,0.15,1);
}

/* ---- PRINT ------ */
@media print {
  header,.mobile-menu,.cookie-banner,.cookie-modal-background,footer {display:none;}
  body {background:#fff;}
}
