*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f5f5f5;
    color:#222;
}

/* ================= HERO ================= */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

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

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:absolute;
    top:44%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    width:90%;
}

.hero-content h1{
    font-size:72px;
    letter-spacing:10px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:40px;
    line-height:1.6;
}

.btn{
    display:inline-block;
    padding:18px 45px;
    background:#c9a96a;
    color:white;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;
}

.btn:hover{
    background:#b68f4d;
    transform:translateY(-3px);
}

/* ================= ОБЩИЕ БЛОКИ ================= */

.about,
.facilities{
    width:90%;
    max-width:1200px;
    margin:100px auto;
}

.about h2,
.facilities h2,
.title{
    text-align:center;
    font-size:42px;
    margin-bottom:40px;
}

.about p{
    text-align:center;
    line-height:1.9;
    color:#666;
    font-size:18px;
}

/* ================= УДОБСТВА ================= */

.facility{
    display:flex;
    align-items:center;
    gap:40px;
    margin-top:50px;
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.facility img{
    width:450px;
    height:300px;
    object-fit:cover;
}

.facility div{
    padding:30px;
}

.facility h3{
    font-size:36px;
    margin-bottom:20px;
}

.facility p{
    color:#666;
    line-height:1.8;
    font-size:19px;
}

/* ================= НОМЕРА ================= */

.room{
    width:90%;
    max-width:1300px;
    margin:70px auto;
    display:flex;
    align-items:center;
    background:white;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.room:nth-child(even){
    flex-direction:row-reverse;
}

.room-info{
    width:55%;
    padding:40px 40px 40px 55px;
}

.room-info h3{
    font-size:38px;
    margin-bottom:20px;
}

.room-info p{
    color:#666;
    line-height:1.9;
    font-size:19px;
}

.slider{
    width:45%;
    position:relative;
}

.slider img{
    width:100%;
    height:600px;
    object-fit:cover;
    object-position:top;
    display:block;
    background:#f5f5f5;
    transition: opacity .3s ease;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:white;
    cursor:pointer;
    font-size:26px;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
    transition:.25s;
}

.prev:hover,
.next:hover{
    transform:translateY(-50%) scale(1.1);
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

/* ================= FOOTER ================= */

footer{
    margin-top:100px;
    padding:60px;
    background:#111;
    color:white;
    text-align:center;
}

footer h2{
    margin-bottom:20px;
    letter-spacing:4px;
}

footer p{
    margin:10px 0;
    color:#aaa;
}

/* ================= СОЦИАЛЬНЫЕ ССЫЛКИ ================= */

.socials{
    width:100%;
    max-width:1000px;
    margin:40px auto 0;
    display:flex;
    justify-content:space-around;
    align-items:center;
    gap:80px;
}

.socials a,
.socials a:visited,
.socials a:active{
    flex:1;
    text-align:center;
    color:white;
    text-decoration:none;
    font-size:20px;
    font-weight:500;
    transition:.3s;
}

.socials a:hover{
    color:#d4af37;
}


/* ================= WHATSAPP КНОПКА ================= */

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;

    width:70px;
    height:70px;

    border-radius:50%;
    background:#25D366;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:0 10px 30px rgba(0,0,0,.25);
    transition:.3s;

    z-index:9999;
}

.whatsapp:hover{
    transform:scale(1.12);
}

.whatsapp img{
    width:40px;
}


/* ================= МОБИЛЬНАЯ ВЕРСИЯ ================= */

@media(max-width:900px){

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:18px;
    }

    .room,
    .facility{
        flex-direction:column;
    }

    .room:nth-child(even){
        flex-direction:column;
    }

    .room-info,
    .slider{
        width:100%;
    }

    .slider img{
    height:480px;
    object-fit:cover;
    object-position:top;
}

    .facility img{
        width:100%;
        height:260px;
    }

    .socials{
        flex-direction:column;
        gap:25px;
    }

}
