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








.restaurant-page{
padding:90px 10%;
background:white;
line-height:1.6;
}

/* Section Header */

.section-header{
text-align:center;
margin-bottom:50px;
}
.section-header h2{
color:#0B8F3C;        /* your green theme */
font-size:42px;
display:inline-block;
position:relative;
padding-bottom:10px;
}

.section-header h2::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:100%;          /* full underline under text */
height:5px;
background:#e6e600;  /* yellow underline */
}
/* Story Section */

.story{
display:flex;
align-items:center;
gap:50px;
flex-wrap:wrap;
margin-bottom:80px;
}

.story-text{
flex:1;
color:#555;
}

.story-img{
flex:1;
}

.story-img img{
width:100%;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

/* Signature Dishes */

.dishes{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-bottom:80px;
}

.dish-card{
width:260px;
border-radius:10px;
overflow:hidden;
background:white;
box-shadow:0 4px 15px rgba(0,0,0,0.1);
transition:0.3s;
text-align:center;
}

.dish-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

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

.dish-card h3{
color:#1f7a3f;
padding:15px;
}

/* Highlights */

.highlights{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-bottom:80px;
}

.highlight-box{
width:230px;
background:#f8f8f8;
padding:25px;
border-radius:10px;
text-align:center;
transition:0.3s;
}

.highlight-box:hover{
background:#1f7a3f;
color:white;
transform:translateY(-6px);
}

/* Chef Section */

.chef{
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
justify-content:center;
margin-bottom:80px;
}

.chef img{
width:300px;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.chef-text{
max-width:420px;
}

.chef-text h3{
color:#1f7a3f;
margin-bottom:10px;
}

/* Menu Categories */

.menu{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-bottom:80px;
}

.menu-box{
background:#1f7a3f;
color:white;
padding:18px 40px;
border-radius:6px;
transition:0.3s;
}

.menu-box:hover{
background:#166431;
transform:scale(1.05);
}

/* Gallery */

.gallery{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-bottom:80px;
}

.gallery img{
width:180px;
height:180px;
object-fit:cover;
border-radius:50%;           /* makes image round */
border:5px solid #f4c430;    /* yellow border */
transition:0.3s;
}









.restaurant-video{
    padding:80px 0;              /* remove side gap for full width */
    text-align:center;
    background:#f4fff6;
}

.video-heading{
    font-size:36px;
    color:#0b8f3c;
    margin-bottom:30px;
}

/* container full width */
.video-container{
    width:100%;
    display:flex;
    justify-content:center;
}

/* FULL WIDTH VIDEO */
.video-player{
    width:100%;                  /* full screen look */
    max-width:1200px;           /* control large screens */

    border:10px solid gold;      /* 💛 yellow border */
    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}









.restaurant-menu{
margin-top:80px;
}

/* Menu layout */

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

/* Menu card */

.menu-card{
background:#f8f8f8;
padding:25px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
transition:0.3s;
}

.menu-card:hover{
transform:translateY(-5px);
}

/* Menu category */

.menu-card h3{
color:#1f7a3f;
margin-bottom:15px;
border-bottom:3px solid #f4c430;
display:inline-block;
padding-bottom:5px;
}

/* Menu item */

.menu-item{
display:flex;
justify-content:space-between;
padding:8px 0;
border-bottom:1px dashed #ccc;
font-size:15px;
}

.menu-item:last-child{
border-bottom:none;
}

/* Hover effect */

.gallery img:hover{
transform:scale(1.08);
box-shadow:0 6px 15px rgba(0,0,0,0.2);
}








/* Reservation Form */
/* ===== Reservation Form Section ===== */




/* ================= SECTION HEADING ================= */

.section-header{
    text-align:center;
    margin:60px 0 30px;
}

.section-header h2{
    font-size:36px;
    color:#0b8f3c;
    position:relative;
    display:inline-block;
}

/* ⭐ FULL WIDTH UNDERLINE (MATCH TEXT LENGTH) */
.section-header h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:4px;
    background:gold;
    border-radius:2px;
}








.form-container{
max-width:450px;
margin:50px auto;
padding:40px;
background:#f7f7f7;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* Form Layout */
#reservationForm{
display:flex;
flex-direction:column;
gap:18px;
}

/* Inputs */
#reservationForm input,
#reservationForm select{
width:100%;
padding:14px;
border:1px solid #ddd;
border-radius:6px;
font-size:15px;
background:white;
outline:none;
transition:0.3s;
}

/* Input Focus Effect */
#reservationForm input:focus,
#reservationForm select:focus{
border-color:#2c8f4d;
box-shadow:0 0 5px rgba(44,143,77,0.3);
}

/* Button */
#reservationForm button{
background:#2c8f4d;
color:white;
border:none;
padding:15px;
font-size:16px;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

/* Button Hover */
#reservationForm button:hover{
background:#1f6b38;
}

/* Responsive */
@media(max-width:500px){

.form-container{
margin:30px 15px;
padding:30px;
}

}
/* Timing */

.timing{
text-align:center;
font-size:18px;
color:#444;
line-height:1.8;
}














/* ================= FOOTER ================= */
.footer{
    background:#111;
    color:white;
    padding:50px 0;
}
footer a{
color:#8a2be2;   
text-decoration:none;
}

footer a:hover{
color:#a855f7;   }

.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;
}

}