:root {
--color-white: #FFFFFF;
--color-white-20: rgba(255, 255, 255, 0.2);
--color-white-50: rgba(255, 255, 255, 0.5); --winter-primary: #1a5fb4;
--winter-panel-bg: rgba(26, 95, 180, 0.8);
--winter-page-bg: #D9EFFF; --summer-primary: #4a9b4a;
--summer-panel-bg: rgba(74, 155, 74, 0.8);
--summer-page-bg: #FFFFFF; --font-family: 'Montserrat', sans-serif;
} .dombay-homepage {
margin: 0;
padding: 0;
background-color: var(--winter-page-bg);
transition: background-color 0.6s ease;
}
.dombay-homepage.season-summer {
background-color: var(--summer-page-bg);
}
.dombay-home {
overflow-x: hidden;
}
.dombay-homepage .site-content,
.dombay-homepage #content,
.dombay-homepage .ast-container {
padding: 0;
max-width: 100%;
} .dombay-header {
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 100;
padding: 20px 60px;
border-bottom: 1px solid var(--color-white-20);
}
.dombay-header--transparent {
background: transparent;
}
.header-container {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1920px;
margin: 0 auto;
} .header-left {
display: flex;
align-items: center;
gap: 50px;
} .burger-menu {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 6px;  width: 85px;
height: 46px;
background: transparent;
border: 1px solid var(--color-white);
border-radius: 50px;
cursor: pointer;
color: var(--color-white);
transition: background-color 0.3s ease;
box-sizing: border-box;
}
.burger-menu:hover {
background: var(--color-white-20);
}
.burger-line {
display: block;
width: 37px;
height: 2px;
} .header-nav {
display: flex;
align-items: center;
gap: 40px;
}
.nav-link {
font-family: var(--font-family);
font-size: 16px;
font-weight: 400;
color: var(--color-white);
text-decoration: none;
transition: opacity 0.3s ease;
}
.nav-link:hover {
opacity: 0.8;
color: var(--color-white);
} .header-center {
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.header-logo {
display: block;
}
.header-logo svg {
display: block;
height: 49px;
width: auto;
} .header-right {
display: flex;
align-items: center;
}
.season-toggle {
display: flex;
align-items: center;
gap: 8px;
}
.season-btn {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
background: transparent !important;
background-color: transparent !important;
border: 1px solid transparent;
border-radius: 50px;
cursor: pointer;
font-family: var(--font-family);
font-size: 16px;
font-weight: 400;
color: var(--color-white);
transition: all 0.3s ease;
box-shadow: none !important;
}
.season-btn:hover {
border-color: var(--color-white-50);
background: transparent !important;
}
.season-btn:focus,
.season-btn:active {
background: transparent !important;
outline: none;
}
.season-btn.active {
border-color: var(--color-white);
background: transparent !important;
}
.season-icon {
width: 20px;
height: 20px;
} .hero-section {
position: relative;
height: 1100px;
display: flex;
flex-direction: column;
overflow: hidden;
} .hero-background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
}
.hero-bg-winter,
.hero-bg-summer {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
background-position: center bottom;
background-repeat: no-repeat;
transition: opacity 0.6s ease;
}
.hero-bg-winter {
background-image: url(//dombay-resort.ru/wp-content/uploads/2026/01/Zimnij-fon-1.jpg);
opacity: 1;
}
.hero-bg-summer {
background-image: url(//dombay-resort.ru/wp-content/uploads/2026/01/Letnij-fon-1.jpg);
opacity: 0;
} .season-summer .hero-bg-winter {
opacity: 0;
}
.season-summer .hero-bg-summer {
opacity: 1;
} .hero-content {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding-top: 170px; text-align: center;
} .hero-title {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
color: var(--color-white);
font-family: var(--font-family);
text-transform: uppercase;
}
.hero-title-top {
font-size: 128px;
font-weight: 400;
letter-spacing: normal;
line-height: 1;
}
.hero-title-bottom {
font-size: 135px;
font-weight: 800;
letter-spacing: 0.05em;
margin-right: -0.05em;
line-height: 135px;
margin-top: -10px;
}
.hero-subtitle {
font-family: var(--font-family);
font-size: 40px;
font-weight: 400;
color: var(--color-white);
margin-top: 10px;
align-self: flex-end;
text-transform: none;
} .weather-widget {
position: absolute;
top: 180px;
right: 100px;
display: flex;
align-items: center;
gap: 15px;
}
.weather-icon {
width: 80px;
height: auto;
}
.weather-info {
display: flex;
flex-direction: column;
align-items: flex-start;
color: var(--color-white);
}
.weather-temp {
font-family: var(--font-family);
font-size: 32px;
font-weight: 500;
}
.weather-desc {
font-family: var(--font-family);
font-size: 14px;
font-weight: 400;
opacity: 0.8;
} .quick-links {
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
padding: 20px 60px;
background: var(--winter-panel-bg);
border-radius: 50px;
margin: 160px auto 40px;
backdrop-filter: blur(10px);
transition: background-color 0.6s ease;
}
.season-summer .quick-links {
background: var(--summer-panel-bg);
}
.quick-link {
display: flex;
align-items: center;
gap: 10px;
font-family: var(--font-family);
font-size: 16px;
font-weight: 400;
color: var(--color-white);
text-decoration: none;
transition: opacity 0.3s ease;
}
.quick-link:hover {
opacity: 0.8;
color: var(--color-white);
}
.quick-link-icon {
width: 24px;
height: 24px;
}
.quick-link-divider {
display: flex;
align-items: center;
}
.quick-link-divider img {
height: 16px;
width: auto;
opacity: 0.5;
} .about-section {
position: relative;
z-index: 10;
margin-top: -200px; padding-bottom: 80px;
overflow: visible;
}
.about-container {
display: grid;
grid-template-columns: auto 1fr;
gap: 0;
align-items: center;
max-width: 1448px;
margin: 0 auto;
padding: 0 24px;
} .about-character {
position: relative;
flex-shrink: 0;
}
.about-character .character-winter,
.about-character .character-summer {
max-width: 550px;
height: auto;
display: block;
transition: opacity 0.6s ease;
}
.about-character .character-winter {
opacity: 1;
}
.about-character .character-summer {
position: absolute;
bottom: 0;
left: -50px;
opacity: 0;
max-width: 550px;
}
.season-summer .about-character .character-winter {
opacity: 0;
}
.season-summer .about-character .character-summer {
opacity: 1;
} .about-title {
font-family: var(--font-family);
font-size: 32px;
font-weight: 700;
color: #004E92;
margin: 0 0 20px 0;
text-transform: uppercase;
transition: color 0.6s ease;
}
.season-summer .about-title {
color: var(--summer-primary);
}
.about-text {
font-family: var(--font-family);
font-size: 16px;
font-weight: 400;
line-height: 1.6;
color: #004E92;
margin: 0 0 30px 0;
}
.season-summer .about-text {
color: #555;
}
.about-btn {
display: inline-flex;
align-items: center;
position: relative;
gap: 20px;
padding: 15px 30px 15px 80px;
border-radius: 50px;
background: rgba(255, 255, 255, 0.4);
border: none;
font-family: var(--font-family);
font-size: 16px;
font-weight: 500;
color: #004E92;
text-decoration: none;
overflow: hidden;
z-index: 1;
}
.about-btn span {
transition: transform 0.4s ease;
position: relative;
z-index: 1;
}
.about-btn:hover span {
transform: translateX(-50px);
}
.about-btn-icon {
position: absolute;
width: 70px;
height: 70px;
left: -5px;
transition: all 0.4s ease;
z-index: 1;
}
.about-btn-icon circle {
fill: var(--color-white);
}
.about-btn-icon path {
fill: #004E92;
stroke: var(--color-white);
}
.about-btn:hover .about-btn-icon {
left: calc(100% - 65px);
transform: rotate(45deg);
} .season-summer .about-btn {
background: var(--color-white);
border: 1px solid #386C00;
color: #386C00;
}
.season-summer .about-btn-icon circle {
fill: #E5ECDE;
}
.season-summer .about-btn-icon path {
fill: #386C00;
stroke: #E5ECDE;
} @media (max-width: 1200px) {
.hero-title-top {
font-size: 60px;
}
.hero-title-bottom {
font-size: 90px;
}
.weather-widget {
right: 40px;
}
.about-character .character-winter,
.about-character .character-summer {
max-width: 400px;
}
.about-card {
padding: 40px;
max-width: 480px;
}
}
@media (max-width: 992px) {
.dombay-header {
padding: 15px 30px;
}
.header-nav {
display: none;
}
.hero-title-top {
font-size: 48px;
}
.hero-title-bottom {
font-size: 72px;
}
.quick-links {
flex-wrap: wrap;
padding: 15px 30px;
gap: 15px;
}
.quick-link-divider {
display: none;
}
.about-section {
margin-top: -150px;
}
.about-container {
flex-direction: column;
align-items: center;
padding: 0 30px;
}
.about-character .character-winter,
.about-character .character-summer {
max-width: 350px;
}
.about-card {
max-width: 100%;
margin-top: -50px;
}
} .header-home-mobile-actions {
display: none;
} .dombay-homepage .tg-popup { display: none; }
.dombay-homepage .tg-popup.active { display: block; }
.dombay-homepage .tg-popup__overlay { position: fixed; inset: 0; z-index: 9998; }
.dombay-homepage .tg-popup__card {
position: absolute; top: 100%; right: 0; z-index: 9999;
margin-top: 12px; width: 340px; background: #fff;
border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.18);
padding: 24px 20px 16px; animation: tgFadeIn 0.2s ease;
}
@keyframes tgFadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.dombay-homepage .tg-popup__close,
.dombay-homepage .tg-popup__close:hover,
.dombay-homepage .tg-popup__close:focus {
position: absolute; top: 12px; right: 16px;
background: none !important; border: none !important; box-shadow: none !important;
font-size: 24px; color: #999; cursor: pointer; line-height: 1;
padding: 4px 8px !important; min-width: auto !important;
}
.dombay-homepage .tg-popup__close:hover { color: #333 !important; }
.dombay-homepage .tg-popup__title {
font-family: 'Montserrat', sans-serif;
font-size: 16px; font-weight: 700; color: #1a1a2e; margin: 0 0 16px;
}
.dombay-homepage .tg-popup__link {
display: flex; align-items: center; gap: 14px;
padding: 14px 12px; border-radius: 12px;
text-decoration: none; color: #1a1a2e; transition: background 0.2s;
}
.dombay-homepage .tg-popup__link:hover { background: #f0f4f8; }
.dombay-homepage .tg-popup__link + .tg-popup__link { margin-top: 4px; }
.dombay-homepage .tg-popup__icon {
width: 48px; height: 48px; border-radius: 50%;
display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dombay-homepage .tg-popup__icon--chat { background: #0088cc; }
.dombay-homepage .tg-popup__icon--admin { background: #066acd; }
.dombay-homepage .tg-popup__info { flex: 1; min-width: 0; }
.dombay-homepage .tg-popup__name { display: block; font-size: 14px; font-weight: 600; color: #1a1a2e; line-height: 1.3; }
.dombay-homepage .tg-popup__desc { display: block; font-size: 12px; color: #777; margin-top: 2px; line-height: 1.4; }
.dombay-homepage .tg-popup__arrow { flex-shrink: 0; color: #bbb; }
.dombay-homepage .tg-popup__link:hover .tg-popup__arrow { color: #066acd; } .mobile-season-toggle {
display: none;
}
@media (max-width: 768px) { .dombay-header {
padding: 12px 16px;
}
.header-container {
justify-content: flex-start;
} .header-nav,
.header-right {
display: none;
} .header-center {
position: static;
transform: none;
order: -1;
}
.header-logo svg {
height: 30px;
} .header-home-mobile-actions {
display: flex;
align-items: center;
margin-left: auto;
color: white;
}
.header-home-mobile-actions .header-actions {
display: flex;
align-items: center;
gap: 10px;
position: relative;
}
.header-home-mobile-actions .header-action-btn {
display: flex;
align-items: center;
justify-content: center;
color: white;
background: none;
border: none;
padding: 0;
cursor: pointer;
}
.header-home-mobile-actions .header-action-btn svg {
width: 24px;
height: 24px;
} .header-left {
display: flex;
gap: 0;
order: 1;
margin-left: 12px;
}
.dombay-header--transparent .burger-menu {
width: 52px;
height: 34px;
gap: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='8'%3E%3Cline x1='0' y1='1' x2='22' y2='1' stroke='white' stroke-width='2'/%3E%3Cline x1='0' y1='7' x2='22' y2='7' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center;
}
.dombay-header--transparent .burger-menu .burger-line {
display: none;
} .dombay-header--transparent {
position: fixed;
transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.dombay-header--transparent.header-scrolled {
background: #fff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
padding: 8px 16px;
}
.dombay-header--transparent.header-scrolled .header-logo svg path {
fill: #066acd;
transition: fill 0.3s ease;
}
.dombay-header--transparent.header-scrolled .header-home-mobile-actions {
color: #066acd;
}
.dombay-header--transparent.header-scrolled .header-home-mobile-actions .header-action-btn {
color: #066acd;
}
.dombay-header--transparent.header-scrolled .burger-menu {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='8'%3E%3Cline x1='0' y1='1' x2='22' y2='1' stroke='%23066acd' stroke-width='2'/%3E%3Cline x1='0' y1='7' x2='22' y2='7' stroke='%23066acd' stroke-width='2'/%3E%3C/svg%3E") !important;
border: 1px solid #066acd !important;
}
.dombay-header--transparent.header-scrolled .header-logo svg {
height: 24px;
} .dombay-homepage .tg-popup__card {
position: fixed;
top: 60px;
left: 16px;
right: 16px;
width: auto;
} .hero-section {
height: auto;
min-height: 600px;
padding-bottom: 0;
position: relative;
}
.hero-content {
padding-top: 100px;
}
.hero-title-top {
font-size: 40px;
font-weight: 400;
letter-spacing: 0.1em;
}
.hero-title-bottom {
font-size: 56px;
font-weight: 800;
line-height: 1;
margin-top: 0;
}
.hero-subtitle {
font-size: 18px;
align-self: center;
margin-top: 5px;
} .weather-widget {
position: relative;
top: auto;
bottom: auto;
left: auto;
right: auto;
flex-direction: row;
margin-top: 30px;
}
.weather-icon {
width: 60px;
}
.weather-temp {
font-size: 20px;
}
.weather-desc {
font-size: 12px;
} .mobile-season-toggle {
display: flex;
position: absolute;
bottom: -180px;
left: 50%;
transform: translateX(-50%);
background: rgba(255, 255, 255, 0.3);
border-radius: 50px;
padding: 6px;
backdrop-filter: blur(10px);
gap: 0;
z-index: 20;
}
.mobile-season-toggle .season-btn {
width: 60px;
height: 60px;
padding: 0;
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease;
}
.mobile-season-toggle .season-btn .season-icon {
width: 28px;
height: 28px;
transition: filter 0.3s ease;
}
.mobile-season-toggle .season-btn.active {
background: #1b5fb4 !important;
}
.mobile-season-toggle .season-btn:not(.active) .season-icon {
filter: brightness(0) invert(1);
opacity: 0.7;
}
.mobile-season-toggle .season-btn.active .season-icon {
filter: none;
} .season-summer .mobile-season-toggle .season-btn--summer.active {
background: #8BC34A !important;
} .quick-links {
display: none;
} .about-section {
margin-top: -50px;
padding: 0 20px 40px;
pointer-events: none;
}
.about-container {
display: flex;
flex-direction: column;
align-items: center;
padding: 0;
gap: 0;
}
.about-character {
order: 1;
}
.about-character .character-winter,
.about-character .character-summer {
max-width: 300px;
}
.about-character .character-summer {
left: 0;
max-width: 300px;
}
.about-card {
display: none;
}
} .services-section {
background: #D8EFFF !important;
padding: 80px 0 120px;
transition: background-color 0.6s ease;
}
body.season-winter .services-section,
.season-winter .services-section {
background: #D8EFFF !important;
}
body.season-summer .services-section,
.season-summer .services-section {
background: #FFFFFF !important;
}
.services-container {
max-width: 1448px;
margin: 0 auto;
padding: 0 24px;
}
.services-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 40px;
}
.services-title {
font-family: 'Montserrat', sans-serif;
font-size: 36px;
font-weight: 700;
color: #1B5FB4;
margin: 0;
transition: color 0.6s ease;
}
.services-subtitle {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 500;
color: #4b5563;
margin: 12px 0 0;
max-width: 700px;
line-height: 1.6;
}
.season-summer .services-title {
color: #4a9b4a;
}
.season-summer .services-subtitle {
color: #6b7280;
}
.services-nav {
display: flex;
gap: 10px;
}
.services-nav-btn {
width: 50px;
height: 60px;
flex-shrink: 0;
aspect-ratio: 1;
border-radius: 50%;
border: 2px solid #1B5FB4;
background: transparent;
color: #1B5FB4;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
box-sizing: border-box;
}
.services-nav-btn svg {
width: 24px;
height: 24px;
flex-shrink: 0;
}
.services-nav-btn:hover {
background: #1B5FB4;
color: #ffffff;
}
.services-nav-btn:disabled {
opacity: 0.3;
cursor: not-allowed;
}
.services-nav-btn:disabled:hover {
background: transparent;
color: #1B5FB4;
} .season-summer .services-nav-btn {
border-color: #4a9b4a;
color: #4a9b4a;
}
.season-summer .services-nav-btn:hover {
background: #4a9b4a;
color: #ffffff;
}
.season-summer .services-nav-btn:disabled:hover {
background: transparent;
color: #4a9b4a;
} .services-grid-wrapper {
overflow: hidden;
}
.services-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(2, 280px);
gap: 20px;
} .service-card {
position: relative;
border-radius: 20px;
overflow: hidden;
text-decoration: none;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 20px;
transition: transform 0.3s ease;
}
.service-card:hover {
transform: scale(1.02);
}
.service-card__image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #87CEEB 0%, #5BA3D9 100%);
background-size: cover;
background-position: center;
z-index: 0;
}
.service-card__title {
position: relative;
z-index: 1;
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 700;
color: #ffffff;
text-transform: uppercase;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.service-card__arrow {
position: absolute;
top: 20px;
right: 20px;
z-index: 1;
color: rgba(255, 255, 255, 0.9);
}
.service-card__arrow svg {
width: 50px;
height: 50px;
display: block;
} .service-card--small {
grid-column: span 1;
grid-row: span 1;
}
.service-card--tall {
grid-column: span 1;
grid-row: span 2;
}
.service-card--wide {
grid-column: span 2;
grid-row: span 1;
} .services-swiper-mobile {
display: none;
} @media (max-width: 768px) {
.services-section {
padding: 40px 0;
}
.services-container {
padding: 0 20px;
}
.services-header {
margin-bottom: 25px;
}
.services-title {
font-size: 26px;
}
.services-subtitle {
font-size: 14px;
margin-top: 6px;
} .services-nav {
display: none;
} .services-swiper-desktop {
display: none;
} .services-swiper-mobile {
display: block;
overflow: visible;
}
.services-slider-wrapper {
margin-left: -20px;
margin-right: -20px;
padding-left: 20px;
padding-right: 10px;
}
.services-swiper-mobile .swiper-slide {
width: 280px;
} .service-card-mobile {
display: block;
position: relative;
border-radius: 20px;
overflow: hidden;
text-decoration: none;
height: 380px;
}
.service-card-mobile__image {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #87CEEB 0%, #5BA3D9 100%);
background-size: cover;
background-position: center;
}
.service-card-mobile__title {
position: absolute;
bottom: 20px;
left: 20px;
right: 20px;
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 700;
color: #ffffff;
text-transform: uppercase;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
}
@media (max-width: 1024px) and (min-width: 769px) {
.services-grid {
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 220px);
}
.service-card--tall {
grid-row: span 2;
}
.service-card--wide {
grid-column: span 2;
}
} .cableways-section {
position: relative;
background-image: url(//dombay-resort.ru/wp-content/uploads/2026/01/fon-mini-gor.jpg);
background-size: cover;
background-position: center top;
background-repeat: no-repeat;
transition: background-image 0.6s ease;
} .season-summer .cableways-section {
background-image: url(//dombay-resort.ru/wp-content/uploads/2026/01/fon-mini-gor-summer.jpg);
} .cableways-content {
padding: 80px 24px;
max-width: 1448px;
margin: 0 auto;
} .cableways-header {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin-bottom: 60px;
width: 100%;
}
.cableways-subtitle {
font-family: var(--font-family);
font-size: 40px;
font-weight: 600;
color: #FFFFFF;
text-transform: uppercase;
letter-spacing: 0.05em;
margin: 0 0 10px 0;
line-height: 1.3;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.cableways-stat {
font-family: var(--font-family);
font-size: 220px;
font-weight: 700;
color: #FFFFFF;
line-height: 1;
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
margin-bottom: 0;
}
.cableways-lines {
height: 80px;
width: auto;
margin: 60px 0;
}
.cableways-map-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 18px 50px;
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 50px;
font-family: var(--font-family);
font-size: 18px;
font-weight: 600;
color: #FFFFFF;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 0.05em;
transition: all 0.3s ease;
}
.cableways-map-btn:hover {
background: rgba(255, 255, 255, 0.4);
color: #FFFFFF;
transform: translateY(-2px);
}
.cableways-map-icon {
width: 24px;
height: 24px;
} .cableways-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1400px;
margin: 0 auto;
} .cableway-card {
border-radius: 20px;
padding: 30px 25px;
padding-top: 80px; display: flex;
flex-direction: column;
align-items: center;
text-align: center;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
overflow: visible; margin-top: 80px; position: relative;
} .cableway-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100%;
border-radius: 20px;
background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0) 60%);
pointer-events: none;
z-index: 0;
}
.cableway-card__image {
height: 160px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
margin-top: -130px; position: relative;
z-index: 1;
}
.cableway-card__image img {
max-height: 180px;
width: auto;
object-fit: contain;
filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
} .cableway-card--chairlift .cableway-card__image img {
max-height: 180px !important;
} .cableway-card--gondola .cableway-card__image img {
max-height: 250px !important;
margin-top: -60px;
}
.cableway-card__title {
font-family: var(--font-family);
font-size: 18px;
font-weight: 700;
color: #1B3A5F;
text-transform: uppercase;
margin: 0 0 15px 0;
margin-top: 24px;
line-height: 1.3;
position: relative;
z-index: 1;
}
.cableway-card__levels {
display: inline-block;
padding: 8px 20px;
background: #004E92;
border-radius: 50px;
font-family: var(--font-family);
font-size: 14px;
font-weight: 500;
color: var(--color-white);
margin-bottom: 15px;
position: relative;
z-index: 1;
} .season-summer .cableway-card__levels {
background: var(--summer-primary);
}
.cableway-card__time {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 10px;
position: relative;
z-index: 1;
}
.cableway-card__time-icon {
width: 18px;
height: 18px;
opacity: 0.6;
}
.cableway-card__time span {
font-family: var(--font-family);
font-size: 15px;
color: #555;
}
.cableway-card__height {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 20px;
position: relative;
z-index: 1;
}
.cableway-card__height-icon {
width: 14px;
height: 19px;
color: #004E92;
}
.season-summer .cableway-card__height-icon {
color: var(--summer-primary);
}
.cableway-card__height span {
font-family: var(--font-family);
font-size: 15px;
color: #1B5FB4;
}
.cableway-card__height strong {
color: #1B5FB4;
font-weight: 600;
}
.cableway-card__btn {
display: inline-flex;
align-items: center;
position: relative;
gap: 20px;
padding: 15px 30px 15px 80px;
border-radius: 50px;
background: rgba(255, 255, 255, 0.55);
border: none;
font-family: var(--font-family);
font-size: 16px;
font-weight: 500;
color: #004E92;
text-decoration: none;
overflow: hidden;
z-index: 1;
}
.cableway-card__btn span {
transition: transform 0.4s ease;
position: relative;
z-index: 1;
}
.cableway-card__btn:hover span {
transform: translateX(-50px);
}
.cableway-card__btn-icon {
position: absolute;
width: 70px;
height: 70px;
left: -5px;
transition: all 0.4s ease;
z-index: 1;
}
.cableway-card__btn-icon circle {
fill: #ffffff;
}
.cableway-card__btn-icon path {
fill: #004E92;
stroke: #ffffff;
}
.cableway-card__btn:hover .cableway-card__btn-icon {
left: calc(100% - 65px);
transform: rotate(45deg);
} .season-summer .cableway-card {
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.season-summer .cableway-card::before {
background: none;
}
.season-summer .cableway-card__height span,
.season-summer .cableway-card__height strong {
color: var(--summer-primary);
}
.season-summer .cableway-card__btn {
color: var(--summer-primary);
border: 1px solid var(--summer-primary);
background: transparent;
}
.season-summer .cableway-card__btn-icon circle {
fill: #E5ECDE;
}
.season-summer .cableway-card__btn-icon path {
fill: var(--summer-primary);
stroke: #E5ECDE;
} @media (max-width: 1200px) {
.cableways-stat {
font-size: 140px;
}
.cableways-stat--small {
font-size: 90px;
}
.cableways-subtitle {
font-size: 32px;
}
.cableways-cards {
gap: 20px;
}
}
@media (max-width: 992px) {
.cableways-content {
padding: 60px 30px;
}
.cableways-stat {
font-size: 100px;
}
.cableways-subtitle {
font-size: 24px;
}
.cableways-lines {
margin: 40px 0;
}
.cableways-cards {
grid-template-columns: repeat(2, 1fr);
}
.cableways-cards .cableway-card:last-child {
grid-column: 1 / -1;
max-width: 400px;
margin: 0 auto;
}
.season-summer .ecotrails-cards--desktop {
grid-template-columns: repeat(2, 1fr) !important;
}
.season-summer .ecotrails-cards--desktop .etd-card:last-child {
grid-column: 1 / -1;
max-width: 400px;
margin: 0 auto;
}
} .cableways-header--summer {
display: none !important;
}
.cableways-map-btn--summer {
display: none !important;
}
.season-summer .cableways-header--summer.cableways-header--desktop {
display: flex !important;
}
.season-summer .cableways-header--winter {
display: none !important;
}
.season-summer .cableways-map-btn--summer {
display: inline-flex !important;
}
.season-summer .cableways-map-btn--winter {
display: none !important;
}
.cableways-stat--small {
font-size: 120px;
}  .ecotrails-cards--desktop {
display: none;
} .season-summer .cableways-cards--desktop {
display: none !important;
}
.season-summer .ecotrails-cards--desktop {
display: grid !important;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1400px;
margin: 0 auto;
} .etd-card {
padding: 0 0 30px 0 !important;
margin-top: 0 !important;
overflow: hidden;
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.etd-card::before {
display: none;
}
.etd-card__image {
width: 100%;
height: 200px;
overflow: hidden;
margin: 0;
border-radius: 20px 20px 0 0;
}
.etd-card__image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: none;
max-height: none !important;
transition: transform 0.3s ease;
}
.etd-card:hover .etd-card__image img {
transform: scale(1.05);
}
.etd-card .cableway-card__title {
margin-top: 20px;
}
.etd-card .cableway-card__time svg {
opacity: 0.6;
color: var(--summer-primary);
}
.etd-card .cableway-card__time span {
color: var(--summer-primary);
font-weight: 500;
} .cableways-header--mobile {
display: none;
}
.cableways-slider-wrapper {
display: none;
}
.ecotrails-slider-wrapper {
display: none;
}
@media (max-width: 768px) {
.cableways-content {
padding: 40px 20px;
} .cableways-header--desktop {
display: none;
}
.cableways-cards--desktop {
display: none;
} .ecotrails-cards--desktop,
.season-summer .ecotrails-cards--desktop {
display: none !important;
} .cableways-header--mobile.cableways-header--winter {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-bottom: 30px;
}
.season-summer .cableways-header--mobile.cableways-header--winter {
display: none !important;
}
.season-summer .cableways-header--mobile.cableways-header--summer {
display: flex !important;
flex-direction: column;
align-items: center;
text-align: center;
margin-bottom: 30px;
} .cableways-header--desktop.cableways-header--winter,
.cableways-header--desktop.cableways-header--summer,
.season-summer .cableways-header--desktop.cableways-header--winter,
.season-summer .cableways-header--desktop.cableways-header--summer {
display: none !important;
}
.cableways-header--mobile .cableways-subtitle {
font-size: 16px;
margin-bottom: 10px;
}
.cableways-header--mobile .cableways-stat {
font-size: 48px;
}
.cableways-header--mobile .cableways-stat--small {
font-size: 36px;
}  .season-summer .cableways-slider-wrapper {
display: none !important;
}
.ecotrails-slider-wrapper {
display: none;
}
.season-summer .ecotrails-slider-wrapper {
display: block !important;
position: relative;
margin-left: -20px;
margin-right: -20px;
overflow: hidden;
padding: 0;
}
.ecotrails-swiper {
overflow: hidden;
padding-top: 20px;
padding-bottom: 10px;
}
.ecotrails-swiper .swiper-slide {
display: flex;
justify-content: center;
opacity: 0.6;
transform: scale(0.9);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.ecotrails-swiper .swiper-slide-active {
opacity: 1;
transform: scale(1);
}
.etm-card {
width: 100%;
max-width: 300px;
border-radius: 20px;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
background: rgba(255,255,255,0.95);
box-shadow: 0 10px 40px rgba(0,0,0,0.12);
overflow: hidden;
}
.etm-card__image {
width: 100%;
height: 180px;
overflow: hidden;
}
.etm-card__image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.etm-card__title {
font-family: 'Montserrat', sans-serif;
font-size: 16px;
font-weight: 700;
color: #1a1a2e;
margin: 16px 0 10px;
padding: 0 15px;
}
.etm-card__stats {
display: flex;
gap: 16px;
margin-bottom: 10px;
}
.etm-card__stat {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: 13px;
color: var(--summer-primary);
font-weight: 500;
}
.etm-card__stat svg {
color: var(--summer-primary);
}
.etm-card__diff {
display: inline-block;
padding: 4px 14px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
background: #E5ECDE;
color: var(--summer-primary);
margin-bottom: 40px;
}
.etm-card__btn {
display: inline-flex;
align-items: center;
position: relative;
gap: 20px;
padding: 15px 30px 15px 80px;
border-radius: 50px;
background: rgba(255, 255, 255, 0.55);
border: 1px solid var(--summer-primary);
font-family: 'Montserrat', sans-serif;
font-size: 16px;
font-weight: 500;
color: var(--summer-primary);
text-decoration: none;
overflow: hidden;
z-index: 1;
margin-top: auto;
margin-bottom: 24px;
}
.etm-card__btn span {
transition: transform 0.4s ease;
position: relative;
z-index: 1;
}
.etm-card__btn:hover span {
transform: translateX(-50px);
}
.etm-card__btn-icon {
position: absolute;
width: 70px;
height: 70px;
left: -5px;
transition: all 0.4s ease;
z-index: 1;
}
.etm-card__btn-icon circle {
fill: #E5ECDE;
}
.etm-card__btn-icon path {
fill: var(--summer-primary);
stroke: #E5ECDE;
}
.etm-card__btn:hover .etm-card__btn-icon {
left: calc(100% - 65px);
transform: rotate(45deg);
} .ecotrails-slider-wrapper .cableways-nav-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
border-color: rgba(74, 155, 74, 0.3);
color: var(--summer-primary);
background: rgba(255,255,255,0.9);
width: 44px;
height: 44px;
border-radius: 50%;
border-width: 2px;
border-style: solid;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
padding: 0;
}
.ecotrails-slider-wrapper .cableways-nav-btn:hover {
background: var(--summer-primary);
color: #fff;
border-color: var(--summer-primary);
}
.ecotrails-slider-wrapper .ecotrails-prev {
left: 20px;
}
.ecotrails-slider-wrapper .ecotrails-next {
right: 20px;
} .season-summer .cableways-map-btn--summer:not(.cableways-map-btn--mobile) {
display: none !important;
}
.season-summer .cableways-map-btn--summer.cableways-map-btn--mobile {
display: flex !important;
} .cableways-slider-wrapper {
display: block;
position: relative;
margin-left: -20px;
margin-right: -20px;
overflow: hidden;
padding: 0;
}
.cableways-swiper {
overflow: hidden;
padding-top: 100px;
}
.cableways-swiper .swiper-slide {
display: flex;
justify-content: center;
opacity: 0.6;
transform: scale(0.9);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.cableways-swiper .swiper-slide-active {
opacity: 1;
transform: scale(1);
}
.cableways-swiper .cableway-card {
width: 100%;
max-width: 300px;
padding: 25px 20px;
margin-top: 0;
padding-top: 80px;
background: linear-gradient(to bottom, #FFFFFF 0%, #D9EFFF 100%);
}
.cableways-swiper .cableway-card::before {
display: none;
}
.cableways-swiper .cableway-card__image {
height: 180px;
margin-top: -120px;
margin-bottom: 15px;
}
.cableways-swiper .cableway-card__image img {
max-height: 200px;
}
.cableways-swiper .cableway-card--gondola .cableway-card__image img {
max-height: 280px !important;
margin-top: -40px;
}
.cableways-swiper .cableway-card__title {
font-size: 16px;
margin-top: 15px;
} .cableways-nav-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 44px;
height: 44px;
padding: 0;
aspect-ratio: 1;
flex-shrink: 0;
border-radius: 50%;
border: 2px solid rgba(0, 78, 146, 0.3);
background: rgba(255, 255, 255, 0.9);
color: #004E92;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
box-sizing: border-box;
z-index: 10;
}
.cableways-nav-btn svg {
width: 24px;
height: 24px;
flex-shrink: 0;
}
.cableways-prev {
left: 20px;
}
.cableways-next {
right: 20px;
}
.cableways-nav-btn:hover {
background: #004E92;
color: #ffffff;
border-color: #004E92;
} .season-summer .cableways-nav-btn {
border-color: rgba(74, 155, 74, 0.3);
color: var(--summer-primary);
}
.season-summer .cableways-nav-btn:hover {
background: var(--summer-primary);
color: #ffffff;
border-color: var(--summer-primary);
} .cableways-map-btn--mobile.cableways-map-btn--winter {
display: flex;
width: calc(100% - 40px);
margin: 30px auto 0;
padding: 14px 30px;
font-size: 14px;
background: #004E92;
border: none;
color: #ffffff;
}
.cableways-map-btn--mobile.cableways-map-btn--winter:hover {
background: #003d75;
color: #ffffff;
}
.season-summer .cableways-map-btn--mobile.cableways-map-btn--winter {
display: none !important;
}
.cableways-map-btn--mobile.cableways-map-btn--summer {
display: none !important;
width: calc(100% - 40px);
margin: 30px auto 0;
padding: 14px 30px;
font-size: 14px;
border: none;
color: #ffffff;
}
.season-summer .cableways-map-btn--mobile.cableways-map-btn--summer {
display: flex !important;
background: var(--summer-primary);
}
.season-summer .cableways-map-btn--mobile.cableways-map-btn--summer:hover {
background: #3d8a3d;
}
} @media (hover: none) {
.burger-menu:hover {
background: transparent;
}
.nav-link:hover {
opacity: 1;
}
.season-btn:hover {
border-color: transparent;
}
.quick-link:hover {
opacity: 1;
}
.about-btn:hover span {
transform: none;
}
.about-btn:hover .about-btn-icon {
left: -5px;
transform: none;
}
.services-nav-btn:hover {
background: transparent;
color: #1B5FB4;
}
.season-summer .services-nav-btn:hover {
background: transparent;
color: #4a9b4a;
}
.service-card:hover {
transform: none;
}
.cableways-map-btn:hover {
background: rgba(255, 255, 255, 0.25);
transform: none;
}
.cableway-card__btn:hover span {
transform: none;
}
.cableway-card__btn:hover .cableway-card__btn-icon {
left: -5px;
transform: none;
}
.etd-card:hover .etd-card__image img {
transform: none;
}
.etm-card__btn:hover span {
transform: none;
}
.etm-card__btn:hover .etm-card__btn-icon {
left: -5px;
transform: none;
}
.ecotrails-slider-wrapper .cableways-nav-btn:hover {
background: rgba(255, 255, 255, 0.9);
color: var(--summer-primary);
border-color: rgba(74, 155, 74, 0.3);
}
.cableways-nav-btn:hover {
background: rgba(255, 255, 255, 0.9);
color: #004E92;
border-color: rgba(0, 78, 146, 0.3);
}
.season-summer .cableways-nav-btn:hover {
background: rgba(255, 255, 255, 0.9);
color: var(--summer-primary);
border-color: rgba(74, 155, 74, 0.3);
}
.cableways-map-btn--mobile.cableways-map-btn--winter:hover {
background: #004E92;
}
.season-summer .cableways-map-btn--mobile.cableways-map-btn--summer:hover {
background: var(--summer-primary);
}
}