@charset "UTF-8";
/* CSS Document */

.seasonal {
  position: relative;
  background-color: var(--cream);
  overflow: hidden;
}

.seasonal:before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background-color: var(--alpine-lake-blue);
  border-radius: 50%;
  opacity: 0.08;
}

.seasonal:after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -120px;
  width: 300px;
  height: 300px;
  background-color: var(--sunrise-coral);
  border-radius: 50%;
  opacity: 0.08;
}

.seasonal .container {
  position: relative;
  z-index: 2;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.season-card {
  position: relative;
  padding: 22px 22px 24px;
  border-radius: var(--radius-lg);
  color: var(--snow);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.season-thumb {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: calc(var(--radius-lg) - 8px);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.season-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.season-label {
  align-self: flex-start;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  background-color: rgba(255,255,255,0.16);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.season-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.season-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.96;
}

/* SPRING */

.season-spring {
  background: linear-gradient(
    140deg,
    #7bbd7e 0%,
    #b8e3a6 100%
  );
}

/* SUMMER */

.season-summer {
  background: linear-gradient(
    140deg,
    #f9a34f 0%,
    #ff6a6a 100%
  );
}

/* FALL */

.season-fall {
  background: linear-gradient(
    140deg,
    #d68b3c 0%,
    #9b4f1f 100%
  );
}

/* WINTER */

.season-winter {
  background: linear-gradient(
    140deg,
    #4d7fa3 0%,
    #1f3e56 100%
  );
}

.season-card:nth-child(1) {
  transition-delay: 0.1s;
}

.season-card:nth-child(2) {
  transition-delay: 0.2s;
}

.season-card:nth-child(3) {
  transition-delay: 0.3s;
}

.season-card:nth-child(4) {
  transition-delay: 0.4s;
}

/* =========================================
   1920
   ========================================= */

@media screen and (max-width: 1920px) {
  .seasonal-grid {
    gap: 24px;
  }

  .season-card {
    min-height: 400px;
    padding: 20px 20px 22px;
  }

  .season-thumb {
    height: 170px;
    margin-bottom: 16px;
  }

  .season-label {
    margin-bottom: 12px;
    padding: 6px 11px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }

  .season-card h3 {
    margin-bottom: 8px;
    font-size: 21px;
  }

  .season-card p {
    font-size: 14px;
    line-height: 1.58;
  }

  .seasonal:before {
    top: -110px;
    right: -110px;
    width: 290px;
    height: 290px;
  }

  .seasonal:after {
    bottom: -120px;
    left: -100px;
    width: 270px;
    height: 270px;
  }
}

/* =========================================
   1200
   ========================================= */

@media screen and (max-width: 1200px) {
  .seasonal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .season-card {
    min-height: 390px;
    padding: 20px 20px 22px;
    border-radius: calc(var(--radius-lg) - 1px);
  }

  .season-thumb {
    height: 185px;
    margin-bottom: 16px;
  }

  .season-label {
    margin-bottom: 12px;
    padding: 6px 10px;
    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .season-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.22;
  }

  .season-card p {
    font-size: 14px;
    line-height: 1.56;
  }

  .seasonal:before {
    top: -95px;
    right: -85px;
    width: 235px;
    height: 235px;
  }

  .seasonal:after {
    bottom: -100px;
    left: -85px;
    width: 235px;
    height: 235px;
  }
}

/* =========================================
   768
   ========================================= */

@media screen and (max-width: 768px) {
  .seasonal-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .season-card {
    min-height: 0;
    padding: 20px 20px 22px;
  }

  .season-thumb {
    height: 210px;
    margin-bottom: 16px;
  }

  .season-label {
    margin-bottom: 12px;
    padding: 6px 10px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .season-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.22;
  }

  .season-card p {
    font-size: 15px;
    line-height: 1.58;
  }

  .seasonal:before {
    top: -82px;
    right: -78px;
    width: 205px;
    height: 205px;
  }

  .seasonal:after {
    bottom: -88px;
    left: -72px;
    width: 185px;
    height: 185px;
  }
}

/* =========================================
   480
   ========================================= */

@media screen and (max-width: 480px) {
  .seasonal-grid {
    gap: 14px;
  }

  .season-card {
    padding: 18px 16px 20px;
    border-radius: calc(var(--radius-lg) - 2px);
  }

  .season-thumb {
    height: 170px;
    margin-bottom: 14px;
    border-radius: calc(var(--radius-lg) - 10px);
  }

  .season-label {
    margin-bottom: 10px;
    padding: 5px 9px;
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .season-card h3 {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.24;
  }

  .season-card p {
    font-size: 14px;
    line-height: 1.52;
  }

  .seasonal:before {
    top: -62px;
    right: -62px;
    width: 150px;
    height: 150px;
  }

  .seasonal:after {
    bottom: -70px;
    left: -62px;
    width: 140px;
    height: 140px;
  }
}

/* =========================================
   300
   ========================================= */

@media screen and (max-width: 300px) {
  .seasonal-grid {
    gap: 12px;
  }

  .season-card {
    padding: 16px 12px 18px;
    border-radius: calc(var(--radius-lg) - 4px);
  }

  .season-thumb {
    height: 130px;
    margin-bottom: 12px;
    border-radius: calc(var(--radius-lg) - 12px);
  }

  .season-label {
    margin-bottom: 9px;
    padding: 4px 8px;
    font-size: 9px;
    letter-spacing: 1px;
  }

  .season-card h3 {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.24;
  }

  .season-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .seasonal:before {
    top: -40px;
    right: -40px;
    width: 95px;
    height: 95px;
    opacity: 0.06;
  }

  .seasonal:after {
    bottom: -42px;
    left: -40px;
    width: 90px;
    height: 90px;
    opacity: 0.06;
  }
}