.home {
  width: 100%;
}

/* Hero Section */

.hero {
  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  height: 100vh;

  background: linear-gradient(
    135deg,
    var(--sunset-orange) 0%,

    var(--sunset-pink) 25%,

    var(--sky-blue) 75%,

    var(--ocean-blue) 100%
  );
}

.hero__content {
  text-align: center;
}

.hero__title {
  margin-bottom: 1rem;

  font-size: clamp(3rem, 8vw, 6rem);

  font-weight: 800;
}

.gradient-text {
  background: linear-gradient(
    45deg,
    var(--sunset-orange),
    var(--golden-yellow),
    var(--sunset-pink),
    var(--ocean-blue)
  );

  background-size: 400% 400%;

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;
}

.hero__subtitle {
  margin-bottom: 2rem;

  font-size: 1.3rem;

  color: #fff;
}

.cta-button {
  position: relative;

  padding: 15px 40px;

  background: linear-gradient(45deg, var(--sunset-orange), var(--sunset-pink));

  font-size: 1.1rem;

  font-weight: 600;

  color: #fff;

  border-radius: 50px;

  letter-spacing: 1px;

  transition: all 0.3s ease;

  overflow: hidden;

  z-index: 2;

  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(255, 123, 84, 0.4);
}

.button-glow {
  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );

  transition: left 0.5s;
}

.cta-button:hover .button-glow {
  left: 100%;
}

.hero__wave {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  rotate: 180deg;
}

.hero__wave svg {
  position: relative;

  display: block;

  width: calc(100% + 1.3px);

  height: 120px;
}

.hero__wave .shape-fill {
  fill: var(--warm-sand);
}

/* Description Section */

.description {
  padding: 7rem;

  background-color: var(--warm-sand);
}

.description__content {
  width: 60%;

  padding: 0 40px;
}

.description__title {
  margin-bottom: 3rem;

  text-align: center;

  font-size: 4rem;

  font-weight: 700;

  color: var(--sunset-pink);
}

.description__title--compagny {
  color: var(--sunset-orange);
}

.description__title--studio {
  margin-bottom: 1rem;

  color: var(--golden-yellow);
}

.description p {
  margin-bottom: 1rem;
  text-align: justify;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.description__images {
  width: 40%;

  height: 400px;
}

.description__images__container {
  position: relative;

  width: 100%;

  height: 100%;
}

.description__images__photo {
  position: absolute;

  object-fit: cover;

  border: 4px solid #fff;

  border-radius: 15px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

  transition: all 0.3s ease;
}

.description__images__photo:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);

  z-index: 10;

  transform: scale(1.5) rotate(2deg);
}

.description__images__photo--1 {
  top: 0;

  left: 0;

  width: 280px;

  height: 180px;

  transform: rotate(-3deg);
}

.description__images__photo--2 {
  top: 120px;

  right: 20px;

  width: 220px;

  height: 160px;

  transform: rotate(5deg);
}

.description__images__photo--3 {
  bottom: 0;

  left: 60px;

  width: 250px;

  height: 180px;

  transform: rotate(-2deg);
}

.description__button-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.description__social-networks {
  height: 35px;
  width: 35px;
  margin-bottom: 1rem;
  cursor: pointer;
}

/* Studio Section */

.studio {
  display: flex;

  flex-direction: column;

  justify-content: center;

  width: 100%;

  padding: 50px;

  background: linear-gradient(
    135deg,
    var(--sky-blue) 0%,

    var(--ocean-blue) 50%,

    var(--meadow-green) 100%
  );
}

.studio__subtitle {
  margin-bottom: 3rem;

  text-align: center;

  font-size: 1.3rem;

  color: #fff;

  font-style: italic;
}

.studio__image-container {
  display: flex;

  justify-content: center;
}

.studio__image-container img {
  max-height: 600px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

  border-radius: 25px;
}

/* Podcasts Section */

.podcasts {
  padding: 100px 0;

  background: linear-gradient(
    135deg,
    var(--peach) 0%,

    var(--sunset-orange) 50%,

    var(--sunset-pink) 100%
  );
}

.podcasts__title {
  margin-bottom: 3rem;

  text-align: center;

  font-size: 4rem;

  font-weight: 700;

  color: var(--warm-sand);
}

.podcasts__grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  gap: 2rem;

  margin-top: 3rem;
}

.podcasts__grid__card {
  background: #fff;

  box-shadow: var(--shadow);

  border-radius: 25px;

  overflow: hidden;

  transition: all 0.3s ease;

  cursor: pointer;
}

.podcasts__grid__card:hover {
  box-shadow: var(--shadow-hover);

  transform: translateY(-10px);
}

.podcasts__grid__card__image {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  height: 200px;

  padding-bottom: 10px;

  overflow: hidden;
}

.podcasts__grid__card__image__content {
  background-size: contain;

  background-repeat: no-repeat;

  background-position: center;

  height: 100%;

  width: 100%;

  margin: 20px 0;
}

.podcasts__grid__card__image--transat {
  background-image: url("/assets/transat.png");
}

.podcasts__grid__card__image--parasol {
  background-image: url("/assets/parasol.png");
}

.podcasts__grid__card--sunset .podcasts__grid__card__image {
  background: linear-gradient(45deg, var(--sunset-orange), var(--sunset-pink));
}

.podcasts__grid__card--ocean .podcasts__grid__card__image {
  background: linear-gradient(45deg, var(--ocean-blue), var(--sky-blue));
}

.podcasts__grid__card--meadow .podcasts__grid__card__image {
  background: linear-gradient(45deg, var(--meadow-green), #98fb98);
}

.podcasts__grid__card--lavender .podcasts__grid__card__image {
  background: linear-gradient(45deg, var(--lavender), #e6e6fa);
}

.podcasts__grid__card--peach .podcasts__grid__card__image {
  background: linear-gradient(45deg, var(--peach), #ffdab9);
}

.podcasts__grid__card--coral .podcasts__grid__card__image {
  background: linear-gradient(45deg, var(--coral), #ffa07a);
}

.podcasts__grid__card__content {
  padding: 1.5rem;
}

.podcasts__grid__card__content h3 {
  margin-bottom: 0.5rem;

  font-size: 1.4rem;

  font-weight: 600;

  color: var(--text-dark);
}

.podcasts__grid__card__content p {
  margin-bottom: 1rem;

  color: var(--text-dark);

  opacity: 0.7;
}

/* Sponsors Section */

.podcasts__sponsors {
  display: flex;

  align-items: center;

  gap: 2rem;

  margin-top: 7rem;

  text-align: justify;

  color: #fff;

  font-size: 1.2rem;

  line-height: 1.8;
}

.podcasts__sponsors img {
  width: fit-content;

  height: 200px;
}

/* Links section */

.podcasts__links {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
  margin-top: 2rem;
}

.podcasts__links__social-network {
  height: 35px;
  width: 35px;
  cursor: pointer;
}

.podcasts__links__company-logo {
  height: 150px;
}

/* Responsive */

@media (max-width: 480px) {
  .project-description,
  .company-description {
    padding: 60px 0;
  }

  .description__images {
    height: 250px;
  }

  .description__images__photo {
    width: 150px !important;

    height: 110px !important;
  }
}

@media screen and (max-width: 767px) {
  .container--description .description__content,
  .container--description .description__images {
    width: 100%;
  }

  .description__button-container {
    margin-bottom: 3rem;
  }

  .home > .description:nth-child(4) .container--description {
    flex-direction: column-reverse;
  }
}

@media screen and (min-width: 768px) and (max-width: 830px) {
  .description__images__container .description__images__photo--1 {
    top: -50px;
  }

  .description__images__container .description__images__photo--3 {
    bottom: -50px;
  }
}

@media (max-width: 968px) {
  .description__images {
    height: 300px;
  }

  .description__images__photo {
    width: 200px !important;

    height: 140px !important;
  }

  .description__images__photo--1 {
    top: 0;

    left: 50%;

    transform: translateX(-50%) rotate(-3deg);
  }

  .description__images__photo--2 {
    top: 80px;

    right: 10px;

    transform: rotate(5deg);
  }

  .description__images__photo--3 {
    bottom: 0;

    left: 10px;

    transform: rotate(-2deg);
  }
}

@media screen and (max-width: 1024px) {
  .podcasts__sponsors {
    flex-direction: column;
  }
}

@media screen and (max-width: 1300px) {
  .description {
    padding: 7rem 2rem;
  }
}
