:root {
  --secondary-color: #B5E0F2;
  --alt-color: #F1A6C4;
  --primary-color: #003D73;
  --text-color: var(--primary-color);
  --bg: rgb(245, 242, 242);
}

html, body {
  font-family: 'HG Guise', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-color);
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 4rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 4rem;
}

p {
  font-size: 2rem;
}

p:not(:last-child) {
  margin-bottom: 3rem;
}

.content {
  max-width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 2rem;
  padding-left: 6rem;
}

.header-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
}

.language-selector, .main-nav, #show-mobile-menu {
  padding-right: 6rem;
}

.language-selector ul, .main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0; 
  padding: 0;
  font-size: 1.5rem;
}

a {
  color: var(--text-color);
}

#show-mobile-menu {
  display: none;
  color: white;
  font-size: 1.5rem;
}


.main-nav ul {
  gap: 3.5rem;
}

.main-nav ul li:after {
  content: '';
  display: block;
  margin-top: 6px;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.main-nav ul li:hover:after,
.mobile-nav ul li:hover:after {
  width: 10%;
}

.main-nav ul li a:hover,
.mobile-nav ul li a:hover {
  text-decoration: none;
}

#mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  background: -o-linear-gradient(bottom, rgba(245, 242, 242, 1) 0%, rgba(241, 166, 196, 1) 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(245, 242, 242, 1)), to(rgba(241, 166, 196, 1)));
  background: linear-gradient(0deg, rgba(245, 242, 242, 1) 0%, rgba(241, 166, 196, 1) 100%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  height: 100%;
  z-index: 10;
}

#mobile-menu > div {
  padding-top: 2rem;
  padding-left: 6rem;
}

#close-mobile-menu {
  color: white;
  font-size: 1.5rem;
  padding-right: 6rem;
}

#mobile-menu.show {
  right: 0%;
}

#mobile-menu .mobile-nav {
  font-size: 2rem;
  margin-top: 2rem;
}

#mobile-menu .mobile-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#mobile-menu .mobile-nav ul li {
  margin-bottom: 2rem;
}

#mobile-menu .mobile-nav ul li:after {
  content: '';
  display: block;
  margin-top: 6px;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
}

.mobile-menu-wrapper {
  height: 90%;
}

.language-selector {
  background: #F1F2BE;
  background: -o-linear-gradient(left,rgba(241, 242, 190, 0) 2%, rgba(241, 242, 190, 1) 34%, rgba(241, 242, 190, 1) 100%);
  background: -webkit-gradient(linear,left top, right top,color-stop(2%, rgba(241, 242, 190, 0)), color-stop(34%, rgba(241, 242, 190, 1)), to(rgba(241, 242, 190, 1)));
  background: linear-gradient(90deg,rgba(241, 242, 190, 0) 2%, rgba(241, 242, 190, 1) 34%, rgba(241, 242, 190, 1) 100%);
  gap: 1rem;
  padding: 0.5rem 6rem;  
}

.language-selector ul {
  gap: 1rem;
}

.intro {
  position: relative;
}

.video-bg {
  background: url(../img/bg-3.png) no-repeat 85px -50px / 30%;
  position: absolute;
  inset: 0;
}

.video-baby {
  width: 100%;
  height: auto;
}

.video-baby.video-mobile {
  display: none;
}

.video-claim {
  position: absolute;
  bottom: 3rem;
  left: 6rem;
  color: white;
  font-size: 2.625rem;
  font-weight: 500;
}

.scroll {
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

section.padded,
footer.padded {
  padding-left: 11.375rem;
  padding-right: 11.375rem;
  padding-left: 15%;
  padding-right: 15%;
}

.about,
.why-us,
.contact,
footer {
  padding-top: 7.5rem;
  padding-bottom: 7.5em;
}

.faq {
  padding-bottom: 7.5em;
}

.btn button {
  cursor: pointer;
  display: inline-block;
  padding: 1.5rem 3rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  background-color: var(--primary-color);
  border-radius: 0.5rem;
  text-decoration: none;
  border-radius: 8rem;
  border: none;
}

.btn.btn-alt button {
  background-color: var(--alt-color);
  color: var(--text-color);
}

.btn.btn-light button {
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.benefits-group {
  background-color: var(--secondary-color);
  padding-top: 3.375rem;
  padding-bottom: 3.375rem;
}

.benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}

.benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  gap: 2rem;
  -ms-flex-preferred-size: 30%;
      flex-basis: 18%;
}

.benefit p {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.5rem;
}

/* ACCORDION */

.ingredients {
  padding: 5.25rem;
  background: url('../img/bg.png') no-repeat bottom right/50%;
}

.product-image img {
  width: 100%;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
  
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-1 > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.align-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.shrink-1 {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-4 {
  gap: 4rem;
}

.accordion-container {
  margin: 0 auto;
  background: transparent;
  margin-bottom: 2rem;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  text-align: left;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3rem;
  font-weight: 500;
  color: var(--text-color);
  -webkit-transition: background-color 0.15s ease;
  -o-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}

.accordion-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 16px;
  font-weight: 500;
}

.accordion-icon.rotated {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion-content {
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.accordion-content.open {
  max-height: 1300px;
  opacity: 1;
  padding-bottom: 16px;
}

.accordion-text {
  color: var(--text-color);
  font-size: 2rem;
  font-weight: 400;
}

.chevron {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.opener {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}

.opener .divider {
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}


.accordion-icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* ------- Partners ------ */

.partners {
  background-color: var(--primary-color);
  padding-top: 5rem;
  padding-bottom: 5rem;
}


.partner img {
  width: 100%;
}

/* ------- Partners ------ */

/* Container styles */
    .partners {
      background-color: var(--primary-color);
      padding: 5rem 0;
      overflow: hidden; /* Hide scrollbar */
      position: relative;
    }

    /* Carousel wrapper */
    .carousel-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      position: relative;
      width: 100%;
      margin: 0 auto;
      overflow: hidden;
    }

    /* Carousel track */
    .carousel-track {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 4rem;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      will-change: transform;
    }

    /* Pause on hover */
    .carousel-wrapper:hover .carousel-track {
      -webkit-animation-play-state: paused;
              animation-play-state: paused;
    }

    .partner.filler {
      display: none;
    }

    .partner img {
      width: 100%;
      height: auto;
      -webkit-transition: opacity 0.3s ease;
      -o-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
    }

    .partner:hover img {
      opacity: 1;
    }

    /* Gradient overlays for seamless effect */
    .carousel-wrapper::before,
    .carousel-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100px;
      z-index: 2;
      pointer-events: none;
    }


/* ------- Partners ------ */
.features p {
  margin-bottom: 3rem;
}

.not-included {
  margin-bottom: 3rem;
}

.animations {
  position: relative;
}

.motyl-2 {
  position: absolute;
  bottom: -45px;
  right: 0px;
}

.motyl-3 {
  position: absolute;
  top: 188px;
  right: -40px;
}

.faq {
  margin-top: -150px;
  background: var(--alt-color);
  background: 
    url('../img/bg-2.png') no-repeat bottom left/50%,
    -o-linear-gradient(top, rgba(241, 166, 196, 0) 0%, rgba(241, 166, 196, 1) 100%);
  background: 
    url('../img/bg-2.png') no-repeat bottom left/50%,
    -webkit-gradient(linear, left top, left bottom, from(rgba(241, 166, 196, 0)), to(rgba(241, 166, 196, 1)));
  background: 
    url('../img/bg-2.png') no-repeat bottom left/50%,
    linear-gradient(180deg, rgba(241, 166, 196, 0) 0%, rgba(241, 166, 196, 1) 100%);
}

.faq .accordion-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.faq .accordion-text {
  font-size: 2rem;
  font-weight: 400;
}

.faq .opener {
  margin-bottom: 2rem;
}

.contact {
  color: white;
  background: var(--primary-color);
}

.contact a {
  color: white;
}

/* Footer styles */
footer {
  font-size: 1rem;
  background: 
    url('../img/bg-3.png') no-repeat -35px -50px / 450px,
    -o-linear-gradient(bottom, rgba(241, 166, 196, 0) 0%, rgba(241, 166, 196, 1) 100%);
  background: 
    url('../img/bg-3.png') no-repeat -35px -50px / 450px,
    -webkit-gradient(linear, left bottom, left top, from(rgba(241, 166, 196, 0)), to(rgba(241, 166, 196, 1)));
  background: 
    url('../img/bg-3.png') no-repeat -35px -50px / 450px,
    linear-gradient(0deg, rgba(241, 166, 196, 0) 0%, rgba(241, 166, 196, 1) 100%);
  padding: 2rem;
  border-radius: 8px;
}

/* Desktop Grid Layout - 3 columns */
.footer-grid {
  display: grid;
  grid-template-columns: 172px 1fr auto;
  grid-template-rows: 1fr;
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

/* Grid items positioning for desktop */
footer .logo-container {
  grid-column: 1;
  grid-row: 1;
}

.legal {
  grid-column: 2;
  grid-row: 1;
}

.copyright {
  grid-column: 3;
  grid-row: 1;
}

/* Logo styles */
footer .logo-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Legal text styles */
.legal p:not(:last-child) {
  margin-bottom: 1rem;
}

.legal > div {
  margin: 0 auto;
  max-width: 500px;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.copyright-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
}

/* */
.logo-container {
  max-width: 200px;
}

.logo-container img {
  width: 100%;
}

footer .logo-container {
  max-width: 172px;
  min-width: 100px;
}

footer p {
  font-size: 1rem;
}

.spotify {
  width: 3rem;
  height: 3rem;
  z-index: 9;
  padding: 0.375rem;
  border-radius: 20rem 0 0 20rem;
  position: fixed;
  right: 0;
  background: -o-linear-gradient(top, rgba(245, 242, 242, 1) 0%, rgba(241, 166, 196, 1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 242, 242, 1)), to(rgba(241, 166, 196, 1)));
  background: linear-gradient(180deg, rgba(245, 242, 242, 1) 0%, rgba(241, 166, 196, 1) 100%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.spotify img {
  width: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.spotify.open,
.spotify.fixed.open
 {
  right: 320px;
}

.spotify.open img {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.spotify-player {
  width: 300px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  right: -320px;
  top: 0;
  background: -o-linear-gradient(top, rgba(245, 242, 242, 1) 0%, rgba(241, 166, 196, 1) 15%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 242, 242, 1)), color-stop(15%, rgba(241, 166, 196, 1)));
  background: linear-gradient(180deg, rgba(245, 242, 242, 1) 0%, rgba(241, 166, 196, 1) 15%);
  padding: 10px;
  border-radius: 0 0 1rem 1rem;
}


.spotify-player.open {
}

.about {
  position: relative;
}

.spotify {
  position: absolute;
  right: 0;
  top: 7.5rem;
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  
}

.spotify.fixed {
  position: fixed;
  top: 7.5rem;
  right:  0px;
}
