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

/* ================= NAVBAR (STATIC) ================= */
.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;
    width: 100%;
    top: 0;
    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;
}

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

/* Remove hover animation */
.nav-links a:hover{
    color:white;
}
/* ================= HERO SECTION ================= */
.hero{
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 90px;
}

.bg-video{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.hero::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.hero-text{
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

.hero-text h1{
    font-size: 55px;
    margin-bottom: 15px;
    color: gold;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero-text p{
    font-size: 24px;
    margin-bottom: 20px;
}

.hero button{
    padding: 14px 35px;
    border: none;
    background: gold;
    font-weight: bold;
    cursor: pointer;
    border-radius: 30px;
    font-size:18px;
    transition:0.3s;
}

.hero button:hover{
    background:#d4af37;
    transform: scale(1.08);
}










/* ================= ABOUT SECTION (PREMIUM PARROT THEME) ================= */
.about {
    padding: 80px 10%;
    background: linear-gradient(135deg, #eaffea, #f5fff5);
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: auto;
}

.about h2 {
    font-size: 38px;
    color: #0b8f3c;
    margin-bottom: 10px;
    font-weight: bold;
}

.about-subtitle {
    font-size: 22px;
    color: #1ecb63;
    margin-bottom: 25px;
    font-weight: 600;
}

.about p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-highlights {
    margin-top: 25px;
}

.about-highlights span {
    display: inline-block;
    background: rgba(30, 203, 99, 0.1);
    color: #0b8f3c;
    padding: 10px 18px;
    margin: 8px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #1ecb63;
    transition: 0.3s ease;
}

.about-highlights span:hover {
    background: #1ecb63;
    color: white;
    transform: scale(1.05);
}

/* ================= SERVICES ================= */
.services{
    padding:70px 20px;
    text-align:center;
    background:#f9f9f9;
}

.services h2{
    font-size:36px;
    margin-bottom:20px;
    color:#0b8f3c;
}

.service-box{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:40px;
    flex-wrap:wrap;
}

.card{
    background:white;
    padding:30px;
    width:270px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.4s;
    border-top: 4px solid gold;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 12px 25px rgba(0,0,0,0.2);
}

/* ================= WHY CHOOSE ================= */
.why-choose{
    background:#0b8f3c;   /* simple green */
    padding:70px 20px;
    text-align:center;
}
.why-choose h2{
    font-size:36px;
    color:white;
    margin-bottom:20px;
}

.why-choose p{
    max-width:800px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:12px;
    line-height:1.8;
    font-size:18px;
}

/* ================= ROOMS ================= */
. h2{
    font-size:36px;
    margin-bottom:20px;
    color:#0b8f3c;
}
.rooms{
    
    padding:70px 20px;
    text-align:center;
    background:#ffffff;
}

.room-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:40px;
}

.room-card{
    width:260px;
    padding:25px;
    border-radius:15px;
    background:#ffffff;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.4s;
    border-top:4px solid gold;
}

.room-card i{
    font-size:40px;
    color:gold;
    margin-bottom:15px;
}

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

/* ================= RESTAURANT ================= */
.restaurant{
    padding:70px 20px;
    text-align:center;
    background:#fff8e6;
}

.reviews h1,
.reviews h2{
    color:#0b8f3c !important;
}
.gallery{
    padding:70px 20px;
    text-align:center;
    background:#f9f9f9;
}

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

.gallery-box img{
    width:300px;
    height:200px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
    transition:0.4s;
}

.gallery-box img:hover{
    transform:scale(1.05);
}
/* ================= PREMIUM GALLERY ================= */

.gallery {
    text-align: center;
    padding: 50px;
    background: #f5f7f4;
}

.gallery h1 {
    color: #0b8f3c;
    margin-bottom: 20px;
}

/* Container */
.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

/* Slider */
.gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Images */
.gallery-slider img {
    min-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s;
}

/* Hover effect */
.gallery-slider img:hover {
    transform: scale(1.05);
}

/* Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 22px;
    border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background: #0b8f3c;
}

/* Mobile */
@media(max-width:768px){
    .gallery-slider img {
        height: 220px;
    }
}
/* ================= HIGHLIGHTS ================= */
.highlights{
    padding:70px 20px;
    text-align:center;
    background:#f0fff0;
}

.highlight-box{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:40px;
}

.highlight-card{
    background:white;
    padding:25px;
    width:240px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    border-top:4px solid gold;
    transition:0.3s;
}

.highlight-card:hover{
    transform:translateY(-8px);
}

.highlight-card i{
    font-size:35px;
    color:gold;
}

/* ================= MISSION ================= */
.mission{
    padding:70px 20px;
    text-align:center;
    background:#fff8e6;
}

.mission p{
    max-width:800px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

/* ================= REVIEWS ================= */
/* ================= REVIEWS HEADING ================= */
.reviews h1,
.reviews h2{
    color:#0b8f3c;   /* green color */
}
.reviews{
    padding:70px 20px;
    text-align:center;
    background:#f9f9f9;
}

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

.review-card{
    background:white;
    padding:25px;
    width:280px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

.review-card:hover{
    transform:translateY(-8px);
}

/* ================= CTA ================= */
.cta{
    padding:80px 20px;
    text-align:center;
    background:linear-gradient(135deg, #006400, #32cd32);
    color:white;
}

.cta h2{
    font-size:36px;
}

.cta-btn{
    margin-top:20px;
    padding:15px 35px;
    font-size:18px;
    border:none;
    border-radius:30px;
    background:gold;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.cta-btn:hover{
    background:#d4af37;
    transform:scale(1.05);
}
/* ================= 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;
}
/* ================= 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;
}

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

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .nav-links{
        display:none;
    }

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

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

    .navbar{
        padding:15px 20px;
    }

    .about{
        padding:60px 20px;
    }

    .about h2{
        font-size:30px;
    }

    .about-subtitle{
        font-size:18px;
    }
}/* WHY CHOOSE SECTION */
.why-choose {
    background: linear-gradient(135deg, #a8ff78, #78ffd6); /* Attractive parrot green gradient */
    padding: 60px 20px;
    text-align: center; /* Center alignment */
}

.why-choose h2 {
    font-size: 32px;
    color: #004d00; /* Dark green heading */
    margin-bottom: 20px;
    font-weight: bold;
}

.why-choose p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #003300; /* Elegant dark text */
    background: rgba(255, 255, 255, 0.8); /* Glass effect */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/* RESTAURANT SECTION - GREEN THEME */
.restaurant {
    background: linear-gradient(135deg, #a8ff78, #38f9d7); /* Parrot green gradient */
    padding: 60px 20px;
    text-align: center;
}

.restaurant h2 {
    font-size: 32px;
    color: #004d00; /* Dark green heading */
    margin-bottom: 20px;
    font-weight: bold;
}

.restaurant p {
    max-width: 850px;
    margin: 15px auto;
    font-size: 18px;
    line-height: 1.8;
    color: #003300;
    background: rgba(255, 255, 255, 0.85); /* Glass effect */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 128, 0, 0.3);
    transition: 0.3s ease;
}

/* Hover Effect */
.restaurant p:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 128, 0, 0.5);
}





/* MISSION SECTION */
.mission {
    background: linear-gradient(135deg, #a8ff78, #38f9d7);
    padding: 60px 20px;
    text-align: center;
}

.mission h2 {
    font-size: 32px;
    color: #004d00;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Container */
.mission-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Mission Boxes */
.mission-box {
    background: rgba(255, 255, 255, 0.9);
    width: 260px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 128, 0, 0.3);
    transition: 0.3s ease;
}

.mission-box h3 {
    color: #006400;
    margin-bottom: 15px;
}

.mission-box p {
    font-size: 16px;
    color: #003300;
    line-height: 1.6;
}

/* Hover Effect */
.mission-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 128, 0, 0.5);
}





/* ===== WELCOME POPUP STYLE (PARROT GREEN THEME) ===== */
.popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Popup Box */
.popup-content {
    background: linear-gradient(135deg, #eaffea, #f5fff5);
    width: 90%;
    max-width: 400px;
    margin: 10% auto;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 128, 0, 0.4);
    border-top: 5px solid gold;
    animation: popupFade 0.6s ease;
}

.popup-content h2 {
    color: #0b8f3c; /* Parrot Dark Green */
    margin-bottom: 10px;
}

.popup-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.popup-content button {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    background: #32cd32; /* Parrot Green */
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.popup-content button:hover {
    background: #228b22;
    transform: scale(1.05);
}


/* Animation */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





/* MOBILE NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
background:#1e7d22;   /* Dark Green */
}
.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 screen and (max-width:768px){

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

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

.icon{
display:block;
}

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

}