:root{
    --bg:#FDFCFA;
    --text:#1A1A1A;
    --accent:#C4704A;
    --light:#F6F1EC;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:'Sora',sans-serif;
    line-height:1.8;
}

h1,h2,h3{
    font-family:'Newsreader',serif;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:100px 0;
}

.light{
    background:var(--light);
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:white;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.logo{
    font-size:1.5rem;
    font-weight:700;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:var(--text);
    transition:.3s;
}

.nav-links a:hover{
    color:var(--accent);
}

.menu-btn{
    display:none;
    cursor:pointer;
    font-size:1.8rem;
}

/* HERO */

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),
    url("https://images.unsplash.com/photo-1555244162-803834f70033?w=1600");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content{
    max-width:800px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:30px;
}

/* BUTTON */

.btn{
    display:inline-block;
    background:var(--accent);
    color:white;
    padding:14px 30px;
    border-radius:40px;
    text-decoration:none;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

/* CARDS */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.card{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 20px rgba(0,0,0,.05);
}

/* GALLERY */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    margin-top:40px;
}

.gallery img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:18px;
    transition:.4s;
}

.gallery img:hover{
    transform:scale(1.05);
}

/* CONTACT */

.contact{
    text-align:center;
}

/* FOOTER */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:25px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero h1{
        font-size:2.5rem;
    }

    .nav-links{
        position:absolute;
        top:80px;
        right:-100%;
        flex-direction:column;
        background:white;
        width:250px;
        padding:30px;
        transition:.4s;
    }

    .nav-links.active{
        right:0;
    }

    .menu-btn{
        display:block;
    }
}
.booking-form{
    max-width:700px;
    margin:40px auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    font-family:'Sora',sans-serif;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
    outline:none;
    border-color:#C4704A;
}

.booking-form button{
    border:none;
    cursor:pointer;
}
.whatsapp-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:white;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
    z-index:1000;
}
.stats{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.stat-card{
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
    min-width:200px;
}

.booking-card button{
    margin-right:10px;
    margin-top:10px;
    padding:10px 15px;
    border:none;
    border-radius:8px;
    cursor:pointer;
}
#searchInput{
    width:100%;
    padding:15px;
    margin:20px 0;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}
#exportBtn{
    display:block;
    margin:20px auto;
    padding:12px 25px;
    cursor:pointer;
}
.filter-buttons{
    text-align:center;
    margin:20px 0;
}

.filter-buttons button{
    margin:5px;
    padding:10px 20px;
    border:none;
    border-radius:8px;
    cursor:pointer;
}
.logo-container{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-img{
    width:80px;
    height:80px;
    object-fit:contain;
}

.logo-text{
    font-size:32px;
    font-weight:700;
    color:#1A1A1A;
}
button{
    background:#C4704A;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}