﻿.gallery-main img {
    width: 100%;
    height: 408px;
    object-fit: cover;
    border-radius: 16px;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 200px;
}

    .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.section-card {
    border-radius: 16px;
}

.booking-card {
    border-radius: 16px;
}

.sticky-booking {
    position: sticky;
    top: 90px;
}

.review {
    margin-bottom: 10px;
}





.hero {
    position: relative;
    min-height: 650px;
    background-image: url('/img/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.30);
}


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



.hero-title {
    color: white;
    font-size: 56px !important;
    font-weight: 700;
    text-align: center;
}


.hero-subtitle {
    color: white;
    opacity: .95;
}



.search-panel {
    width: min(850px, 90vw);
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
}

.hero-search-input {
    width: 100%;
}

.feature-card {
    background: rgba(255,255,255,.18) !important;
    backdrop-filter: blur(12px);
    color: white;
    padding: 18px 35px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.25);
}



@media(max-width:900px) {

    .hero-title {
        font-size: 36px !important;
    }


    .search-panel {
        flex-direction: column;
    }


    .search-button {
        width: 100%;
    }


    .features {
        flex-direction: column !important;
    }
}








.hero-search-input .mud-input-outlined-border {
    border-width: 0 !important;
}

.hero-search-input .mud-input-outlined {
    padding-left: 0;
}


.hero-search-input .mud-input-slot {
    font-size: 18px;
}









.features-panel {
    width: 850px;
    max-width: 90vw;
    margin-top: 25px;
    display: flex;
    background: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 14px 0; /* было 25px */

    border: 1px solid rgba(255,255,255,.25);
}



.feature-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* было 15 */
}


    .feature-item .mud-icon-root {
        font-size: 30px !important; /* было 42 */

        color: white !important;
    }



.feature-title {
    color: white;
    font-size: 20px; /* было 28 */

    font-weight: 700;
    line-height: 1.1;
}



.feature-subtitle {
    color: white;
    font-size: 13px;
    opacity: .85;
}




/*.destination-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
}

.destination-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: white;
    background: linear-gradient( transparent, rgba(0,0,0,0.75) );
    padding-top: 60px;
}*/


.destination-card {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 16px;
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.destination-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: rgba(0,0,0,0.35);
}

.destination-title {
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,.7);
}