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





/* ABOUT STORY SECTION */

.about-story{
padding:80px 10%;
background:#f9f9f9;
}

.about-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}


/* TEXT */

.about-text{
flex:1;
}

.about-text h2{
font-size:38px;
color:#0b8f3c;
margin-bottom:20px;
}

.about-text p{
font-size:18px;
line-height:1.7;
color:#555;
margin-bottom:15px;
}


/* IMAGE */

.about-image{
flex:1;
text-align:center;
}

.about-image img{
width:100%;
max-width:450px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}
.about-text h2{
font-size:40px;
margin-bottom:20px;
border-bottom:4px solid yellow;
display:inline-block;
padding-bottom:5px;
}

/* OUR FOOD SECTION */

.our-food{
color:#0b8f3c;

padding:80px 10%;
background:white;
}

.food-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}

/* IMAGE */

.food-image{
flex:1;
text-align:center;
}

.food-image img{
width:100%;
max-width:450px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* TEXT */

.food-text{
flex:1;
}

.food-text h2{
font-size:38px;
margin-bottom:20px;
border-bottom:4px solid yellow;
display:inline-block;
padding-bottom:5px;
}

.food-text p{
font-size:18px;
line-height:1.7;
color:#555;
margin-bottom:15px;
}



/* OUR ROOMS SECTION */

.our-rooms{
color:#0b8f3c;

padding:80px 10%;
background:#f9f9f9;
}

.rooms-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}

/* TEXT */

.rooms-text{
flex:1;
}

.rooms-text h2{
font-size:38px;
margin-bottom:20px;
border-bottom:4px solid yellow;
display:inline-block;
padding-bottom:5px;
}

.rooms-text p{
font-size:18px;
line-height:1.7;
color:#555;
margin-bottom:15px;
}

/* IMAGE */

.rooms-image{
flex:1;
text-align:center;
}

.rooms-image img{
width:100%;
max-width:450px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);





}


/* MISSION VISION SECTION */

.mission-vision{
    padding:80px 10%;
    background:#f5fff5;
}

.mv-container{
    display:flex;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}


/* IMAGES DESIGN */

.mv-images{
    flex:1;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.mv-images img{
    width:100%;
    border-radius:10px;
}

/* BIG IMAGE EFFECT */

.mv-images img:nth-child(1){
    grid-column:span 2;
    height:220px;
    object-fit:cover;
}


/* CONTENT */

.mv-content{
    flex:1;
}

.mv-content h2{
    color:#0b8f3c;
    font-size:32px;
    margin-top:20px;
}

.mv-content p{
    font-size:17px;
    color:#555;
    line-height:1.6;
}

.mv-content h2{
    color:#0b8f3c;          /* Green text */
    font-size:32px;
    margin-top:20px;
    display:inline-block;
    border-bottom:4px solid gold;   /* Yellow underline */
    padding-bottom:5px;
}


/* MOBILE */

@media(max-width:768px){

.mv-container{
flex-direction:column;
text-align:center;
}

.mv-images{
grid-template-columns:1fr;
}

.mv-images img:nth-child(1){
grid-column:auto;
}

}




@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5fff5;
}

/* REVIEW SECTION */

.reviews{
padding:80px 10%;
text-align:center;
}

.review-title{
font-size:36px;
color:#0b8f3c;
margin-bottom:60px;
border-bottom:4px solid gold;
display:inline-block;
padding-bottom:5px;
}

/* CARD CONTAINER */

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

/* CARD */

.card{
width:250px;
height:300px;
position:relative;
cursor:pointer;
}

/* CARD CONTENT */

.card .content{
width:100%;
height:100%;
background:rgba(255,255,255,0.2);
backdrop-filter:blur(15px);
border:1px solid white;
color:#333;
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
text-align:center;
padding:20px;
box-shadow:0 0 30px rgba(0,0,0,0.05);
transition:all .4s;
}

/* TEXT */

.card .content h3{
color:#0b8f3c;
margin-bottom:8px;
}

/* HOVER TEXT COLOR */

.card:hover .content{
color:#000;
}

/* BACKGROUND SHAPES */

.card::before,
.card::after{
content:'';
position:absolute;
width:100px;
height:50px;
background:#0b8f3c;   /* Green */
z-index:-1;
transition:all .4s;
}

.card::before{
top:0;
right:0;
}

.card::after{
bottom:0;
left:0;
background:#39FF14;   /* Light Green */
}

/* HOVER ANIMATION */

.card:hover::before{
width:50px;
height:50px;
transform:translate(-20px,20px);
border-radius:50%;
}

.card:hover::after{
width:50px;
height:50px;
transform:translate(20px,-20px);
border-radius:50%;
}











/* TEAM SECTION */

.team-section{
    padding:80px 10%;
    text-align:center;
    background:#f9f9f9;
}

/* TITLE */

.section-title{
    font-size:36px;
    color:#0b8f3c;
    margin-bottom:10px;
}

.section-subtitle{
    max-width:600px;
    margin:auto;
    color:#555;
    font-size:16px;
    margin-bottom:50px;
}

/* TEAM CONTAINER */

.team-container{
    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}

/* CARD */

.team-card{
    width:350px;
    text-align:center;
}

/* CIRCLE IMAGE */

.team-card img{
    width:220px;
    height:220px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid gold;
    transition:0.4s;
}

/* HOVER EFFECT */

.team-card img:hover{
    transform:scale(1.08);
}

/* TEXT */

.team-card h3{
    margin-top:20px;
    font-size:22px;
    color:#333;
}

.team-card p{
    font-size:15px;
    color:#666;
    margin-top:10px;
    line-height:1.6;
}

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

}