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

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
}

.hero{
    width:100%;
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
    url('images/beach-bg.jpg') center/cover no-repeat;
    display:flex;
    flex-direction:column;
}

.navbar{
    width:100%;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:20px;
}

.logo-area img{
    width:110px;
}

.logo-text h1{
    color:#fff;
    font-size:38px;
    font-weight:800;
}

.logo-text p{
    color:#ddd;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    text-decoration:none;
    color:#fff;
}

.hero-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

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

.hero-content p{
    width:70%;
    margin:20px 0;
    line-height:1.8;
}

.btn{
    padding:14px 35px;
    background:#00b7ff;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
}

section{
    padding:90px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:45px;
}

.white h2{
    color:#fff;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.rooms{
    background:#0f172a;
}

.room-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.room-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
}

.room-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.room-content{
    padding:25px;
}

.gallery-container{
    columns:3 250px;
    gap:15px;
}

.gallery-container img{
    width:100%;
    margin-bottom:15px;
    border-radius:15px;
}

.tourist-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.tourist-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.tourist-card h3{
    margin-bottom:20px;
}

.tourist-card ul{
    padding-left:20px;
}

.tourist-card li{
    margin-bottom:12px;
}

.contact{
    background:
    linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
    url('images/night.jpg') center/cover no-repeat;
}

.contact-container{
    display:flex;
    justify-content:center;
}

.contact-card{
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(12px);
    padding:50px;
    border-radius:25px;
    text-align:center;
    color:#fff;
    width:500px;
}

footer{
    background:#000;
    color:#fff;
    text-align:center;
    padding:25px;
}

.floating-buttons{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.call-btn,
.whatsapp-btn{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
}

.call-btn{
    background:#007bff;
    color:#fff;
    font-size:30px;
}

.whatsapp-btn{
    background:#25D366;
}

.whatsapp-btn img{
    width:38px;
}


/* GOOGLE MAP BUTTON */

.map-button{
    margin-top:25px;
}

.map-button a{
    display:inline-block;
    background:#00b7ff;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    font-size:20px;
    font-weight:700;
    border-radius:60px;
    letter-spacing:1px;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    transition:0.3s;
}

.map-button a:hover{
    background:#0095d1;
    transform:translateY(-5px) scale(1.03);
}


/* WHAT WE OFFER */

.offer-section{
    background:#f8fbff;
}

.offer-subtitle{
    text-align:center;
    max-width:800px;
    margin:15px auto 0;
    color:#666;
    line-height:1.8;
}

.offer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.offer-card{
    background:#fff;
    padding:35px 30px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.4s;
}

.offer-card:hover{
    transform:translateY(-10px);
}

.offer-icon{
    font-size:48px;
    margin-bottom:20px;
}

.offer-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.offer-card p{
    line-height:1.8;
    color:#555;
}

/* MOBILE RESPONSIVE FIX */

@media(max-width:991px){

    .navbar{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .logo-area{
        flex-direction:column;
        text-align:center;
    }

    .hero{
        height:auto;
        padding-bottom:80px;
    }

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

    .hero-content p{
        width:100%;
    }

    .about-container{
        grid-template-columns:1fr;
    }

    .gallery-container{
        columns:2 150px;
    }

    .contact-card{
        width:100%;
    }

}

@media(max-width:600px){

    section{
        padding:70px 5%;
    }

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

    .gallery-container{
        columns:1;
    }

    .offer-container,
    .room-container,
    .tourist-container{
        grid-template-columns:1fr;
    }

    .floating-buttons{
        right:15px;
        bottom:15px;
    }

}


/* ANDROID PERFECT RESPONSIVE */

html,body{
overflow-x:hidden;
width:100%;
}

img{
max-width:100%;
height:auto;
}

@media(max-width:768px){

.navbar{
flex-direction:column !important;
padding:15px 5% !important;
gap:15px;
text-align:center;
}

.logo-area{
flex-direction:column !important;
}

.logo-area img{
width:80px !important;
}

.logo-text h1{
font-size:24px !important;
line-height:1.3;
}

.logo-text p{
font-size:13px;
}

.nav-links{
justify-content:center !important;
gap:10px !important;
padding:0;
width:100%;
}

.nav-links li{
list-style:none;
width:45%;
}

.nav-links a{
display:block;
padding:10px;
background:#ffffff20;
border-radius:10px;
font-size:14px;
}

.hero{
min-height:auto !important;
padding-bottom:50px;
}

.hero-content{
padding:30px 15px !important;
}

.hero-content h1{
font-size:30px !important;
line-height:1.3;
}

.hero-content p{
width:100% !important;
font-size:15px;
}

section{
padding:60px 5% !important;
}

.section-title h2{
font-size:28px !important;
}

.about-container,
.offer-container,
.room-container,
.tourist-container{
grid-template-columns:1fr !important;
}

.gallery-container{
columns:1 !important;
}

.contact-card{
width:100% !important;
padding:25px 15px !important;
}

.map-button a{
display:block;
width:100%;
font-size:14px !important;
padding:15px !important;
}

.call-btn,
.whatsapp-btn{
width:52px !important;
height:52px !important;
}

}
