/* ================= 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;
}





.offers{
padding:60px 20px;
text-align:center;
background:#f9f9f9;
}

.offers h2{
font-size:34px;
color:#0b8f3c;
display:inline-block;
border-bottom:5px solid yellow;
padding-bottom:6px;
margin-bottom:10px;
}

.subtitle{
color:#555;
margin-bottom:40px;
}

/* OFFER BANNER */

.offer-banner{
position:relative;
max-width:900px;
margin:40px auto;
overflow:hidden;
border-radius:10px;
box-shadow:0 4px 15px rgba(0,0,0,0.2);
}

.offer-banner img{
width:100%;
height:350px;
object-fit:cover;
}

/* TEXT OVER IMAGE */

.offer-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
background:rgba(0,0,0,0.5);
color:white;
padding:25px;
text-align:center;
border-radius:6px;
width:70%;
}

.offer-content h3{
font-size:26px;
margin-bottom:5px;
}

.offer-content h4{
margin-bottom:10px;
}

.offer-content p{
margin-bottom:15px;
}

/* BUTTON */

.offer-btn{
display:inline-block;
padding:10px 20px;
background:#0b8f3c;
color:white;
text-decoration:none;
border-radius:4px;
transition:0.3s;
}

.offer-btn:hover{
background:#066b2c;
}







/* SPECIAL FOOD OFFER SECTION */

.food-offer-section{
    padding:80px 10%;
    background:#f5f5f5;
    text-align:center;

}

.offer-heading{
    font-size:40px;
    color:#0b8f3c;
    margin-bottom:50px;
    position:relative;
}

.offer-heading::after{
    content:"";
    width:120px;
    height:4px;
    background:gold;
    display:block;
    margin:10px auto;
}

/* GRID */

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

/* FOOD BOX */

.food-box{
    position:relative;
    overflow:hidden;
    border-radius:10px;
}

.food-box img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.5s;
}

/* OVERLAY */

.overlay{
    position:absolute;
    bottom:0;
    width:100%;
    background:rgba(0,0,0,0.65);
    color:white;
    padding:20px;
    transform:translateY(100%);
    transition:0.4s;
}

/* HOVER EFFECT */

.food-box:hover img{
    transform:scale(1.1);
}

.food-box:hover .overlay{
    transform:translateY(0);
}

/* TEXT */

.overlay h3{
    margin-bottom:8px;
    color:gold;
}

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






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

footer a{
color:#8A2BE2;   /* violet color */
text-decoration: underline;
}
.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 NAVBAR */


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

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

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

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


/* ================= 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;
}

}


