/* ================= RESET CSS ================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

/* Space for fixed navbar */
body{
padding-top:90px;
}

/* ================= NAVBAR ================= */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 50px;
    background:#0b8f3c;   /* Simple parrot green */
border-bottom:2px solid gold;
position:fixed;
top:0;
width:100%;
z-index:1000;
}

/* LOGO */
.logo{
display:flex;
align-items:center;
}

.logo img{
height:70px;
width:70px;
border-radius:50%;
object-fit:cover;
border:3px solid gold;
}

/* NAV LINKS */

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

.nav-links li{
margin-left:30px;
}

.nav-links a{
color:white;
text-decoration:none;
font-size:18px;
font-weight:bold;
}

.nav-links a:hover{
color:white;
}

/* MOBILE ICON */

.icon{
display:none;
font-size:24px;
color:white;
cursor:pointer;
}




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

/* ABOUT HERO SECTION */

.about-hero{
    width:100%;
    height:100vh;

background-image:url("../images/hotelpearl.jpeg");   
 background-size:cover;
    background-position:center;

background-color:rgba(0,0,0,0.6);
background-blend-mode:darken;

    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

/* TEXT STYLE */

.about-content h1{
    font-size:60px;
    color:yellow;
    margin-bottom:15px;
}

.about-content p{
    font-size:22px;
    color:white;
}








/* ================= COMMON TITLE ================= */

.title{
    text-align:center;
    font-size:38px;
    color:#0b8f3c;
    margin-bottom:10px;
}

.subtitle{
    text-align:center;
    color:#666;
    margin-bottom:60px;
}


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

.rooms{
    padding:90px 10%;
}

.room-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.room-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

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

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

.room-info{
    padding:25px;
}

.room-info h3{
    margin-bottom:10px;
}

.room-info p{
    color:#666;
    font-size:14px;
}

.room-btn{
    display:inline-block;
    margin-top:15px;
    padding:8px 18px;
    background:#0b8f3c;
    color:white;
    text-decoration:none;
    border-radius:4px;
}












/* ================= ROOMS facility ================= */
.room-facilities{
    padding:80px 8%;
    background:#f6f6f6;
    text-align:center;
}

.fac-heading{
    font-size:38px;
    margin-bottom:60px;
    color:green;   /* Changed to green */
}

/* Removed underline line */

/* Grid Layout */

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

/* Card */

.facility-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    cursor:pointer;
}

/* Image */

.facility-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.5s;
}

/* Overlay */

.facility-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:linear-gradient(transparent, rgba(0,0,0,0.85));
    color:white;
    padding:20px;
    transform:translateY(70%);
    transition:0.4s;
}

/* Hover Effect */

.facility-card:hover img{
    transform:scale(1.1);
}

.facility-card:hover .facility-overlay{
    transform:translateY(0);
}

/* Text */

.facility-overlay h3{
    font-size:20px;
    margin-bottom:6px;
}

.facility-overlay p{
    font-size:14px;
}

/* Responsive */

@media(max-width:768px){

.fac-heading{
    font-size:30px;
}

} ================= GALLERY ================= */
.room-gallery{
    padding:80px 10%;
    background:#f7f7f7;
    text-align: center;
}

.gallery-title{
    font-size:36px;
    margin-bottom:50px;
    color:green;   
    text-align: center;

}

/* Grid */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

/* Image Card */

.gallery-card{
    overflow:hidden;
    border-radius:10px;
}

.gallery-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.4s;
}

/* Hover Effect */

.gallery-card:hover img{
    transform:scale(1.1);
}

/* ROOM HIGHLIGHT SECTION */

.room-highlight{
    padding:100px 10%;
    background:#f8f8f8;
}

.highlight-container{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

/* IMAGE */

.highlight-image{
    flex:1;
}

.highlight-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* CONTENT */

.highlight-content{
    flex:1;
}

.highlight-content h2{
    font-size:36px;
    color:#0b8f3c;
    margin-bottom:15px;
}

.highlight-text{
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}

/* FEATURES */

.highlight-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin-bottom:25px;
}

.highlight-features span{
    background:white;
    padding:10px 15px;
    border-radius:6px;
    box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

/* BUTTON */

.highlight-btn{
    display:inline-block;
    padding:12px 25px;
    background:#0b8f3c;
    color:white;
    text-decoration:none;
    border-radius:5px;
    transition:0.3s;
}

.highlight-btn:hover{
    background:#066c2b;
}



/* ROOM perfect section */


.perfect-for{
padding:80px 10%;
text-align:center;
background:#f5f5f5;
}

.perfect-for h2{
font-size:35px;
color:#0b8f3c;
margin-bottom:40px;
}

.perfect-container{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.perfect-box{
background:white;
padding:30px;
width:180px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.perfect-box span{
font-size:40px;
display:block;
margin-bottom:10px;
}

.perfect-box:hover{
transform:translateY(-10px);
background:#0b8f3c;
color:white;
}






/* ================= FOOTER ================= */
.footer{
    background:#111;
    color:white;
    padding:50px 0;
}

.footer .row{
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;
}

.footer-col{
    margin:20px;
}

.footer-col h4{
    color:gold;
    margin-bottom:20px;
}

/* ================= POPUP ================= */

.popup{
display:none;
position:fixed;
z-index:2000;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
}

.popup-content{
background:white;
width:90%;
max-width:400px;
margin:10% auto;
padding:30px;
border-radius:20px;
text-align:center;
border-top:5px solid gold;
}

/* ================= ANIMATION ================= */

@keyframes fadeIn{
from{opacity:0; transform:translateY(30px);}
to{opacity:1; transform:translateY(0);}
}

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

@media(max-width:768px){

.nav-links{
display:none;
flex-direction:column;
width:100%;
background:#111;
position:absolute;
top:80px;
left:0;
}

.nav-links li{
margin:15px 0;
text-align:center;
}

.icon{
display:block;
}

.navbar.responsive .nav-links{
display:flex;
}

.hero-text h1{
font-size:35px;
}

.hero-text p{
font-size:18px;
}

}