/* =========================
   RESET & GLOBAL
========================= */


*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}



html{

    scroll-behavior:smooth;

}



body{

    font-family:'Montserrat',sans-serif;

    background:#f8f3e8;

    color:#222;

    overflow-x:hidden;

}



a{

    text-decoration:none;

    color:inherit;

}



img{

    width:100%;

    display:block;

}



.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}



section{

    padding:100px 0;

}





/* =========================
   LOADER
========================= */


.loader{

    position:fixed;

    inset:0;

    background:#073b2a;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

    animation:loaderHide 1s ease 2s forwards;

}



.loader-logo{

    color:#d4af37;

    font-family:'Cormorant Garamond',serif;

    font-size:70px;

    font-weight:700;

    text-align:center;

    animation:pulse 1.5s infinite alternate;

}



.loader-logo span{

    display:block;

    color:white;

    font-family:'Montserrat',sans-serif;

    font-size:20px;

    letter-spacing:8px;

}





@keyframes pulse{


from{

transform:scale(1);

}


to{

transform:scale(1.08);

}


}





@keyframes loaderHide{


to{

opacity:0;

visibility:hidden;

}


}








/* =========================
   HEADER
========================= */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(7,59,42,.15);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.15);

    transition:.4s;

}





.navbar{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:30px 0;

}



.logo{

    font-family:'Cormorant Garamond',serif;

    color:#fff;

    font-size:42px;

    font-weight:700;

    line-height:.8;

}



.logo span{

    display:block;

    font-family:'Montserrat',sans-serif;

    font-size:12px;

    letter-spacing:5px;

    margin-top:10px;

    color:#d4af37;

}





.nav-menu{

    display:flex;

    gap:40px;

    list-style:none;

}



.nav-menu a{

    color:white;

    font-size:15px;

    font-weight:500;

    transition:.3s;

}



.nav-menu a:hover{

    color:#d4af37;

}



.hamburger{

    display:none;

    color:white;

    font-size:32px;

    cursor:pointer;

}







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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:flex-start;

    position:relative;

    background:url("images/hero.jpg") center center/cover no-repeat;

    background-attachment:fixed;

    padding:140px 8% 100px;

}



.hero-overlay{

position:absolute;

inset:0;

background:

linear-gradient(
90deg,
rgba(0,0,0,.55),
rgba(0,0,0,.15)
);

}

.hero-content{

    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
    margin-left:8%;

}

.hero-small{

    color:#d4af37;

    letter-spacing:3px;

    font-size:14px;

    margin-bottom:25px;

}



.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:88px;

    line-height:1;

    margin-bottom:25px;

    text-shadow:0 10px 25px rgba(0,0,0,.45);

}


.hero-description{

    font-size:20px;

    line-height:1.8;

    color:#f2f2f2;

    margin-bottom:40px;

}




.gold-btn{

    display:inline-block;

    padding:18px 38px;

    background:#d4af37;

    color:#111;

    border-radius:60px;

    font-weight:700;

    box-shadow:0 15px 35px rgba(212,175,55,.35);

    transition:.35s;

}


.gold-btn:hover{

background:#e5c35a;

transform:translateY(-6px);

box-shadow:0 15px 35px rgba(212,175,55,.45);

}



.outline-btn{

    display:inline-block;

    padding:15px 35px;

    border:1px solid white;

    border-radius:50px;

    color:white;

    margin-left:15px;

    transition:.4s;

    backdrop-filter:blur(8px);
}



.outline-btn:hover{

    background:white;

    color:#111;

}




.hero-info{

    display:flex;

    gap:50px;

    margin-top:70px;

}



.hero-info h3{

    font-family:'Cormorant Garamond',serif;

    font-size:45px;

    color:#d4af37;

}



.hero-info p{

    color:#ddd;

}

section{

    padding:120px 0;

}

/* =========================
   SECTION HEADING
========================= */

.section-heading{

    text-align:center;

    max-width:750px;

    margin:0 auto 70px;

}



.section-heading span{

    color:#b58b24;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:13px;

    font-weight:600;

}



.section-heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:65px;

    color:#073b2a;

    margin:15px 0;

    line-height:1;

}



.section-heading p{

    color:#666;

    line-height:1.8;

}







/* =========================
   ABOUT
========================= */


.about{

    background:#fff;

}



.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}



.about-text h3{

    font-family:'Cormorant Garamond',serif;

    font-size:45px;

    color:#073b2a;

    margin-bottom:25px;

}



.about-text p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}



.dark-btn{

    display:inline-block;

    margin-top:20px;

    padding:15px 35px;

    background:#073b2a;

    color:white;

    border-radius:50px;

    transition:.4s;

}



.dark-btn:hover{

    background:#d4af37;

    color:#111;

}






.about-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}



.about-card{

    background:#f8f3e8;

    padding:35px 25px;

    border-radius:25px;

    transition:.4s;

    border:1px solid rgba(212,175,55,.15);
}



.about-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.1);

}



.about-card .icon{

    font-size:45px;

    margin-bottom:20px;

}



.about-card h3{

    color:#073b2a;

    margin-bottom:15px;

}



.about-card p{

    color:#666;

    line-height:1.7;

}








/* =========================
   SERVICES
========================= */


.services{

    background:#073b2a;

}



.services .section-heading h2{

    color:white;

}



.services .section-heading span{

    color:#d4af37;

}



.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.service-box{

    background:rgba(255,255,255,.08);

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

    padding:45px 35px;

    border-radius:30px;

    color:white;

    backdrop-filter:blur(10px);

    transition:.4s;

    border:1px solid rgba(212,175,55,.15);
}



.service-box:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.15);

}



.service-box h3{

    color:#d4af37;

    font-size:50px;

    font-family:'Cormorant Garamond',serif;

}



.service-box h4{

    font-size:25px;

    margin:20px 0;

}



.service-box p{

    color:#ddd;

    line-height:1.8;

}








/* =========================
   ROOMS
========================= */


.rooms{

    background:#f8f3e8;
}
/* =========================
   MENU SECTION
========================= */


.menu-section{

    background:#fff;

}



.menu-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}



.menu-card{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.5s;

    border:1px solid rgba(212,175,55,.15);
}


.menu-card:hover{

transform:translateY(-15px) scale(1.03);

box-shadow:0 30px 70px rgba(0,0,0,.18);

}



.menu-card img{

height:300px;

object-fit:cover;

transition:.6s;

}

.menu-card:hover img{

transform:scale(1.08);

}


.menu-info{

    padding:30px;

}



.menu-info h3{

    font-family:'Cormorant Garamond',serif;

    font-size:35px;

    color:#073b2a;

    margin-bottom:15px;

}



.menu-info p{

    color:#666;

    line-height:1.7;

    margin-bottom:20px;

}



.menu-info span{

    color:#b58b24;

    font-weight:600;

}








/* =========================
   ADVANTAGES
========================= */


.advantages{

    background:#073b2a;

}



.advantages .section-heading h2{

    color:white;

}



.advantages .section-heading span{

    color:#d4af37;

}



.advantage-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.advantage-card{

    background:white;

    padding:40px 25px;

    border-radius:25px;

    text-align:center;

    transition:.4s;

}



.advantage-card:hover{

    transform:translateY(-10px);

}



.adv-number{

    font-family:'Cormorant Garamond',serif;

    font-size:55px;

    color:#d4af37;

    margin-bottom:20px;

}



.advantage-card h3{

    color:#073b2a;

    margin-bottom:15px;

}



.advantage-card p{

    color:#666;

    line-height:1.7;

}








/* =========================
   GALLERY
========================= */


.gallery{

    background:#fff;

}



.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.gallery-box{

    height:330px;

    border-radius:30px;

    overflow:hidden;

    position:relative;

}



.gallery-box::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

    transparent,

    rgba(0,0,0,.35)

    );

}



.gallery-box img{

    height:100%;

    object-fit:cover;

    transition:.6s;

}



.gallery-box:hover img{

    transform:scale(1.1);

}

.gallery-box{

cursor:pointer;

}







/* =========================
   REVIEWS
========================= */


.reviews{

    background:#f8f3e8;

}



.review-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.review-card{

    background:white;

    padding:40px 30px;

    border-radius:30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}



.stars{

    color:#d4af37;

    font-size:28px;

    margin-bottom:20px;

}



.review-card p{

    color:#666;

    line-height:1.8;

    font-style:italic;

}



.review-card h3{

    margin-top:25px;

    color:#073b2a;

}
/* =========================
   FAQ SECTION
========================= */


.faq{

    background:#fff;

}



.faq-list{

    max-width:900px;

    margin:auto;

}



.faq-item{

    background:#f8f3e8;

    padding:30px;

    border-radius:20px;

    margin-bottom:20px;

    transition:.3s;

}



.faq-item:hover{

    transform:translateX(10px);

}



.faq-item h3{

    color:#073b2a;

    font-size:22px;

    margin-bottom:12px;

}



.faq-item p{

    color:#666;

    line-height:1.7;

}








/* =========================
   CONTACT
========================= */


.contact{

    background:#f8f3e8;

}



.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;

}



.contact-info h3{

    font-family:'Cormorant Garamond',serif;

    color:#073b2a;

    font-size:45px;

    margin-bottom:30px;

}



.contact-info p{

    color:#555;

    font-size:17px;

    margin-bottom:20px;

}



.contact-buttons{

    display:flex;

    gap:15px;

    margin-top:35px;

    flex-wrap:wrap;

}



.whatsapp-btn{

    display:inline-block;

    background:#25D366;

    color:white;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}



.whatsapp-btn:hover{

    transform:translateY(-5px);

}



.map-box{

    height:450px;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}



.map-box iframe{

    width:100%;

    height:100%;

    border:0;

}








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


.footer{

    background:#071b14;

    color:white;

    padding:80px 0 30px;

}



.footer-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}



.footer-brand h2{

    font-family:'Cormorant Garamond',serif;

    font-size:55}
    /* =========================
   ANIMATION
========================= */


.hero-content,
.section-heading,
.about-wrapper,
.menu-card,
.room-item,
.service-box,
.advantage-card,
.review-card,
.gallery-box{

    animation:fadeUp .8s ease forwards;

}



@keyframes fadeUp{


from{

    opacity:0;

    transform:translateY(40px);

}



to{

    opacity:1;

    transform:translateY(0);

}


}








/* =========================
   TABLET VERSION
========================= */


@media(max-width:1100px){



.hero h1{

    font-size:80px;

}



.room-grid{

    grid-template-columns:repeat(2,1fr);

}



.advantage-grid{

    grid-template-columns:repeat(2,1fr);

}



.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}



.menu-grid{

    grid-template-columns:repeat(2,1fr);

}



}





/* =========================
   MOBILE VERSION
========================= */


@media(max-width:800px){



.container{

    width:92%;

}



section{

    padding:70px 0;

}






.nav-menu{

    position:absolute;

    top:90px;

    left:0;

    width:100%;

    background:#073b2a;

    flex-direction:column;

    align-items:center;

    padding:35px 0;

    gap:25px;

    opacity:0;

    visibility:hidden;

    transform:translateY(-20px);

    transition:.4s;

}



.nav-menu.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}



.hamburger{

    display:block;

}







.hero{

    height:auto;

    min-height:100vh;

}



.hero h1{

    font-size:55px;

}



.hero-small{

    font-size:11px;

}



.hero-description{

    font-size:15px;

}



.hero-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;

}



.outline-btn{

    margin-left:0;

    text-align:center;

}



.hero-info{

    display:none;

}







.section-heading h2{

    font-size:45px;

}







.about-wrapper{

    grid-template-columns:1fr;

}



.about-text h3{

    font-size:38px;

}



.about-cards{

    grid-template-columns:1fr;

}







.service-grid{

    grid-template-columns:1fr;

}







.room-grid{

    grid-template-columns:1fr;

}







.menu-grid{

    grid-template-columns:1fr;

}



.menu-card img{

    height:250px;

}







.advantage-grid{

    grid-template-columns:1fr;

}







.gallery-grid{

    grid-template-columns:1fr;

}



.gallery-box{

    height:280px;

}







.review-grid{

    grid-template-columns:1fr;

}







.contact-wrapper{

    grid-template-columns:1fr;

}



.contact-info h3{

    font-size:38px;

}



.map-box{

    height:350px;

}







.footer-grid{

    grid-template-columns:1fr;

}



.footer-brand h2{

    font-size:45px;

}





.floating-buttons{

    right:15px;

}



}


.telegram-btn{

    display:inline-block;

    background:#229ED9;

    color:white;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.telegram-btn:hover{

    transform:translateY(-5px);

    background:#1b8cc5;

}