/* ========================= */
/* RESET */
/* ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

html,
body{
    width:100%;
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:100px 0;
}

/* ========================= */
/* HEADER */
/* ========================= */

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    padding:20px 0;
    transition:0.4s;
}

header.active{
    background:#000;
    box-shadow:0 5px 20px rgba(0,0,0,0.3);
    padding:15px 0;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    position:relative;
}

.logo{
    color:#fff;
    font-size:32px;
    font-weight:700;
    font-family:'Playfair Display',serif;
    z-index:1002;
}

.logo span{
    color:#c59d5f;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.nav-links a{
    color:#fff;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#c59d5f;
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}

.active-link{
    color:#c59d5f !important;
}

.btn{
    background:#c59d5f;
    color:#fff;
    padding:13px 28px;
    border-radius:5px;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
    display:inline-block;
    text-align:center;
}

.btn:hover{
    background:#fff;
    color:#000;
    transform:translateY(-3px);
}

/* ========================= */
/* HAMBURGER */
/* ========================= */

.hamburger{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    cursor:pointer;
    z-index:1002;
}

.hamburger span{
    width:30px;
    height:3px;
    background:#fff;
    border-radius:10px;
    transition:0.4s;
}

.hamburger.open span:nth-child(1){
    transform:rotate(45deg) translateY(12px);
}

.hamburger.open span:nth-child(2){
    opacity:0;
}

.hamburger.open span:nth-child(3){
    transform:rotate(-45deg) translateY(-12px);
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
    position:relative;
    min-height:100vh;
    background:url("imagep/suite\ \(1\).jpeg") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding:80px 20px 40px;
}

.hero .overlay{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:rgba(0,0,0,0.6);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    width:100%;
    max-width:900px;
}

.hero-content h1{
    font-size:75px;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
    animation:fadeUp 1s ease;
    word-wrap:break-word;
}

.hero-content p{
    font-size:20px;
    margin-bottom:35px;
    animation:fadeUp 1.2s ease;
    line-height:1.7;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    animation:fadeUp 1.4s ease;
    flex-wrap:wrap;
}

.btn-light{
    background:#fff;
    color:#000;
    padding:13px 28px;
    border-radius:5px;
    transition:0.3s;
    font-weight:500;
    text-align:center;
}

.btn-light:hover{
    background:#c59d5f;
    color:#fff;
}

/* ========================= */
/* BOOKING */
/* ========================= */

.booking{
    margin-top:-60px;
    position:relative;
    z-index:10;
    padding:0 15px;
}

.booking-box{
    background:#fff;
    padding:35px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.input-box{
    display:flex;
    flex-direction:column;
}

.input-box label{
    margin-bottom:8px;
    font-size:14px;
    font-weight:500;
    color:#444;
}

.booking-box input,
.booking-box select{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:5px;
    outline:none;
    font-size:14px;
    transition:0.3s;
}

.booking-box input:focus,
.booking-box select:focus{
    border-color:#c59d5f;
}

.booking-box button{
    border:none;
    background:#c59d5f;
    color:#fff;
    font-weight:600;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
    min-height:55px;
    width:100%;
}

.booking-box button:hover{
    background:#000;
}

/* ========================= */
/* SECTION TITLE */
/* ========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
    padding:0 15px;
}

.section-title h2{
    font-size:45px;
    font-family:'Playfair Display',serif;
    margin-bottom:15px;
    line-height:1.3;
}

.section-title p{
    color:#777;
    font-size:16px;
    line-height:1.7;
}

/* ========================= */
/* ABOUT */
/* ========================= */

.about-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:50px;
    align-items:center;
}

.about-images{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.about-images img{
    height:280px;
    object-fit:cover;
    border-radius:10px;
    transition:0.4s;
}

.about-images img:hover{
    transform:scale(1.05);
}

.about-text h3{
    font-size:32px;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
    line-height:1.3;
}

.about-text p{
    margin-bottom:20px;
    line-height:1.9;
    color:#555;
}

/* ========================= */
/* SERVICES */
/* ========================= */

.services{
    background:#0d0d0d;
    color:#fff;
}

.services .section-title p{
    color:#ccc;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#161616;
    border-radius:10px;
    overflow:hidden;
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    height:230px;
    object-fit:cover;
}

.service-content{
    padding:25px;
}

.service-content h3{
    margin-bottom:12px;
    font-size:22px;
}

.service-content p{
    color:#bbb;
    line-height:1.7;
}

/* ========================= */
/* ROOMS */
/* ========================= */

.room-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.room-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
}

.room-card:hover{
    transform:translateY(-10px);
}

.room-card img{
    height:260px;
    object-fit:cover;
}

.room-content{
    padding:25px;
}

.room-content h3{
    font-size:24px;
    margin-bottom:10px;
}

.price{
    color:#c59d5f;
    font-size:20px;
    font-weight:600;
    margin-bottom:15px;
}

.room-content p{
    line-height:1.8;
    color:#666;
    margin-bottom:25px;
}

/* ========================= */
/* EVENTS */
/* ========================= */

.events{
    background:#f7f7f7;
}

.event-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.event-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
}

.event-card:hover{
    transform:translateY(-10px);
}

.event-card img{
    height:240px;
    object-fit:cover;
}

.event-content{
    padding:25px;
}

.event-date{
    display:inline-block;
    background:#c59d5f;
    color:#fff;
    padding:8px 15px;
    border-radius:5px;
    margin-bottom:15px;
    font-size:14px;
}

.event-content h3{
    margin-bottom:12px;
    font-size:24px;
}

.event-content p{
    color:#666;
    line-height:1.7;
}

/* ========================= */
/* TESTIMONIAL */
/* ========================= */

.testimonial{
    position:relative;
    background:url("imagep/miawareception.webp") center/cover no-repeat;
    text-align:center;
    color:#fff;
}

.testimonial .overlay{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:rgba(0,0,0,0.75);
}

.testimonial-content{
    position:relative;
    z-index:2;
    padding:0 15px;
}

.stars{
    color:gold;
    font-size:30px;
    margin-bottom:25px;
}

.testimonial p{
    max-width:750px;
    margin:auto;
    font-size:20px;
    line-height:1.9;
    margin-bottom:25px;
}

.testimonial h4{
    font-size:22px;
    font-weight:500;
}

/* ========================= */
/* GALLERY */
/* ========================= */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.gallery-grid img{
    height:250px;
    object-fit:cover;
    border-radius:10px;
    transition:0.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ========================= */
/* CONTACT */
/* ========================= */

.contact{
    background:#111;
    color:#fff;
}

.contact .section-title p{
    color:#bbb;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:50px;
}

.contact-info h3{
    font-size:35px;
    margin-bottom:25px;
    font-family:'Playfair Display',serif;
}

.contact-info p{
    margin-bottom:20px;
    color:#ccc;
    line-height:1.8;
}

.contact-socials{
    margin-top:25px;
}

.contact-socials a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#1f1f1f;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    transition:0.3s;
}

.contact-socials a:hover{
    background:#c59d5f;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:none;
    outline:none;
    border-radius:5px;
    margin-bottom:20px;
    font-size:15px;
}

.contact-form textarea{
    height:170px;
    resize:none;
}

.contact-form button{
    border:none;
    background:#c59d5f;
    color:#fff;
    padding:15px 35px;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
    font-size:15px;
    width:100%;
}

.contact-form button:hover{
    background:#fff;
    color:#000;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer{
    background:#000;
    padding:40px 0;
    text-align:center;
    color:#999;
}

.footer-logo{
    color:#fff;
    font-size:32px;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
}

.footer-links{
    margin-bottom:20px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-links a{
    color:#aaa;
    transition:0.3s;
}

.footer-links a:hover{
    color:#c59d5f;
}

/* ========================= */
/* POPUP */
/* ========================= */

.popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:2000;
    padding:20px;
}

.popup-content{
    position:relative;
    max-width:800px;
    width:100%;
}

.popup-content img{
    border-radius:10px;
}

.close-popup{
    position:absolute;
    top:-15px;
    right:-15px;
    background:#fff;
    color:#000;
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:24px;
}

/* ========================= */
/* SCROLL TOP */
/* ========================= */

.scroll-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:50px;
    height:50px;
    border:none;
    background:#c59d5f;
    color:#fff;
    font-size:22px;
    border-radius:50%;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:0.4s;
    z-index:1000;
}

.show-scroll{
    opacity:1;
    visibility:visible;
}

/* ========================= */
/* ANIMATION */
/* ========================= */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

    .hero-content h1{
        font-size:55px;
    }

    .hamburger{
        display:flex;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:280px;
        height:100vh;
        background:#000;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:30px;
        transition:0.5s;
        z-index:1001;
    }

    .nav-links.active{
        right:0;
    }

    .navbar .btn{
        display:none;
    }

}

@media(max-width:768px){

    .hero{
        padding:120px 20px 70px;
    }

    .hero-content h1{
        font-size:42px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-light{
        width:100%;
        max-width:320px;
    }

    .section-title h2{
        font-size:35px;
    }

    .about-images{
        grid-template-columns:1fr;
    }

    .about-images img{
        height:240px;
    }

    .booking-box{
        grid-template-columns:1fr;
        padding:25px;
    }

    .room-grid,
    .service-grid,
    .event-grid,
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .section{
        padding:70px 0;
    }

    .container{
        width:92%;
    }

    .logo{
        font-size:24px;
    }

    .hero{
        min-height:100vh;
        padding:110px 15px 70px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.7;
    }

    .btn,
    .btn-light{
        width:100%;
        text-align:center;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:14px;
    }

    .about-text h3{
        font-size:28px;
    }

    .about-text p{
        font-size:15px;
    }

    .service-content h3,
    .room-content h3,
    .event-content h3{
        font-size:22px;
    }

    .testimonial p{
        font-size:16px;
    }

    .contact-info h3{
        font-size:28px;
    }

    .footer-links{
        flex-direction:column;
        gap:10px;
    }

}