@font-face {
  font-family: 'Wild';
  src: url('/fonts/Wild-Rune.otf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 12px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, sans-serif;
  font-size: 1.2rem;
}
body {
  background-color: var(--light);
  color: var(--dark);
}
.body-no-scroll {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
}
section {
  padding: 80px 0;
}
h1,
h2,
h3 {
  margin-bottom: 20px;
  color: var(--primary);
  line-height: 1.6;
}
h2 {
  font-size: 30px;
}
h4 {
  font-size: 1.4rem;
}
p {
  margin-bottom: 15px;
  line-height: 1.6;
}
li {
  font-size: 1rem;
}
.hide {
  display: none !important;
}
/* Адаптивность */
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 2rem;
  }
  .about-content {
    flex-direction: column;
  }
  .nav-links {
    display: none;
  }
  header h1 {
    font-size: 2rem;
  }
}
@media (max-width: 420px) {
  .container {
    padding: 0 1rem;
  }
}
.btn {
  font-size: 1.2rem;
  padding: 12px 30px;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-active) !important;
}
#btn__SendUs {
  position: fixed;
  z-index: 9;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary);
  box-shadow: var(--shadow);
  transition: all 0.5s ease;
  opacity: 0;
  overflow: hidden;
  display: none;
}
#btn__SendUs:hover {
  box-shadow: var(--shadow-active);
}
.btn-effect_container {
  position: relative;
}
.btn-effect {
  height: 55px;
  width: 2px;
  position: absolute;
  left: -50px;
  top: -20px;
  transform: rotate(25deg);
  background-color: white;
  animation-name: btnEffect;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-delay: 6s;
  box-shadow: 0 0 10px 5px white;
}
@keyframes btnEffect {
  from {
    left: 0%;
  }
  15% {
    left: calc(100% + 50px);
  }
  to {
    left: calc(100% + 50px);
  }
}
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #57b2c9;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9;
}
.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.back-to-top-btn svg {
  width: 24px;
  height: 24px;
}
/* Шапка */
.intro {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url("../../img/main/snowboard-tour-sheregesh-kemerovo.jpg") no-repeat bottom / cover fixed;
  height: calc(100vh);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.intro h1 {
  font-size: 6rem;
  margin-bottom: 4rem;
  color: var(--light);
  font-family: "Wild";
  animation: fadeInDown 1s ease;
}
.intro h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--light);
  line-height: 1.5;
  letter-spacing: 3px;
  margin-bottom: 15vh;
  animation: fadeInDown 1.5s ease;
}
.intro__button {
  font-size: 1.2rem;
  max-width: 800px;
  letter-spacing: 2px;
  background-color: transparent;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  margin: 0 auto 30px;
  animation: fadeInUp 1s ease;
}
.intro__button:hover {
  background-color: var(--primary);
}
/* Текст под стрелкой */
.intro__arrow-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5vh;
}
.arrow {
  width: 40px;
  height: 40px;
  border-right: 14px solid var(--light);
  border-bottom: 4px solid var(--light);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
/* Анимации */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-20px) rotate(45deg);
  }
  60% {
    transform: translateY(-10px) rotate(45deg);
  }
}
/* Анимации */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .intro {
    justify-content: inherit;
    padding-top: 30px;
  }
  .intro h1 {
    font-size: 18cqi;
  }
}
/* Навигация */
.header {
  width: 100%;
  height: 80px;
  background: #fff;
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.header__wrapper {
  height: 100%;
  width: 100%;
  max-width: 1600px;
  position: absolute;
  z-index: 100;
  background-color: #fff;
}
.header__wrapper img {
  width: 60%;
  min-width: 380px;
  height: 120%;
  opacity: 0.4;
}
header .container {
  width: 100%;
  position: relative;
}
.header__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
nav {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.active {
  display: flex;
}
.burger-btn {
  margin: 0 auto;
}
.logo {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  margin: 0 2rem 0 2rem;
  z-index: 100;
  font-size: 2.5rem;
  font-family: "Wild";
  cursor: pointer;
}
.logo span {
  position: relative;
  font-size: 2.5rem;
  font-family: "Wild";
}
.header__phone {
  text-align: center;
  z-index: 100;
  white-space: nowrap;
}
.nav__phone {
  font-size: 1.6rem;
  color: var(--primary);
  text-decoration: none;
  border-radius: 5px;
  /* Закругленные углы */
  font-weight: 700;
  transition: all 0.3s ease;
}
.nav__phone:hover {
  color: #405f8f;
  /* Усиливаем цвет при наведении */
  text-decoration: underline;
  /* Можно добавить подчеркивание */
}
.nav-links {
  display: flex;
  list-style: none;
  font-size: 1.2rem;
  position: relative;
  z-index: 100;
}
.nav-links li:not(:first-child) {
  margin-left: 30px;
}
.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  text-transform: uppercase;
}
.nav-link {
  position: relative;
}
.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--dark);
}
.nav-link:hover::before {
  width: 100%;
}
@media (max-width: 1280px) {
  .nav-links li:not(:first-child) {
    margin-left: 20px;
  }
}
@media (max-width: 1070px) {
  .header__nav {
    width: 100%;
  }
  nav {
    position: absolute;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: flex;
  }
  .logo {
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin: 0;
  }
  .logo span {
    font-size: 2.2rem;
  }
  .nav__phone {
    font-size: 1.5rem;
  }
}
@media (max-width: 520px) {
  .header {
    height: 90px;
  }
  .header__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .logo {
    font-size: 2rem;
    letter-spacing: 0px;
    text-align: center;
  }
  .logo span {
    font-size: 2rem;
  }
  .nav__phone {
    font-size: 1.4rem;
  }
}
.burger-btn {
  display: none;
  width: 50px;
  height: 50px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  padding: 0;
}
.burger-line {
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s ease;
}
.burger-line:nth-child(1) {
  top: 15px;
}
.burger-line:nth-child(2) {
  top: 23px;
}
.burger-line:nth-child(3) {
  top: 31px;
}
/* Анимация при открытии бургер меню*/
.burger-btn.active .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-btn.active .burger-line:nth-child(2) {
  opacity: 0;
}
.burger-btn.active .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.burger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
  z-index: 99;
}
.burger-menu.active {
  transform: translateY(0);
}
.burger-links {
  list-style: none;
}
.burger-links li {
  margin: 15px 0 15px 0;
  padding: 5px 10px;
}
.burger-links a {
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: all 0.3s ease;
}
.burger-links a:hover {
  color: var(--primary);
}
@media (max-width: 1070px) {
  .burger-btn {
    display: flex;
  }
}
@media (max-width: 520px) {
  .burger-btn {
    left: 17vw;
    top: 16px;
  }
}
.upcoming-events {
  padding: 40px 0;
  border-radius: 12px;
  margin: 30px 0;
}
.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.badge {
  background: #ff4757;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 30px;
}
.event-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.event-image {
  position: relative;
}
.event-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.event-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1rem;
}
.event-content {
  padding: 2rem;
}
.event-content h3 {
  color: #2f3542;
  font-size: 2rem;
  margin-bottom: 15px;
}
.announcement {
  background: #f1f2f6;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.announcement a,
.announcement p {
  font-size: 1.2rem;
}
.event-card > * h4,
.event-card > * p {
  font-size: 1.2rem;
}
.announcement button {
  border: none;
  cursor: pointer;
  color: var(--primary);
  text-align: left;
}
.announcement button:hover {
  text-decoration: underline;
}
.event-details {
  margin-bottom: 20px;
}
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}
.benefits-list li {
  background: #e8f4fd;
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.included h4 {
  margin-bottom: 10px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 15px 0;
}
.included-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 5px;
  font-size: 1rem;
}
.special {
  background: #fff9e6;
  padding: 15px;
  border-left: 4px solid #ffd700;
  margin: 20px 0;
  border-radius: 0 5px 5px 0;
}
.events-footer {
  text-align: center;
  margin-top: 25px;
}
.urgency {
  color: #ff4757;
  font-weight: bold;
  margin-bottom: 20px;
}
.events-footer button {
  background: linear-gradient(135deg, #4a6fa5 0%, #2c5282 100%);
  color: white;
  padding: 12px 25px;
}
@media (min-width: 768px) {
  .upcoming-events {
    padding: 0;
  }
  .event-card {
    flex-direction: row;
  }
  .event-image {
    flex: 1;
  }
  .event-image img {
    height: 100%;
  }
  .event-content {
    flex: 1;
  }
  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 520px) {
  .event-content {
    padding: 0.8rem;
  }
}
/* ТАЙМЕР */
.countdown {
  font-family: 'Segoe UI', Roboto, sans-serif;
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--light-blue), var(--bright-blue));
  box-shadow: var(--shadow);
  color: white;
  transition: all 0.3s ease;
  animation: pulse 1.5s infinite;
}
/* Текст перед таймером */
.countdown > div:first-child {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
/* Сам таймер */
.countdown-timer {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
/* Адаптивность */
@media (max-width: 768px) {
  .countdown {
    padding: 1rem;
  }
  .countdown-timer {
    font-size: 1.5rem;
  }
}
/* Для летней темы */
/* Анимация пульсации */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.about-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  padding: 80px 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #3498db;
}
.section-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  font-weight: 300;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}
.team-photo {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about-image:hover .team-photo {
  transform: scale(1.02);
}
.experience-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #3498db;
  color: white;
  padding: 15px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}
.years {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
.label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-text {
  flex: 1;
  min-width: 300px;
}
.block-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.block-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #3498db;
}
.mission-block {
  margin-bottom: 40px;
}
.highlight-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #34495e;
  padding: 20px;
  background: #f8f9fa;
  border-left: 4px solid #3498db;
  border-radius: 0 8px 8px 0;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.features-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  margin-bottom: 10px;
  font-size: 1rem;
}
.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.offer-card {
  padding: 25px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.offer-card.winter {
  border-top: 3px solid #3498db;
}
.offer-card.summer {
  border-top: 3px solid #2ecc71;
}
.offer-card.bike {
  border-top: 3px solid #e74c3c;
}
.offer-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}
.offer-card h4 {
  margin: 0 0 10px 0;
  color: #2c3e50;
}
.offer-card p {
  margin: 0;
  color: #7f8c8d;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .about-section {
    padding: 2rem 0;
  }
  .about-content {
    flex-direction: column;
  }
  .experience-badge {
    width: 70px;
    height: 70px;
    top: -15px;
    right: -15px;
  }
  .years {
    font-size: 1.5rem;
  }
}
/* Форма обратной связи */
.call-back-form {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  z-index: 1111;
  display: none;
}
.call-back-container {
  position: absolute;
  left: 100%;
  top: 100%;
  transition: all 0.3s ease;
}
.close__form {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.5s ease;
}
.close__form::before,
.close__form::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 2px;
  background-color: gray;
  top: 50%;
  left: 50%;
}
.close__form::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close__form::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.call-back-container form {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 6px;
  padding: 24px;
  width: 400px;
}
.call-back-container form h3 {
  text-align: center;
}
.call-back-container form input,
.call-back-container form textarea {
  border-radius: 6px;
  padding: 12px 24px;
  margin-bottom: 24px;
  border: 2px solid lightgray;
  resize: vertical;
  transition: all 0.3s ease;
}
.close__form:hover {
  transform: rotate(90deg);
  color: #333;
}
.call-back-form button {
  width: 50%;
  margin: 0 auto;
  font-size: 14px;
  background-color: var(--primary);
}
@media (max-width: 400px) {
  .call-back-container {
    width: 100%;
  }
  .call-back-container form {
    width: 100%;
  }
}
/* Кнопка обратной связи */
/* Модальное окно */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
}
.modal .btn {
  background: linear-gradient(135deg, #4a6fa5 0%, #2c5282 100%);
}
.modal .btn:hover {
  background-color: var(--dark-blue);
  box-shadow: var(--shadow-active);
}
.modal-content {
  background: white;
  width: 100%;
  max-width: calc(768px - 4rem);
  margin: 50px auto;
  border-radius: 12px;
  overflow-x: hidden;
  position: relative;
}
.modal-close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 800;
  cursor: pointer;
  color: var(--red);
  border: none;
  background-color: transparent;
  transition: all 0.3s ease;
}
.modal-close:hover {
  color: var(--secondary);
}
.modal-header {
  height: 360px;
  background-size: cover;
  background-position: 50% 40%;
  position: relative;
}
.modal-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
}
.modal-body {
  padding: 30px;
}
.modal-overlay h2 {
  color: var(--gold);
  margin-top: 10px;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}
.highlight-icon {
  font-size: 1.5rem;
}
.tour-includes {
  margin-bottom: 36px;
}
.includes-list li {
  list-style: none;
  margin-bottom: 0.2rem;
}
.includes-list span {
  margin-right: 10px;
}
.included .icon {
  background-color: #2ecc71;
  color: white;
}
.excluded .icon {
  background-color: #e74c3c;
  color: white;
}
.tour-booking {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.price {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.price-note {
  color: #7f8c8d;
  font-size: 0.9rem;
}
/* Адаптивность */
@media (max-width: 768px) {
  .modal-content {
    margin: 2rem;
    width: auto;
  }
  .tour-booking {
    flex-direction: column;
    gap: 15px;
  }
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
  overflow-y: auto;
}
.booking-form {
  background: white;
  border-radius: 12px;
  width: 100%;
  height: fit-content;
  max-width: 500px;
  padding: 30px;
  margin: 2rem auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}
.booking-form__header {
  margin-bottom: 25px;
  text-align: center;
}
.booking-form__title {
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
}
.booking-form__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: gray;
  transition: color 0.3s ease;
}
.booking-form__close:hover {
  color: var(--orange);
}
.booking-form__price {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
  font-weight: bold;
}
.booking-form__price-value {
  color: #007bff;
  font-size: 1.2em;
}
.booking-form__field {
  margin-bottom: 20px;
}
.booking-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}
.booking-form__input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
}
.booking-form__input:focus {
  outline: none;
  border-color: #4a6fa5;
}
.booking-form__date-wrapper {
  display: flex;
  gap: 15px;
}
.booking-form__submit {
  width: 100%;
  padding: 14px;
  background-color: #4a6fa5;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
}
.booking-form__error {
  color: #d32f2f;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}
@media (max-width: 548px) {
  .booking-form {
    margin: 2rem;
    width: auto;
  }
}
/* Сезонные туры */
#tours {
  background: var(--white);
  transition: background 0.3s ease;
  position: relative;
}
.season-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}
.season-tab {
  padding: 10px 30px;
  background: var(--light);
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
  color: #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 0 rgba(255, 255, 255, 0.8) inset, 0 -2px 4px rgba(0, 0, 0, 0.1) inset;
}
.season-tab.active {
  background: var(--light-blue);
  color: white;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.3);
}
.tours-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.tours-summer button {
  background-color: var(--bright-green);
}
.tours-summer button:hover {
  background-color: var(--dark-green);
  box-shadow: 1px 2px 2px 0px var(--bright-green);
}
.tours-summer span {
  color: var(--bright-green);
}
.tours-winter button {
  background-color: #fff;
  color: var(--primary);
  border: 2px var(--primary) solid;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.tours-winter button:hover {
  background-color: var(--primary);
  color: var(--light);
  transform: none;
}
.tours-winter span {
  color: var(--bright-blue);
}
.tour-card {
  width: 400px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tour-img {
  height: 300px;
  overflow: hidden;
}
.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-img img {
  transform: scale(1.05);
}
.tour-info {
  padding: 20px;
}
.tour-price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 10px 0;
}
.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e74c3c;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}
.tour-meta {
  display: flex;
  gap: 15px;
  margin: 10px 0;
  font-size: 0.9rem;
  color: #7f8c8d;
}
.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.tour-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #2c3e50;
}
.tour-details-btn {
  text-transform: none;
  box-shadow: none !important;
}
/* Accommodation Section */
.accommodation-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.accommodation-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: #4a6fa5 transparent;
}
.accommodation-slider::-webkit-scrollbar {
  height: 6px;
}
.accommodation-slider::-webkit-scrollbar-thumb {
  background: #4a6fa5;
  border-radius: 3px;
}
.accommodation-slide {
  flex: 0 0 300px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.accommodation-slide:hover {
  transform: translateY(-5px);
}
.accommodation-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.accommodation-info {
  padding: 20px;
}
.accommodation-info h3 {
  color: #2d3748;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.accommodation-info p {
  color: #718096;
  line-height: 1.5;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.feature-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.feature-item h4 {
  color: #2d3748;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.feature-item p {
  color: #718096;
  line-height: 1.5;
}
.accommodation-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.detail-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.detail-card h3 {
  color: #2d3748;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.included-list,
.additional-list {
  list-style: none;
  padding: 0;
}
.included-list li,
.additional-list li {
  padding: 8px 0;
  color: #4a5568;
  border-bottom: 1px solid #e2e8f0;
}
.included-list li:last-child,
.additional-list li:last-child {
  border-bottom: none;
}
.accommodation-cta {
  text-align: center;
  padding: 40px 0;
}
.cta-text {
  font-size: 1.2rem;
  color: #2d3748;
  margin-bottom: 20px;
  font-weight: 500;
}
.accommodation-btn {
  background: linear-gradient(135deg, #4a6fa5 0%, #2c5282 100%);
  border: none;
  padding: 15px 30px;
}
.accommodation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 111, 165, 0.3);
}
/* Responsive Design */
@media (max-width: 768px) {
  .accommodation-slide {
    flex: 0 0 250px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .accommodation-details {
    grid-template-columns: 1fr;
  }
  .detail-card {
    padding: 20px;
  }
}
/* Что взять с собой */
#equipment {
  background-color: #E1F5FE;
  transition: all 0.3s ease;
  padding: 80px 0;
}
.equipment-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.equipment-content.active {
  display: flex;
}
.equipment-content ul {
  padding-left: 1.2rem;
  list-style-type: none;
}
.equipment-content li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.equipment-content li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: currentColor;
  font-weight: bold;
}
.equipment-content p {
  width: 100%;
  font-weight: bold;
  color: var(--dark-blue);
}
.essentials__summer,
.essentials__winter {
  width: 294px;
}
.essentials__summer h3,
.essentials__summer li {
  color: var(--dark-green);
}
.essentials__winter h3,
.essentials__winter li {
  color: var(--dark-blue);
}
@media (max-width: 1280px) {
  .equipment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .season-switcher {
    flex-direction: column;
    gap: 10px;
  }
  .essentials__summer,
  .essentials__winter {
    margin-left: 2vw;
  }
  .equipment-content {
    gap: 30px;
    grid-template-columns: 1fr;
  }
}

/* АРЕНДА СНАРЯЖЕНИЯ */
.rent {background-color: #0A2E52;}
.rent__header {width: 100%;  position: relative;}
.rent__header img {position: absolute; width: 100%; height: 100%; object-fit: cover;}
.rent__header-shadow {width: 100%; height: 100%; position: absolute; top: 0; left: 0;  background-color: rgba(0, 0, 0, 0.5);}
.rent__header-content {position: relative; padding: 5rem 0;}
.rent__header-content > * {color: #B3E5FC; text-transform: uppercase; text-align: center;}
.rent__header-content h1 {font-size: 4rem; font-weight: 400;}
.rent__header-content h2 {font-size: 2rem; font-weight: 400;}
.rent__body {display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem; margin: 3rem 0;}
.rent__body-block {background-color: var(--dark); border-radius: 16px; }
.rent__body-image {display: block; width: 100%; aspect-ratio: 3 / 4;  border-radius: 16px; overflow: hidden; position: relative; }
.rent__body-image img {width: 100%; height: 100%; position: absolute; transition: all .5s ;}
/* Первое изображение всегда видно */
.image-front {
  opacity: 1;
  transform: scale(1);
}
/* Второе изображение скрыто */
.image-back {
  opacity: 0;
  transform: scale(1.1);
}
/* Эффект при наведении */
.rent__body-image:hover .image-front {
  opacity: 0;
  transform: scale(1.1);
}
.rent__body-image:hover .image-back {
  opacity: 1;
  transform: scale(1);
}
.rent__body-content {background-color: var(--dark);}
.rent__body-content p {color: #f8f9fa; padding: 1rem 0 1rem 1rem; line-height: 1.6; font-weight: 800;}
.rent__body-content span {color: #f8f9fa; display: block; font-weight: 100; font-style: italic;} 

.rent__footer {padding-bottom: 2rem;}
.rent__footer p {color: #f8f9fa; text-align: center;}
@media (max-width: 1024px) {
  .rent__body {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .rent__header-content {padding: 4rem 2rem;}
  .rent__header-content h1 {font-size: 3rem; }
  .rent__header-content h2 {font-size: 1.5rem; }
  .rent__body {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .rent__header-content {padding: 3rem 2rem;}
  .rent__header-content h1 {font-size: 2rem; }
  .rent__header-content h2 {font-size: 1.2rem; }
  .rent__body {
    grid-template-columns: 1fr;
  }
}



.program-section {
  padding: 60px 0;
}
.program-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--bright-blue);
  /* Можно менять в зависимости от сезона */
}
.program-tabs {
  display: flex;
  margin-bottom: 2rem;
  gap: 10px;
}
.program-tab {
  padding: 10px 20px;
  background: #e0e0e0;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
  color: #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 0 rgba(255, 255, 255, 0.8) inset, 0 -2px 4px rgba(0, 0, 0, 0.1) inset;
}
.program-tab:not(.active):hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.38) !important;
  background-color: #e0e0e0 !important;
}
.program-tab.active {
  pointer-events: none ;
  background: #e0e0e0;
  /* Можно менять в зависимости от сезона */
  color: black;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.3);
}
.program-day {
  display: none;
}
.program-day.active {
  display: block;
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  height: 100%;
  width: 2px;
  background: var(--bright-blue);
  /* Можно менять в зависимости от сезона */
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}
.timeline-dot {
  position: absolute;
  left: -30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bright-blue);
  /* Можно менять в зависимости от сезона */
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--bright-blue);
}
.timeline-time {
  flex: 0 0 120px;
  font-weight: 600;
  color: var(--bright-blue);
  /* Можно менять в зависимости от сезона */
}
.timeline-content {
  flex: 1;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.timeline-content h3 {
  margin-top: 0;
  color: var(--bright-blue);
  /* Можно менять в зависимости от сезона */
}
@media (max-width: 768px) {
  .program-section {
    padding: 2rem 0;
  }
  .program-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  .program-tab {
    margin-right: 1rem;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .timeline-item {
    flex-direction: column;
  }
  .timeline-time {
    margin-bottom: 5px;
    flex: 0 0 40px;
  }
  .timeline-content {
    width: 100%;
  }
}
/* Правила поведения */
#rules {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 60px 0;
}
.rules-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.rules-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
  padding-right: 1rem;
}
.rules-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--red);
}
.rules-header h3 {
  margin: 0;
  font-size: 1.2rem;
}
.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.accordion-icon:hover {
  transform: scale(1.4);
}
.rules-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg) scale(1.4);
}
.rules-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
}
.rules-content ul {
  padding-left: 1.5rem;
  list-style-type: none;
}
.rules-content li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  font-size: 1rem;
}
.rules-content li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: currentColor;
  font-weight: bold;
}
@media (max-width: 768px) {
  .rules-header {
    padding: 12px 0;
  }
  .rules-header h3 {
    font-size: 1.1rem;
  }
}
/* Стили для списка с иконками */
.icon-list {
  list-style: none;
  padding-left: 0;
}
.icon-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  line-height: 1.5;
}
.icon {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.2em;
  min-width: 24px;
  text-align: center;
}
.sublist {
  list-style-type: disc;
  padding-left: 36px;
  /* 24px (иконка) + 12px (отступ) */
  margin-top: 8px;
  color: var(--red);
}
.sublist li {
  margin-bottom: 6px;
}
/* Адаптивность */
@media (max-width: 768px) {
  .icon {
    margin-right: 8px;
  }
  .sublist {
    padding-left: 28px;
  }
}
/* Галерея */
.gallery {
  background-color: white;
  padding-bottom: 120px;
  margin: 0 auto;
}
.gallery .container {
  width: 100%;
  max-width: 1600px;
}
.gallery__title {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gallery__title-winter,
.gallery__title-summer {
  margin: 2rem 1rem 1rem 0rem;
}
.gallery__title-winter {
  color: var(--dark-blue);
}
.gallery__title-summer {
  color: var(--dark-green);
}
.gallery-slider {
  overflow: hidden;
  position: relative;
}
.gallery-track {
  display: flex;
  gap: 15px;
  width: max-content;
  will-change: transform;
  /* Подсказка браузеру, что элемент будет анимирован */
  transform: translateZ(0);
  /* Активирует GPU */
}
.gallery-item {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
}
.gallery-item:hover {
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.gallery__btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.gallery__btn a {
  background: linear-gradient(135deg, #4a6fa5 0%, #2c5282 100%);
}
@media (max-width: 768px) {
  #gallery .container {
    width: 100%;
    padding: 0;
  }
  .gallery h2 {
    padding-left: 2rem;
  }
  .gallery__title-winter,
  .gallery__title-summer {
    margin: 2rem 1rem 1rem;
  }
}
@media (max-width: 420px) {
  .gallery h2 {
    padding-left: 1rem;
  }
}
/* Отзывы */
#reviews {
  background-color: #E1F5FE;
}
.reviews {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
}
.review-card {
  position: relative;
  min-width: 350px;
  max-width: 420px;
  background: var(--white);
  padding: 20px;
  margin: 0 2px;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}
.review-card:hover {
  box-shadow: 0 2px 8px var(--shadow);
}
.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  width: max-content;
}
.review-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f5f5f5;
  position: relative;
  bottom: 0;
}
.review-date {
  color: #666666;
  font-size: 0.8rem;
}
.review-type {
  color: #5a7ea8;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 480px) {
  .review-card {
    min-width: 320px;
  }
  .review-avatar {
    width: 44px;
    height: 44px;
  }
}
#news {
  padding: 80px 0;
  background: #f8f9fa;
}
#news h2 {
  margin-bottom: 30px;
}
.news-grid {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  margin-bottom: 30px;
}
.news-card {
  min-width: 420px;
  max-width: 420px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.news-card:hover {
  transform: translateY(-5px);
}
.news-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-img img {
  transform: scale(1.05);
}
.news-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}
.news-content {
  padding: 20px;
}
.news-content time {
  font-size: 13px;
  color: #666;
}
.news-content h3 {
  margin: 10px 0;
  font-size: 18px;
}
.news-content p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}
.read-more {
  color: #4CAF50;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.read-more:hover {
  text-decoration: underline;
}
.all-news {
  display: inline-block;
  padding: 10px 20px;
  background: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.all-news:hover {
  background: #3e8e41;
}
footer {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
  text-align: center;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  width: 100%;
  background-image: url("../../img/main/snowboard-tour-sheregesh.jpg");
  background-size: cover ;
  background-position: center center;
  background-repeat: no-repeat;
}
.footer__background {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 50px 0 0;
}
footer h2 {
  text-align: left;
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.footer__contact {
  text-align: left;
  font-size: 20px;
}
.footer__contact p {
  display: flex;
  align-items: center;
}
.footer__contact-img {
  width: 50px;
  border: 1px solid var(--light);
  border-radius: 50%;
  padding: 10px;
  opacity: 0.8;
}
.footer__contact a {
  font-weight: 400;
  color: var(--light);
  text-decoration: none;
  margin-left: 1rem;
  white-space: nowrap;
  font-size: 20px;
}
.footer__contact a:hover {
  text-decoration: underline;
}
.footer__contact i {
  width: 42px;
  height: 42px;
  color: var(--white);
  position: relative;
  opacity: 0.8;
  font-size: 1.6rem;
}
.fas {
  border: 1px solid var(--white);
  border-radius: 50%;
  padding: 10px;
}
.footer__social-links {
  margin-top: -10px;
}
.footer__social-links a {
  width: 30px;
  font-size: 3rem;
  text-decoration: none;
  margin-left: 1rem;
}
.footer__social-links a i {
  font-size: 3rem;
  filter: brightness(1.2);
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer__social-links a i:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}
.copyright {
  color: var(--white);
  margin: 30px 0 0 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
}
.copyright span {
  color: var(--white);
  margin: 30px 0 0 0;
  padding: 1rem 0;
  font-size: 1rem;
}
@media (max-width: 768px) {
  footer .container {
    padding: 0 2rem;
  }
  .footer__content {
    grid-template-columns: auto 1fr;
    margin-bottom: 70px;
  }
  .footer__column:nth-child(2) {
    display: none;
  }
  .footer__links {
    display: none;
    flex-direction: inherit;
    justify-content: space-between;
  }
  .footer__social-links {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .social-links {
    margin: 20px 0;
  }
  .copyright {
    margin: 0;
  }
}


:root {
  --white: #ffffff;
  --primary: #4a6fa5;
  --secondary: #ff7e5f;
  --dark: #333333;
  --light: #f8f9fa;
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-active: 0 4px 6px rgba(0, 0, 0, 0.4);
  --gold: #f1c40f;
  /* советы сезонов*/
  --winter-ice: #B3E5FC;
  --grass: #AED581;
  --grass-text: #F1F8E9;
  --beige: #F5F5DC;
  --orange: #FB8C00;
  --red: #D32F2F;
  --light-green: #8BC34A;
  --light-blue: #4FC3F7;
  --bright-blue: #1976D2;
  --bright-green: #388E3C;
  --dark-blue: #0D47A1;
  --dark-green: #2E7D32;
  --dark-green-bg: #1B5E20;
  --dark-blue-bg: #0A2E52;
}


