/* ====== 1====== */
:root {
    --pink: #ff1493;
    --pink-dark: #e0267f;
    --pink-light: #ff69b4;
    --black: #000000;
    --black-light: #1a1a1a;
    --gray: #2d2d2d;
    --gray-light: #404040;
    --white: #ffffff;
    --section-padding: 160px 0 70px 0;
    --container-max-width: 1400px;
    --shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
    --shadow-hover: 0 15px 40px rgba(255, 20, 147, 0.3);
    --glow: 0 0 20px rgba(255, 20, 147, 0.5);
}

/* ====== 2 ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 3 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #fff;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--pink-light));
}

.accent {
    color: var(--pink);
}

/* 4 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--pink);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--pink-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

/* 5 */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/project/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    body {
        padding-top: 0 !important;
    }
    
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('../images/project/1.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        background-repeat: no-repeat;
        height: 100vh;
        min-height: -webkit-fill-available;
        width: 100vw;
        margin: 0;
        padding: 0;
    }
    
    /* Исправление для мобильных браузеров */
    @supports (-webkit-touch-callout: none) {
        .hero {
            height: -webkit-fill-available;
        }
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 2;
    transform: translateY(40px);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.brand-name {
    font-size: 4rem;
    display: block;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-address {
    font-style: italic;
    margin-bottom: 30px;
    color: #ccc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--pink);
    border-bottom: 2px solid var(--pink);
    transform: rotate(45deg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: var(--pink-light);
    transform: rotate(45deg) scale(1.1);
}

/* Дополнительная адаптация для разных размеров экранов */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .brand-name {
        font-size: 3rem !important;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-content {
        transform: translateY(30px);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .brand-name {
        font-size: 2.5rem !important;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-address {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 0 15px;
        transform: translateY(20px);
    }
}

/* Для очень высоких экранов */
@media (min-height: 1000px) {
    .hero {
        background-size: cover;
        background-position: center 30%;
    }
}

/* Для горизонтальной ориентации на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        background-size: cover;
        background-position: center;
    }
    
    .hero-content {
        transform: scale(0.9) translateY(20px);
    }
}

/* ====== 6 ====== */
.girls-section {
    padding: 80px 0;
    background: var(--black-light);
    position: relative;
    overflow: hidden;
}

.girls-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--pink) 0%,
        var(--pink-light) 25%,
        var(--pink) 50%,
        var(--pink-light) 75%,
        var(--pink) 100%
    );
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    box-shadow: var(--glow);
    z-index: 10;
}

@keyframes gradientShift {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ====== SWIPER STYLES ====== */
.swiper-container {
    width: 100%;
    height: 650px;
    padding: 40px 0;
    position: relative;
}

.swiper-wrapper {
    transition-timing-function: cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: scale(0.9);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.8;
    transform: scale(0.95);
}

/* Стрелки навигации */
.swiper-button-prev,
.swiper-button-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 20, 147, 0.3);
    border: 2px solid rgba(255, 20, 147, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: white;
    font-weight: bold;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 20, 147, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--glow);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
}

/* Пагинация */
.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--pink);
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--pink);
}

/* Стили для слайдов */
.slide-wrapper {
    background: linear-gradient(145deg, var(--black-light), var(--gray));
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    height: 580px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 2px solid rgba(255, 20, 147, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.slide-wrapper:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 20, 147, 0.4);
    box-shadow: var(--shadow-hover);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .slide-image {
    transform: scale(1.08);
}

.image-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4), rgba(0,0,0,0.1));
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 10;
    text-align: left;
}

.slide-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.slide-rating {
    color: var(--pink);
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.slide-description {
    font-size: 16px;
    color: #ffb6e1;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.btn-wrapper {
    margin-top: 15px;
}

.slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.slide-btn:hover::before {
    left: 100%;
}

/* 8 */
.about-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 0 20px;
}

.about-content {
    padding-right: 30px;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* 9*/
.events-section {
    padding: 50px 0 30px 0;
    background-color: var(--black);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--black-light);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.event-content {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.event-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.event-description {
    color: #ccc;
    margin-bottom: 15px;
}

/* 10 */
.booking-section {
    padding: 10px 0 80px 0;
    background: var(--black);
}

.booking-card {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--gray) 100%);
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.booking-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.booking-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #ccc;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gray);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 2px rgba(255, 20, 147, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.booking-form .btn {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.booking-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* 11 */
.footer {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    padding: 60px 0 30px;
    border-top: 2px solid var(--pink);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info h3,
.address-info h3 {
    color: var(--pink);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-top {
    color: var(--pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: var(--pink-light);
}

/* ====== FLOATING BOOKING BUTTON ====== */
.floating-booking-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
}

.btn-booking-open {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

.btn-booking-open:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4);
}

.btn-booking-open span {
    font-size: 20px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 20, 147, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 20, 147, 0);
    }
}

/* ====== BOOKING MODAL STYLES ====== */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal .booking-card {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--gray) 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.booking-modal.active .booking-card {
    transform: scale(1);
}

.close-booking {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-booking:hover {
    background: rgba(255, 20, 147, 0.2);
    transform: rotate(90deg);
}

.booking-modal .booking-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
    padding-right: 40px;
}

.booking-modal .booking-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* ====== АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ ====== */

/* Планшеты */
@media (max-width: 1024px) {
    .swiper-container {
        height: 600px;
        padding: 35px 0;
    }
    
    .swiper-slide {
        opacity: 0.6;
        transform: scale(0.85);
    }
    
    .swiper-slide-active {
        opacity: 1;
        transform: scale(0.95);
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 50px;
        height: 50px;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .brand-name {
        font-size: 3.5rem;
    }
    
    .slide-wrapper {
        height: 520px;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .swiper-container {
        height: 500px;
        padding: 25px 0;
    }
    
    .swiper-slide {
        opacity: 0.5;
        transform: scale(0.8);
    }
    
    .swiper-slide-active {
        opacity: 1;
        transform: scale(0.9);
    }
    
    .swiper-slide-prev,
    .swiper-slide-next {
        opacity: 0.6;
        transform: scale(0.85);
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
        display: flex !important;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 14px;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .section-title::after {
        width: 80px;
        height: 2px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .brand-name {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .girls-section {
        padding: 50px 0;
    }
    
    .girls-section::before {
        height: 3px;
    }
    
    .slide-wrapper {
        height: 450px;
        max-width: 320px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-title {
        font-size: 22px;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .events-section {
        padding: 40px 0 20px 0;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-image {
        height: 200px;
    }
    
    .booking-section {
        padding: 5px 0 60px 0;
    }
    
    .booking-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .booking-title {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .floating-booking-btn {
        bottom: 20px;
        width: 90%;
        max-width: 300px;
    }
    
    .btn-booking-open {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .booking-modal .booking-card {
        padding: 25px 15px;
        margin: 10px;
    }
    
    .booking-modal .booking-title {
        font-size: 1.6rem;
    }
}

/* Маленькие мобильные устройства */
@media (max-width: 480px) {
    .swiper-container {
        height: 450px;
        padding: 20px 0;
    }
    
    .swiper-slide {
        opacity: 0.4;
        transform: scale(0.75);
    }
    
    .swiper-slide-active {
        opacity: 1;
        transform: scale(0.85);
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 35px;
        height: 35px;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .section-title::after {
        width: 60px;
        height: 2px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .brand-name {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-address {
        font-size: 0.8rem;
    }
    
    .girls-section {
        padding: 40px 0;
    }
    
    .girls-section::before {
        height: 2px;
    }
    
    .slide-wrapper {
        height: 400px;
        max-width: 280px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-title {
        font-size: 20px;
    }
    
    .slide-rating {
        font-size: 16px;
    }
    
    .slide-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .about-section {
        padding: 30px 0;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .events-section {
        padding: 30px 0 15px 0;
    }
    
    .event-title {
        font-size: 1.1rem;
    }
    
    .booking-section {
        padding: 5px 0 50px 0;
    }
    
    .booking-card {
        padding: 20px 15px;
    }
    
    .booking-title {
        font-size: 1.5rem;
    }
    
    .floating-booking-btn {
        bottom: 15px;
        width: 95%;
        max-width: 280px;
    }
    
    .btn-booking-open {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .btn-booking-open span {
        font-size: 16px;
    }
    
    .booking-modal .booking-card {
        padding: 20px 10px;
    }
    
    .booking-modal .booking-title {
        font-size: 1.4rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Горизонтальная ориентация на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .swiper-container {
        height: 400px;
        padding: 15px 0;
    }
    
    .hero {
        height: 100vh;
    }
    
    .hero-content {
        transform: scale(0.85) translateY(10px);
    }
    
    .floating-booking-btn {
        bottom: 10px;
    }
    
    .slide-wrapper {
        height: 350px;
    }
}

/* Очень маленькие устройства */
@media (max-width: 320px) {
    .swiper-container {
        height: 400px;
        padding: 15px 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .floating-booking-btn {
        max-width: 260px;
    }
    
    .slide-wrapper {
        height: 380px;
        max-width: 250px;
    }
}

/* Убираем старые стили карусели */
.carousel-container,
.carousel-controls,
.carousel-track,
.gallery {
    display: none;
}

/* Анимация для плавного перехода */
.swiper-slide {
    transition: transform 0.6s ease, opacity 0.6s ease;
}