:root {
  --primary: #f2d9ca;
  --secondary: #312114;
  --ternary: #d27645;
  --radius: 20px;
}

html {
  scroll-behavior: smooth;

}

* {
  margin: 0;
  padding: 0;
  font-family: "Sriracha", serif;
  font-weight: 400;
  font-style: normal;
}


.logo {
  max-width: 160px;
}

main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 100vh;
  background-color: var(--primary);
  font-family: sans-serif;
}

ul {
  list-style: none;
}

strong {
  font-size: 3vw;
}

/*
 * CSS Hero section + slider with progress bar 
 */
section.hero {
  position: relative;
  grid-column: 1 / 4;

  ul.slider {
    display: flex;
    align-items: center;
    color: white;
    height: 100%;

    li {
      position: absolute;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      justify-content: center;
      height: 100%;
      padding-left: 10%;

      strong {
        text-transform: uppercase;
      }

      h1 {
        font-size: 8vw;
      }

      p {
        flex-wrap: wrap;
        line-height: max(1.5rem, 2vw);
        font-size: max(14px, 1.5vw);
        max-width: 80%;
      }

      .cover {
        width: 100%;
        position: absolute;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        border-top-right-radius: 50px;
        margin-left: -10%;
        filter: brightness(.8);
      }
    }

    li {
      transition: opacity 500ms, transform 500ms;
      opacity: 0;

      .title,
      p,
      .explore {
        transition: opacity 500ms .1s, transform 500ms .1s;
        transform: translateY(100px);
        opacity: 0;
      }

      p {
        transition-delay: .2s;
      }

      .explore {
        transition-delay: .4s;
      }

      &.visible {
        z-index: 1;
        opacity: 1;

        .title,
        p,
        .explore {
          transform: translateY(0);
          opacity: 1;
        }
      }
    }

    .explore {
      display: flex;
      place-self: flex-start;
      align-items: center;
      gap: .4rem;
      padding: 1rem 1.5rem;
      color: white;
      background-color: var(--ternary);
      border-radius: 50px;
      border: none;
      transition: all 300ms;
      font-size: max(14px, 1vw);

      &:hover {
        cursor: pointer;
        background-color: #bd5f2c;
        transition-delay: 0s !important;
      }

      &:active {
        transform: scale(0.9) !important;
      }

      img {
        width: 20px;
        filter: invert(1);
      }
    }

    .progress {
      position: absolute;
      z-index: 2;
      bottom: 0;
      height: 10px;
      background-color: var(--ternary);
      animation: progress 5s linear 6s;
    }
  }
}

@keyframes progress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------------------------- */


header {
  position: absolute;
  z-index: 99999;
  padding: 30px 10% 0 10%;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  &.blur {
    backdrop-filter: blur(10px);
  }

  >a {
    z-index: 1;
  }
}

/* 
/* Mobile navigation */
.mobile-nav {
  display: none;
  position: relative;

  input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 40px;
    height: 35px;
    cursor: pointer;
    z-index: 200;

    &:checked {
      ~.burger {
        span {
          &:nth-child(1) {
            transform: translateY(10px) rotate(45deg);
          }

          &:nth-child(2) {
            opacity: 0;
          }

          &:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
          }
        }
      }

      ~ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);

        a {
          transform: translateY(0) rotate(0);
          opacity: 1;
        }
      }
    }
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    width: 40px;
    z-index: 2;
    cursor: pointer;

    span {
      display: block;
      height: 3px;
      width: 32px;
      background-color: white;
      transition: all 300ms ease-in-out;
      border-radius: 10px;

      &:nth-child(2) {
        width: 22px;
      }
    }
  }

  ul {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    transition: all 400ms ease-in-out;
    transform: translateY(-20px);
    padding-left: 15%;
  }

  a {
    font-size: 6vw;
    font-weight: bold;
    color: white;
    text-decoration: none;
    margin: 10px 0;
    transition: transform 50ms, opacity 500ms;
    opacity: 0;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) rotate(5deg);

    /* Apare pe rând cu delay */
    &:nth-child(1) {
      transition-delay: 0.2s;
    }

    &:nth-child(2) {
      transition-delay: 0.4s;
    }

    &:nth-child(3) {
      transition-delay: 0.6s;
    }

    &:nth-child(4) {
      transition-delay: 0.8s;
    }

    &:nth-child(5) {
      transition-delay: 1s;
    }

    &:nth-child(6) {
      transition-delay: 1.2s;
    }

    &:hover {
      color: var(--primary);
      transform: scale(1.1);
    }
  }
}

--------------------------------------------------------------------------------------- */

/* 
 * Default navigation
 */
nav.default {
  display: flex;
  justify-content: space-between;

  a {
    position: relative;
    text-decoration: none;
    color: var(--secondary);

    &:not(:last-child) {
      margin-right: .5vw;
    }

    &:hover {
      color: var(--ternary);
    }
  }

  .classic {
    .active {
      font-weight: bold;

      &::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 50%;
        width: 8px;
        height: 8px;
        background-color: var(--ternary);
      }
    }
  }

  .icons {
    a {
      display: inline-block;
      width: 30px;
      height: 30px;
    }

    img {
      position: absolute;
      z-index: 1;
      width: 30px;
      height: 30px;
    }

    span {
      position: absolute;
      background: var(--ternary);
      color: white;
      font-size: 12px;
      border-radius: 50%;
      width: 12px;
      height: 12px;
      text-align: center;
      line-height: 1;
      padding: 3px;
      right: -5px;
      top: -5px;
      z-index: 2;
    }

    a {
      &::after {
        content: "";
        position: absolute;
        z-index: 0;
        opacity: .2;
        left: -5px;
        top: -5px;
        width: 30px;
        padding: 5px;
        height: 30px;
        background-color: var(--secondary);
        border-radius: 50%;
        transition: transform 300ms;
        transform: scale(0);
      }

      &:hover::after {
        transform: scale(1);
      }
    }
  }
}

/* ---------------------------------------------------------------------------------------------- */



section.content {
  grid-column: 4 / 6;
  display: grid;
  grid-gap: 2rem;
  height: calc(100vh - 60px);
  grid-template-rows: .5fr repeat(5, 1fr);
  padding: 30px;
}



/*
 * Collections 
 */
.more-button {
  display: none;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: var(--ternary);
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  transition: transform 0.3s ease;
  font-size: 12px;
  cursor: pointer;
}

.collections {
  grid-row: 2 / 4;
  position: relative;
  color: white;

  span {
    position: absolute;
    left: 20px;
    top: -20px;
    background-color: var(--ternary);
    border-radius: 50px;
    padding: .5rem 1rem;
    border: 4px solid var(--primary);
    z-index: 3;

    &:nth-child(2) {
      top: 100px;
      left: 95%;
    }

    &:nth-child(3) {
      top: 100px;
      left: -5%;
    }
  }

  .collection {
    position: absolute;
    list-style: none;
    background-color: var(--secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    z-index: 2;
    display: flex;
    gap: 1rem;
    height: calc(80% - 4.5rem);
    transition: transform 500ms;

    &:nth-child(3) {
      top: 1.5rem;
      z-index: 1;
      filter: brightness(1.4) saturate(0.8) contrast(0.8);
      transform: scale(0.9);
    }

    &:nth-child(4) {
      top: 3rem;
      z-index: 0;
      filter: brightness(5.4) saturate(.9) contrast(0.3);
      transform: scale(0.8);
    }

    &>div:first-child {
      flex: 2;
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
    }

    h3 {
      font-size: max(14px, 1.5vw);
      margin-bottom: .5vw;
    }

    p {
      font-size: max(14px, 1vw);
      overflow-y: scroll;
      height: 100%;
    }

    .preview {
      flex: 1;
      border-radius: var(--radius);
      background-size: 100% auto;
      /* Se adaptează pe lățime */
      background-position: center;
      background-repeat: no-repeat;
    }

  }
}


@keyframes right {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(100%);
  }

  100% {
    transform: scale(.8) translate(0, 3rem);
  }
}

/* ---------------------------------------------------------------------------------------------- */



/* 
 * Product cta (Living with Ferm)
 */
.product-cta {
  grid-row: 4 / 7;
  position: relative;

  border-radius: var(--radius);
  background-size: cover;
  background-position: center;

  transition: all 500ms;

  strong {
    position: absolute;
    color: white;
    max-width: 15vw;
    top: 35px;
    left: 25px;
  }

  .show {
    position: absolute;
    right: -20px;
    bottom: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    background-color: white;

    .arrow {
      position: relative;
      height: 1px;
      width: 25px;
      background-color: var(--ternary);
      border-radius: 5px;
      transition: all 500ms;

      &::before,
      &::after {
        position: absolute;
        content: "";
        background-color: var(--ternary);
        height: 1px;
        border-radius: 5px;
        width: 10px;
        transform-origin: right;
        transition: all 500ms;
      }

      &::before {
        transform: translateX(15px) rotate(-45deg);
      }

      &::after {
        transform: translate(15px) rotate(45deg);
      }
    }
  }
}

.product-cta:hover {
  cursor: pointer;

  .show {
    background-color: var(--ternary);
  }

  .arrow {
    width: 30px;
    background-color: white;

    &::before,
    &::after {
      background-color: white;
    }

    &::before {
      transform: translate(20px) rotate(-45deg);
    }

    &::after {
      transform: translate(20px) rotate(45deg);
    }
  }
}

/* ---------------------------------------------------------------------------------------------- */



/* 
 * Responsive
 */
@media (max-width: 960px) {
  main {
    grid-template-rows: 1fr 1fr;
    height: auto;
  }

  section.hero {
    grid-column: 1/6;

    ul.slider li {
      width: 90%;

      .cover {
        border-top-right-radius: 0px;
      }

      h1 {
        font-size: max(32px, 12vw);
      }
    }
  }

  strong {
    font-size: max(16px, 4vw);
  }

  section.content {
    grid-column: 1/6;
    grid-row-start: 2;
    grid-gap: 0;
    padding: 50px 10%;
    height: calc(100vh - 100px);

    nav {
      display: none;
    }

    .collections {
      grid-row: 1/4;
    }

    .collection {
      width: calc(100% - 3rem);
      max-height: 250px;
    }
  }

  header {
    position: fixed;
    padding: 30px 10%;
  }

  .mobile-nav {
    display: flex;
  }
}

/* ---------------------------------------------------------------------------------------------- */


/*sectione 2 price*/

/* ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */
#offers {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.offer-card h3 {
  color: #333;
  font-size: 24px;
  margin-bottom: 15px;
}

.price {
  font-size: 20px;
  color: #e74c3c;
}

.price span {
  font-weight: bold;
}

.offer-details {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.offer-details li {
  margin-bottom: 10px;
  font-size: 16px;
}

.buy-now {
  padding: 10px 20px;
  background-color: var(--ternary);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.buy-now:hover {
  background-color: #ff9100;
}



/* 
   * Responsive
   */
/* Container general */
/* Container general */
#offers {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background: #f2d9ca;
}

/* Card ofertă */
.offer-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

/* Efect hover */
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #ff9100;
}

/* Titlu ofertă */
.offer-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

/* Preț */
.price {
  font-size: 24px;
  color: #e74c3c;
  font-weight: bold;
  margin: 10px 0;
}

/* Detalii ofertă */
.offer-details {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

/* Elemente listă cu bifa la final */
.offer-details li {
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 5px;
}

/* Stilizare bife */
.offer-details li::after {
  content: "✔";
  font-size: 18px;
  font-weight: bold;
  color: #2ecc71;
}

/* Bife gri pentru caracteristici indisponibile */
.offer-details li.unavailable {
  color: #bbb;
}

.offer-details li.unavailable::after {
  content: "✖";
  color: #e74c3c;
}

/* Stilizare buton */
.buy-now {
  padding: 12px 25px;
  background: linear-gradient(135deg, var(--ternary), var(--ternary));
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

/* Efect hover pe buton */
.buy-now:hover {
  background: linear-gradient(135deg, #ff9100, #ff9100);
  transform: scale(1.05);
}

/* Card special (Enterprise) */
.enterprise-card {
  background: #ff9100;
  color: white;
}

.enterprise-card .price,
.enterprise-card .offer-details li {
  color: white;
}

.enterprise-card .offer-details li.unavailable {
  color: #ccc;
}

.enterprise-card .offer-details li::after {
  color: #f1c40f;
}

/* Tag "Best Value" */
.best-value {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1c40f;
  color: #333;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 12px;
}



/*sectiunea 3*/
/*///////////////////////////////////////////////////////////////*/
.feature-section {
  max-width: 800px;
  margin: auto;
  padding: 50px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-item {
  text-align: center;
  padding: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #fbe8e7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
}

.feature-icon i {
  font-size: 24px;
  color: #e74c3c;
}

.feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-text {
  color: #555;
  font-size: 16px;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.feature-item,
.another-section,
.other-elements {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

.feature-item.show,
.another-section.show,
.other-elements.show {
  opacity: 1;
  transform: translateY(0);
}


/*********************************************************************************************/
/**********************************************************************************************/

/*****FAQ**********/
.accordion {
  display: flex;
  flex-direction: column;
  font-family: "Sora", sans-serif;
  max-width: 991px;
  min-width: 320px;
  margin: 50px auto;
  padding: 0 50px;
}

.accordion h1 {
  font-size: 32px;
  text-align: center;
}

.accordion-item {
  margin-top: 16px;
  border: 1px solid #fcfcfc;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.accordion-item .accordion-item-title {
  position: relative;
  margin: 0;
  display: flex;
  width: 100%;
  font-size: 15px;
  cursor: pointer;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 14px 20px;
  box-sizing: border-box;
  align-items: center;
}

.accordion-item .accordion-item-desc {
  display: none;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  color: #444;
  border-top: 1px dashed #ddd;
  padding: 10px 20px 20px;
  box-sizing: border-box;
}

.accordion-item input[type="checkbox"] {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
}

.accordion-item input[type="checkbox"]:checked~.accordion-item-desc {
  display: block;
}

.accordion-item input[type="checkbox"]:checked~.accordion-item-title .icon:after {
  content: "-";
  font-size: 20px;
}

.accordion-item input[type="checkbox"]~.accordion-item-title .icon:after {
  content: "+";
  font-size: 20px;
}

.accordion-item:first-child {
  margin-top: 0;
}

.accordion-item .icon {
  margin-left: 14px;
}

@media screen and (max-width: 767px) {
  .accordion {
    padding: 0 16px;
  }

  .accordion h1 {
    font-size: 22px;
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.whatsapp-button img {
  width: 24px;
  height: 24px;
}

.scroll-up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  display: none;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}


/***********************************/
/********gallery***************/
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  width: 80%;
  margin: 0 auto;
  padding: 10px;
}
.gallery-item {
  opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  flex-basis: 32.7%;
  margin-bottom: 6px;
  opacity: .85;
  cursor: pointer;
}
.gallery-item:nth-child(even) {
  transform: translateX(50px);
}

.gallery-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.gallery-item:hover {
  opacity: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-content {
  font-size: .8em;
}

.lightbox {
  position: fixed;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;              
  overflow: auto;
  top: 0;
  left: 0;
}
.lightbox-content {
  position: relative;
  width: 70%;
  height: 70%;
  margin: 5% auto;
}
.lightbox-content img {
  border-radius: 7px;
  box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 7px;
  top: 45%;
  cursor: pointer;
}
.lightbox-prev {
  left: 0;
}
.lightbox-next {
  right: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: .8;
}

@media (max-width: 767px) {
  .gallery-container {
  }
  .gallery-item {
      flex-basis: 49.80%;
      margin-bottom: 3px;
  }
 
  .lightbox-content {
      width: 80%;
      height: 60%;
      margin: 15% auto;
  }
}
@media (max-width: 480px) {
  .gallery-item {
      flex-basis: 100%;
      margin-bottom: 1px;
  }
  .lightbox-content {
      width: 90%;
      margin: 20% auto;
  }
}


/***********************************/
/**inca de mai gandesti*************/

/* Stiluri pentru secțiunea principală */
.custom-section {
  padding: 50px 30px;
  background: linear-gradient(135deg, #f7ba99, #f7ba99); /* Fundal gradienți */
  color: #fff;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3); /* Umbră mai intensă */
  transition: all 0.3s ease-in-out;
  text-align: center; /* Aliniere text central */
}

/* Stiluri pentru titlu */
.custom-section h6 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase; /* Textul mai vizibil și clar */
}

/* Stiluri pentru paragraful descriptiv */
.custom-section p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 30px;
  max-width: 550px; /* pentru a nu se întinde prea mult pe ecranul larg */
  margin-left: auto;
  margin-right: auto;
  color: #ffffffc9; /* O culoare mai deschisă pentru a face textul mai plăcut */
  line-height: 1.6;
}

/* Stiluri pentru buton */
.custom-section .btn {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  text-align: center;
  display: inline-block; /* Asigură că butonul se va alinia pe mijloc */
  margin-top: 20px; /* Distanță față de paragraful anterior */
}

.custom-section .btn:hover {
  background-color: #d32f2f; /* Butonul se face mai închis când este apăsat */
}

/* Centrarea butonului */
.button-container {
  display: flex;
  justify-content: center; /* Centrează butonul pe orizontală */
  align-items: center; /* Centrează butonul pe verticală (dacă este nevoie) */
  height: 100%; /* Se asigură că containerul are înălțimea completă disponibilă */
}

/* Responsivitate */
@media (max-width: 1200px) {
  .custom-section {
      padding: 40px 25px;
  }
  .custom-section h6 {
      font-size: 1.8rem;
  }
  .custom-section p {
      font-size: 0.95rem;
  }
}

@media (max-width: 991px) {
  .custom-section {
      padding: 35px 20px;
  }
  .custom-section h6 {
      font-size: 1.6rem;
  }
  .custom-section p {
      font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .custom-section {
      padding: 25px 15px;
  }
  .custom-section h6 {
      font-size: 1.5rem;
  }
  .custom-section p {
      font-size: 0.85rem;
  }
  .custom-section .btn {
      font-size: 1rem;
      padding: 10px 25px;
  }
}


























/***footer*************/
/*FOOTER*/

.footer-top {
  padding: var(--section-padding) 0;
  border-bottom: 1px solid var(--space-cadet);
  background-color: #f7ba99;
}

.footer-brand,
.footer-brand .logo {
  margin-bottom: 25px;
}

.footer-text {
  color: var(--heliotrope-gray);
  line-height: 1.6;
  text-align: justify;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-list {
  margin-bottom: 30px;
  padding-left: 20px;

}

.footer-list>li:not(:last-child) {
  margin-bottom: 20px;

}


.footer-link-title {
  font-size: 30px;
  font-weight: var(--fw-700);
}

.footer-link {
  color: var(--heliotrope-gray);
  font-size: var(--fs-4);
  width: max-content;
}

.footer-link:is(:hover, :focus) {
  color: var(--blue-ryb);
}

.social-title {
  background: var(--ternary);
  width: max-content;
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 20px;
  padding-left: 20px;
}

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  padding-bottom: 40px;
}

.social-link {
  background: var(--space-cadet);
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 20px;
  border-radius: 50%;
}

.social-link:is(:hover, :focus) {
  background: var(--blue-ryb);
}

.copyright {
  color: var(--heliotrope-gray);
  font-size: var(--fs-4);
  text-align: center;
  line-height: 1.8;
  padding-block: 20px;
}

.copyright a {
  color: var(--white);
  display: inline-block;
  font-family: var(--ff-turret);
}

.copyright a:is(:hover, :focus) {
  color: var(--blue-ryb);
}

/*GO TOP*/


@media(min-width: 550px) {
  .container {
    max-width: 500px;
    margin-inline: auto;
  }
}

@media(min-width: 768px) {
  :root {
    --fs-1: 30px;
    --fs-2: 20px;
    --fs-3: 18px;
  }

  .container {
    max-width: 600px;
  }

  .hero-title {
    width: 90%;
  }

  .hero :is(.btn-primary, .btn-title, .btn-link) {
    --fs-4: 16px;
    margin-bottom: 0;
  }

  .hero-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }

  .btn-link-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }

  .podcast-list {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-card {
    padding: 50px;
  }

  .newsletter-card .btn-primary {
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    width: 140px;
  }

  .newsletter-card .input-field {
    padding-right: 155px;
  }

  .card-form {
    position: relative;
  }

  .footer-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
  }

  .footer-brand {
    max-width: 350px;
    margin-bottom: 0;
  }

  .footer-list {
    margin-bottom: 0;
  }

}

@media(min-width: 1024px) {
  .container {
    max-width: 980px;
  }

  header {
    top: -120px;
  }

  .nav-toggle-btn {
    display: none;
  }

  .navbar {
    position: static;
    visibility: visible;
    box-shadow: none;
    padding: 0;
    background: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
  }

  .navbar::before,
  .overlay {
    display: none;
  }

  .navbar-list {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .navbar-link {
    position: relative;
  }

  .navbar-link::after {
    --scale: 0;

    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(var(--scale));
    transform-origin: left;
    width: calc(100% - 20px);
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
  }

  .navbar-link:is(:hover, :focus) {
    background: var(--gradient);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }

  .navbar-link:is(:hover, :focus)::after {
    --scale: 1;
  }

  .navbar-actions {
    gap: 10px;
  }

  .navbar-actions .btn {
    background: var(--blue-ryb);
    padding: 15px 25px;
    transition: background var(--transition);
  }

  .navbar-actions .btn:is(:hover, :focus) {
    background: hsl(221, 100%, 40%);
  }

  .hero-content {
    max-width: 680px;
    margin-inline: auto;
  }

  .podcast-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }

  .newsletter-card .card-content,
  .card-form {
    width: 50%;
  }

  .newsletter-card .card-text,
  .newsletter-card .input-field {
    margin-bottom: 0;
  }
}

@media(min-width: 1200px) {
  :root {
    --section-padding: 60px;
  }

  .container {
    max-width: 1200px;
  }

  header {
    padding-block: 25px;
  }

  header .container {
    max-width: 1300px;
  }

  .navbar {
    gap: 30px;
  }

  .navbar-actions .btn {
    margin-left: 20px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    padding-top: 160px;
  }

  .hero-content {
    width: 95%;
    margin-inline: 0;
  }

  .hero-title {
    width: 100%;
    margin-bottom: 30px;
  }

  .hero-text {
    margin-bottom: 25px;
  }

  .hero-btn-group {
    flex-wrap: wrap-reverse;
    gap: 35px;
  }

  .hero :is(.btn-primary, .btn-title, .btn-link) {
    --fs-4: 17px;
  }

  .hero-banner {
    display: block;
    width: 100%;
    padding-top: 100%;
    background: url('https://i.postimg.cc/s2GVFVnW/hero-banner.png') no-repeat;
    background-size: cover;
    border-radius: 100px;
  }

  .podcast-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-link-title {
    --fs-2: 22px;
  }

  .social-title {
    margin-left: auto;
    margin-bottom: 35px;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

}


/****footer**************/
