/* ===== GLOBAL ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: "Segoe UI", sans-serif;
    background:#f8f6f1;
    color:#333;
    line-height:1.6;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.mobile-book{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    padding:15px;
    background:#7b8d5d;
    color:white;
    text-align:center;
    z-index:999;
}

@media(min-width:769px){
    .mobile-book{
        display:none;
    }
}

/* ===== HEADER ===== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 40px;

    background:rgba(0,0,0,.45);
    backdrop-filter:blur(8px);
}

.logo{
    color:white;
    font-size:1.4rem;
    letter-spacing:2px;
    font-weight:300;
}

.lang-switch button{
    background:none;
    border:1px solid rgba(255,255,255,.4);
    color:white;
    padding:8px 12px;
    cursor:pointer;
    margin-left:8px;
    transition:.3s;
}

.lang-switch button:hover{
    background:white;
    color:black;
}

/* ===== HERO ===== */

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slider{
    position:absolute;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1.5s ease;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
}

.hero{
    height:100vh;
    min-height:700px;
    position:relative;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-text{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    z-index:10;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.hero-text{
    position:relative;
    z-index:10;

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;

    padding:20px;
}

.hero-text h1{
    font-size:4rem;
    font-family:"Playfair Display", serif;
    margin-bottom:20px;
    max-width:900px;
}

.hero-text p{
    font-size:1.4rem;
    margin-bottom:30px;
}

.btn{
    background:white;
    color:black;

    padding:16px 36px;
    border-radius:50px;

    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

/* ===== SECTIONS ===== */

section{
    padding:100px 10%;
}

section h2{
    text-align:center;
    font-size:2.5rem;
    margin-bottom:40px;
    font-family:"Playfair Display", serif;
}

/* ===== ABOUT ===== */

.about{
    text-align:center;
    max-width:1000px;
    margin:auto;
}

.about p{
    font-size:1.2rem;
}

/* ===== AMENITIES ===== */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.grid div{
    background:white;
    padding:25px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

/* ===== GALLERY ===== */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.gallery-grid img{
    border-radius:10px;
    height:280px;
    object-fit:cover;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

/* ===== LOCATION ===== */

.location p{
    text-align:center;
    margin-bottom:30px;
    font-size:1.1rem;
}

.location iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius:12px;
}

/* ===== REVIEWS ===== */

.reviews{
    background:white;
}

.review{
    max-width:900px;
    margin:20px auto;
    padding:30px;
    border-left:4px solid #7b8d5d;
    background:#fafafa;
    font-size:1.1rem;
}

/* ===== BOOKING FORM ===== */

#booking{
    background:#f0ede4;
}

form{
    max-width:800px;
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:16px;
}

input,
textarea{
    padding:16px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:1rem;
}

textarea{
    min-height:180px;
}

form button{
    background:#7b8d5d;
    color:white;
    border:none;

    padding:18px;
    font-size:1rem;

    cursor:pointer;
    border-radius:8px;
    transition:.3s;
}

form button:hover{
    background:#65764b;
}

.date-row{
    display:flex;
    gap:20px;
}

.date-row > div{
    flex:1;
}

.date-row label{
    display:block;
    margin-bottom:8px;
    font-weight:500;
}

@media(max-width:768px){

    .date-row{
        flex-direction:column;
    }

}

textarea::placeholder,
input::placeholder{
    color:#888;
    opacity:1;
}

/* ===== FOOTER ===== */

footer{
    background:#1f1f1f;
    color:white;
    text-align:center;
    padding:50px 20px;
}

footer p{
    margin:10px 0;
}

/* ===== WHATSAPP BUTTON ===== */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    border-radius:50%;
    background:#25d366;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;
    font-size:28px;

    z-index:1000;

    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    header{
        padding:15px 20px;
    }

    .logo{
        font-size:1rem;
    }

    .hero-text h1{
        font-size:2.4rem;
    }

    .hero-text p{
        font-size:1rem;
    }

    section{
        padding:70px 25px;
    }

    section h2{
        font-size:2rem;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }
}