*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    line-height:1.6;
}


.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#52734d;
    padding:15px 0;
}


.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.brand{
    display:flex;
    align-items:center;
}

.brand img{
    height:60px;
    margin-right:10px;
    border-radius:50%;
    object-fit:cover; 
}

.brand span{
    color:white;
    font-size:24px;
    font-weight:bold;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    color:white;
    text-decoration:none;
}

.hero{
    position:relative;
    height:45vh;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
    z-index:1;
}
.hero-content p{
    color:white;
    font-size:20px;
    text-shadow:1px 1px 6px rgba(0,0,0,0.7);
}
.hero-content h1{
    font-size:50px;
    margin:20px 0;
    color:white;
    text-shadow:2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:90%;
    text-align:center;
    z-index:10;
}
.hero-logo{
    width:180px;
}

.hero h1{
    font-size:50px;
    margin:20px 0;
}

.btn{
    display:inline-block;
    padding:12px 25px;
    border-radius:5px;
    text-decoration:none;
}

.primary-btn{
    background:#d4af37;
    color:black;
}

.secondary-btn{
    background:#1877f2;
    color:white;
}

.features{
    padding:60px 0;
}

.features h2{
    text-align:center;
    margin-bottom:30px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.card{
    background:#f5f5f5;
    padding:25px;
    border-radius:10px;
    text-align:center;
}

.showcase{
    padding:60px 0;
}

.showcase h2{
    text-align:center;
    margin-bottom:30px;
}

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

.gallery-grid img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:10px;
}

.contact-preview{
    background:#52734d;
    color:white;
    text-align:center;
    padding:15px 0;
}

.contact-preview h2{
    margin:0 0 8px 0;
}

.contact-preview p{
    margin:3px 0;
    line-height:1.4;
}

footer{
    background:black;
    color:white;
    text-align:center;
    padding:5px;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    animation:slider 9s infinite;
}

.slide1{
    background-image:url('images/Photo_Gallery/Photo_Gallery_06.JPG');
    animation-delay:0s;
}

.slide2{
    background-image:url('images/Photo_Gallery/Photo_Gallery_07.JPG');
    animation-delay:3s;
}

.slide3{
    background-image:url('images/Video_Gallery/Video_Gallery_01.JPG');
    animation-delay:6s;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:20px;
}

@keyframes slider{

    0%{
        opacity:0;
    }

    10%{
        opacity:1;
    }

    30%{
        opacity:1;
    }

    40%{
        opacity:0;
    }

    100%{
        opacity:0;
    }

}

@media(max-width:1000px){

    .cards{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .cards{
        grid-template-columns:1fr;
    }

}

.booking-section{
    max-width:800px;
    margin:50px auto;
    padding:40px;
    background:#ffffff;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.10);
}

.booking-section h1{
    text-align:center;
    margin-bottom:10px;
}

.booking-section p{
    text-align:center;
    margin-bottom:30px;
    color:#666;
}

.booking-form{
    display:flex;
    flex-direction:column;
}

.booking-form label{
    font-weight:bold;
    margin-top:15px;
    margin-bottom:5px;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

.booking-form textarea{
    min-height:120px;
}

.whatsapp-btn{
    margin-top:5;
    background:#25D366;
    color:white;
    border:none;
    padding:15px;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
}

.whatsapp-btn:hover{
    background:#1ea952;
}


.email-btn{
    margin-top:10px;
    background:#2563eb;
    color:white;
    border:none;
    padding:15px;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
    width:30%;
}

.email-btn:hover{
    background:#1d4ed8;
}


.messenger-btn{
    margin-top:10px;
    background:#0084ff;
    color:white;
    border:none;
    padding:15px;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
}

.button-row{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.whatsapp-btn,
.email-btn,
.messenger-btn{
    margin-top:5;
    width:220px;
    height:55px;

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

    border:none;
    border-radius:10px;

    font-size:16px;
    font-weight:bold;

    cursor:pointer;
}

.messenger-btn:hover{
    background:#006fe6;
}


/* =======================
   EVENTS PAGE
======================= */

.events-page{
    padding:20px 8%;
    background:#ffffff;
}

.event-row{
    display:flex;
    align-items:center;
    gap:70px;
    margin-bottom:80px;
}

.event-row.reverse{
    flex-direction:row-reverse;
}

.event-image{
    flex:1;
}

.event-image img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.event-text{
    flex:1;
}

.event-text h2{
    font-size:32px;
    margin-bottom:20px;
    color:#222;
}

.event-text p{
    font-size:17px;
    line-height:1.8;
    color:#555;
    margin-bottom:15px;
    text-align:justify;
}

@media(max-width:768px){

    .event-row,
    .event-row.reverse{
        flex-direction:column;
    }

    .event-image img{
        height:250px;
    }

    .event-text h2{
        font-size:26px;
    }
}

.page-title{
    text-align:center;
    padding:10px 0 15px;
}

.page-title h1{
    font-size:48px;
    margin-bottom:5px;
}

.page-title p{
    color:#666;
    font-size:18px;
}


.event-book-now{
    text-align:right;
    margin-bottom:20px;
    margin-right:40px;
}

.event-book-now h3{
    font-size:18px;
    margin-bottom:5px;
}

.event-book-now p{
    font-size:13px;
    color:#666;
    margin-bottom:8px;
}

.small-book-btn{
    display:inline-block;
    padding:8px 5px;
    background:#d4af37;
    color:black;
    text-decoration:none;
    border-radius:5px;
    font-size:13px;
    font-weight:bold;
    text-align:left;
}


.detail-row{
    display:flex;
    gap:50px;
    align-items:center;
    padding:50px;
}

.detail-image{
    flex:1;
}

.detail-image img{
    width:100%;
    border-radius:15px;
}

.detail-text{
    flex:1;
}

.detail-text h2{
    margin-bottom:15px;
}

.detail-text p{
    line-height:1.8;
    text-align:justify;
}
@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

}

.gallery-page{
    padding:20px 50px;
}

.gallery-image{
    position:relative;
}

.gallery-label{
    position:absolute;
    top:8px;
    right:8px;

    background:rgba(0,0,0,0.6);
    color:white;

    padding:3px 8px;

    font-size:11px;
    font-weight:bold;

    border-radius:4px;

    z-index:10;
}

.detail-row{
    display:flex;
    gap:50px;
    align-items:center;
    padding:50px;
}

.detail-image{
    flex:1;
}

.detail-image img{
    width:100%;
    border-radius:10px;
}

.detail-text{
    flex:1;
}

.detail-text h2{
    margin-bottom:20px;
}

.detail-text p{
    line-height:1.8;
    text-align:justify;
}
.gallery-card{
    cursor:pointer;
}

.gallery-detail-page{
    padding:40px;
}

.detail-row{
    display:flex;
    gap:60px;
    align-items:center;
}

.detail-image{
    flex:1;
}

.detail-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.detail-text{
    flex:1;
}

.detail-text h2{
    font-size:36px;
    margin-bottom:25px;
    color:#222;
}

.detail-text h3{
    margin-top:25px;
    margin-bottom:10px;
}

.detail-text p{
    line-height:1.8;
    color:#555;
}

.small-book-btn{
    display:inline-block;
    margin-top:20px;
    padding:10px 18px;
    background:#d4af37;
    color:black;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
}


/* =========================
   MENU PAGE
========================= */

.menu-page{
    padding:30px;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(300px, 450px));
    justify-content:center;
    gap:25px;
}

.menu-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    padding-bottom:10px;
}

.menu-card h3{
    padding:15px;
    margin:0;
    color:#1b4332;
}

.menu-card img{
    width:100%;
    max-height:280px;
    object-fit:contain;
    cursor:pointer;
    display:block;
}

.menu-card p{
    padding:10px;
    color:#666;
    font-size:14px;
}

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

@media(max-width:768px){

    .menu-grid{
        grid-template-columns:1fr;
    }

    .menu-card img{
        height:auto;
    }

}

/* ======================
   CONTACT PAGE
====================== */

.contact-page{
    max-width:1200px;
    margin:auto;
    padding:5px 10px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;

    max-width:1000px;
    margin:15px auto;
}


.contact-info{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.contact-info p{
    margin-bottom:20px;
    line-height:1.8;
}

.contact-map iframe{
    width:100%;
    height:440px;
    border:0;
    border-radius:12px;
}

.business-hours{
    text-align:center;
    margin-top:40px;
}

.business-hours h2{
    margin-bottom:10px;
}

@media(max-width:768px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}


/* ======================
   REVIEWS PAGE
====================== */

.reviews-page{
    max-width:1100px;
    margin:auto;
    padding:20px 30px;
}

.overall-rating{
    text-align:center;
    margin:30px 0;
}

.overall-rating h2{
    font-size:40px;
}

.overall-rating h3{
    margin-top:10px;
}

.review-platform{
    background:white;
    padding:25px;
    border-radius:12px;
    margin-bottom:25px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.review-btn{
    display:inline-block;
    background:#1877F2;
    color:white;
    padding:10px 20px;
    border-radius:6px;
    text-decoration:none;
    margin:10px;
}

.review-btn:hover{
    background:#145dbf;
}

.featured-reviews{
    margin-top:40px;
}

.featured-reviews h2{
    text-align:center;
    margin-bottom:30px;
}

.review-card{
    background:white;
    padding:25px;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.review-card p{
    line-height:1.8;
}

.review-btn{
    display:inline-block;
    background:#2d6a4f;
    color:white;
    padding:10px 20px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
}
.mobile-menu-icon{
    display:none;
}
/* =====================================
   BOOKING PAGE BUTTON GROUPS
===================================== */

.booking-actions,
.help-actions{
    text-align:center;
    margin-top:25px;
}

.booking-actions h3,
.help-actions h3{
    margin-bottom:15px;
    color:#333;
    font-size:22px;
}
.help-actions{
    text-align:center;
    margin-top:30px;
}

.help-actions .messenger-btn{
    margin:10px auto 0;
    display:block;
}

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

@media screen and (max-width:768px){

    .button-row{
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:center;
    }
    
    .whatsapp-btn,
    .email-btn,
    .messenger-btn{
        width:220px;
    }


    .gallery-grid,
    .menu-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    img{
        max-width:100%;
        height:auto;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    nav ul li a{
        font-size:14px;
    }

    .logo{
        width:60px;
    }

    .logo-container h1{
        font-size:24px;
    }

    header{
        flex-direction:column;
        align-items:center;
    }

    .logo-container{
        flex-direction:column;
        text-align:center;
    }
    .mobile-menu-icon{
    display:block;
    font-size:32px;
    color:white;
    cursor:pointer;
    }
    
    nav{
        display:none;
        width:100%;
    }
    
    nav.show-menu{
        display:block;
        position:absolute;
        top:85px;
        left:0;
        width:100%;
        background:#5b7b4a;
        z-index:9999;
    }
        
    nav ul{
        flex-direction:column;
        text-align:center;
        gap:15px;
    }
    nav{
        display:none;
    }
    header{
    position:relative;
    }
    .hero{
    height:700px;
    }
    .hero-content{
        top:55%;
    }
    .hero-content p{
        font-size:16px;
    }
    .hero h1{
    font-size:42px;
    }    
    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:10px;
        align-items:center;
    }
   
    
    .detail-image{
        width:100%;
    }
    
    .detail-image img{
        width:100%;
        height:auto;
        display:block;
    }
    
    .detail-image{
        width:100%;
    }
    
    .detail-image img{
        width:100%;
        max-width:500px;
        margin:auto;
        display:block;
        border-radius:15px;
    }
    
    
    
    .small-book-btn{
    display:inline-block;
    margin-top:20px;
    margin-bottom:30px;
    }
   
    .detail-text p{
        font-size:20px;
        line-height:1.8;
        text-align:left;
    }
   
    
    .detail-image img{
        width:100%;
        max-width:320px;
        display:block;
        margin:auto;
    }
    
    .detail-text{
        width:100%;
        max-width:100%;
        flex:none;
        padding:0 20px;
        text-align:center;
        box-sizing:border-box;
    }
    
    .detail-text h2{
        font-size:20px;
        line-height:1.3;
        word-break:normal;
    }

    
    .detail-row{
    display:flex;
    flex-direction:column;
    gap:20px;
    }
    .help-actions{
        margin-top:30px;
    }
    
    .help-actions .messenger-btn{
        width:220px;
    }
}
