/* GLOBAL FONTS */
body{

    background:#000;
    color:white;
    font-family:'Poppins', sans-serif;
    
    }
/*home styles*/

.hero-logo{
    width:400px;
    }
    
    .hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    }

    /* COLOR THEME */
:root{

--primary-orange:#ff6a00;
--soft-orange:#ff8c3a;
--dark-bg:#000000;

}

/* NAVBAR */
.custom-navbar {
    background-color: var(--army-green);
    transition: 0.3s ease;
}

.custom-link {
    color: white !important;
    margin-left: 20px;
    transition: 0.3s;
}

.custom-link:hover {
    color: var(--soft-yellow) !important;
}

/* HERO SECTION */
.hero{
height:100vh;
position:relative;
overflow:visible;
}

/* VIDEO */
.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:0;
}

/* DARK OVERLAY */
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45) !important;
z-index:1;
}

/* HERO CONTENT */
.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
z-index:2;
color:white;
}

/* TITLE */
.hero-title{
font-family:'Playfair Display', serif;
font-size:80px;
font-weight:700;
letter-spacing:2px;
margin-bottom:10px;
}

/* TAGLINE */
.hero-tagline{
font-family:'Poppins', sans-serif;
font-size:20px;
letter-spacing:3px;
color:var(--soft-orange);;
}

.side-menu{
    z-index:2000;
}

.menu-backdrop{
    z-index:1500;
}

.menu-toggle{
    z-index:2500;
}

.side-menu,
.menu-backdrop{
    isolation:isolate;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.logo-text {
    font-size: 4rem;
    font-weight: bold;
}

    /* Nav Styles */
.nav-logo{
    width:120px;
    }
    .logo-container{
        position:fixed;
        top:20px;
        left:30px;
        z-index:1000;
        background:transparent;
        pointer-events:auto;
        }

.logo-container,
.menu-toggle{
    position:fixed;
}

/* HIDE NAVBAR COMPLETELY */
.nav-hidden{
    display:none !important;
}
    /* MENU BUTTON */
    .menu-toggle{
    position:fixed;
    top:30px;
    right:30px;
    color:white;
    cursor:pointer;
    z-index:999;
    display:flex;
    align-items:center;
    gap:8px;
    }
    
    .menu-text{
    font-size:20px;
    }
    
    .menu-icon{
    font-size:26px;
    }
    
    /* BACKDROP */
    .menu-backdrop{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(100,100,100,0.25);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:998;
    }
    
    .menu-backdrop.show{
    opacity:1;
    visibility:visible;
    }
    
    /* SIDE MENU */
    .side-menu{
        position:fixed;
        top:0;
        right:0;
        width:360px;   /* 🔥 CHANGE THIS ANYTIME */
        height:100%;
        background:rgba(50,50,50,0.75);
        backdrop-filter:blur(18px);
        -webkit-backdrop-filter:blur(18px);
        transform:translateX(100%);
        transition:0.4s ease;
        z-index:999;
        padding-top:90px;
        }
    
    .side-menu.open{
        transform:translateX(0);
        }
    
    /* LINKS */
    .side-links{
    list-style:none;
    padding:0 35px;
    }
    
    .side-links li{
    margin:22px 0;
    }
    
    .side-links a{
    color:rgb(255, 255, 255);
    font-size:22px;
    text-decoration:none;
    transition:0.3s ease;
    display:block;
    }
    
    /* HOVER EFFECT */
    .side-links a:hover{
    color:#d4e157;
    padding-left:12px;
    text-shadow:0 0 8px #9acd32;
    }
    
    /* CLOSE */
    .close-btn{
    position:absolute;
    top:18px;
    right:25px;
    font-size:28px;
    color:white;
    cursor:pointer;
    }
    
@media(max-width:768px){

.menu-toggle{
    top:50px;
    right:25px;
}

.menu-toggle .menu-text{
    font-size:22px !important;
}

.menu-toggle .menu-icon{
    font-size:22px !important;
}

.logo-container .nav-logo{
    width:100px !important;
}

}
@media(max-width:768px){

    .hero-title{
    font-size:48px;
    }
    
    .hero-tagline{
    font-size:16px;
    letter-spacing:2px;
    }
    
/* HERO LOGO SMALLER */
.hero-logo{
    width:200px;
}

/* HERO CONTENT SLIGHTLY HIGHER */
.hero-content{
    top:45%;
}

/* ORDER NOW BUTTON SMALLER */
.order-now-btn{
    bottom:20px;
    font-size:12px;
    padding:8px 16px;
}

}
    /* DROPDOWN */
.dropdown-toggle-custom{
    cursor:pointer;
    }
    
/* DROPDOWN */
.dropdown-toggle-custom{
    cursor:pointer;
    }
    
    .gallery-submenu{
    list-style:none;
    padding-left:15px;
    display:none;
    }
    
    .gallery-submenu li{
    margin:12px 0;
    }
    
    .gallery-submenu a{
    font-size:18px;
    color:#ccc;
    }
    
    /* SHOW DROPDOWN */
    .gallery-submenu.open{
    display:block;
    }
    
    .side-links a:hover{

        color:var(--primary-orange);
        padding-left:12px;
        text-shadow:0 0 8px rgba(255,106,0,0.6);
        
        }

    .side-links a{
        font-weight:600;
        }
        
        .menu-text{
        font-weight:600;
        }
        
        

        /* CENTER LOGO IN FOOTER */
        /* FOOTER */
.footer-section{
    background:#000;
    color:#ddd;
    padding:70px 0 30px;
    margin-top:80px;
    border-top:2px solid rgba(255,106,0,0.2);  /* ✨ Thin premium gold line */
    }

.footer-logo-wrapper{
    display:flex;
    justify-content:center;
    }

    .footer-section .row{
        align-items:flex-start;
        }
    
    @media(min-width:992px){
    .footer-logo-wrapper{
    justify-content:flex-start;
    }
    }
    

    .footer-logo-wrapper{

        padding-left:35px;
        
        }
        
        .footer-logo{
        
        max-width:160px;
        
        }

        .gallery-submenu{
            display:none;
            }
/* CONTACT LINKS */  
.footer-contact-link{
    color:#bbb;
    text-decoration:none;
    transition:0.3s;
    }
    
    .footer-contact-link:hover{
    color:var(--primary-orange);
    }

    /* WHATSAPP FLOAT */
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    z-index:999;
    transition:0.3s ease;
    text-decoration:none;
    }
    
    /* HOVER EFFECT */
    .whatsapp-float:hover{
    background:#1ebe5d;
    transform:scale(1.1);
    box-shadow:0 8px 20px rgba(0,0,0,0.4);
    }
    
    /* MOBILE ADJUST */
    @media(max-width:768px){
    .whatsapp-float{
    width:50px;
    height:50px;
    font-size:24px;
    bottom:20px;
    right:20px;
    }
    }
    
    /* DEVELOPER LINK */
    .developer-link{

        color:var(--primary-orange);
        text-decoration:none;
        
        }
        
        .developer-link:hover{
            color:#fff;
            text-shadow:0 0 8px var(--soft-orange);
            }

/* FOOTER */
.footer-section{
    background:#000;
    color:#ddd;
    padding:70px 0 30px;
    margin-top:80px;
    }
    
    .footer-logo{
    width:160px;
    }
    
    .footer-title{
        color:var(--primary-orange);
        font-size:22px;
        margin-bottom:20px;
        
        }
    .footer-text{
    font-size:14px;
    color:#bbb;
    }
    
    .footer-links,
    .footer-hours{
    list-style:none;
    padding:0;
    }
    
    .footer-links li,
    .footer-hours li{
    margin-bottom:10px;
    font-size:14px;
    color:#bbb;
    }
    
    .footer-links a{
    text-decoration:none;
    color:#bbb;
    transition:0.3s;
    }
    
    .footer-links a:hover{

        color:var(--primary-orange);
        padding-left:6px;
        
        }
    
    .social-icons a{
    color:#bbb;
    font-size:20px;
    margin-right:15px;
    transition:0.3s;
    }
    
    .social-icons a:hover{
    color:var(--primary-orange);
    transform:translateY(-4px);
    }
    
    .footer-divider{

        border-color:rgba(255,106,0,0.2);
        margin:40px 0;
        
        }
    
    .footer-bottom{
    font-size:14px;
    color:#888;
    }
    
    /* MOBILE */
    @media(max-width:768px){
    .footer-section{
    text-align:center;
    }
    .social-icons{
    justify-content:center;
    }
    }

    .reserve-wrapper{
padding:40px 35px;
}

.reserve-btn{

display:block;
text-align:center;
font-size:20px;
font-weight:600;
padding:16px 20px;

color:white;
text-decoration:none;

background:var(--primary-orange);

border-radius:40px 10px 40px 10px;

transition:0.35s;
box-shadow:0 10px 25px rgba(255,106,0,0.35);

}

.reserve-btn:hover{

background:var(--soft-orange);
transform:translateY(-3px);
box-shadow:0 15px 35px rgba(255,106,0,0.5);

}

/* ORDER NOW CTA MAIN CIRCLE */
.order-now-btn{
    position:absolute;
    bottom:-60px;
    left:50%;
    transform:translateX(-50%);
    width:150px;
    height:150px;
    background:linear-gradient(145deg,var(--primary-orange),var(--soft-orange));
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-family:'Cinzel Decorative', serif;
    font-size:18px;
    letter-spacing:1px;
    text-decoration:none;
    z-index:5;
    box-shadow:0 12px 30px rgba(0,0,0,0.35);
    transition:0.3s ease;
    }
    
    /* OUTER RING */
    .order-now-btn::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border:2px solid var(--soft-orange);
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    opacity:0.8;
    transition:0.4s ease;
    }
    
    /* HOVER EFFECT */
    .order-now-btn:hover{
    transform:translateX(-50%) scale(1.08);
    box-shadow:0 18px 40px rgba(0,0,0,0.45);
    }
    
    .order-now-btn:hover::before{
    width:200px;
    height:200px;
    opacity:1;
    }
    
    @keyframes ringPulse{
        0%{ transform:translate(-50%,-50%) scale(1); opacity:0.7;}
        50%{ transform:translate(-50%,-50%) scale(1.05); opacity:1;}
        100%{ transform:translate(-50%,-50%) scale(1); opacity:0.7;}
        }
        
        .order-now-btn::before{
        animation:ringPulse 3s infinite ease-in-out;
        }

    /* MOBILE */
    @media(max-width:768px){
    .order-now-btn{
    width:120px;
    height:120px;
    font-size:15px;
    bottom:-45px;
    }
    
    .order-now-btn::before{
    width:145px;
    height:145px;
    }
    }

    /* HOME BODY */

/* SPECIAL OFFER SECTION */
.special-offer-section{
background:black;
padding:100px 0;
}

/* IMAGE */
.offer-image-wrapper{
height:550px; /* YOU CAN CHANGE THIS */
overflow:hidden;
border-radius:10px;
}

.offer-image{
width:100%;
height:100%;
object-fit:cover;
}

/* CONTENT */
.offer-content{
padding-left:40px;
}

/* TIME TEXT */
.offer-time{
color:var(--soft-orange);
letter-spacing:2px;
font-size:14px;
text-transform:uppercase;
margin-bottom:10px;
}

/* TITLE */
.offer-title{
font-size:48px;
margin-bottom:20px;
white-space:nowrap;
}

.price{
font-size:35px;
color:#fff;
margin-right:8px;
}

/* DESCRIPTION */
.offer-description{
color:#bbb;
line-height:1.7;
font-size:16px;
margin-bottom:25px;
max-width:480px;
}

/* VIEW MENU LINK */
.view-menu-link{
font-size:18px;
font-weight:600;
text-decoration:none;
color:white;
position:relative;
display:inline-block;
}

/* GRADIENT UNDERLINE */
.view-menu-link::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:100%;
height:3px;
background:linear-gradient(90deg,var(--primary-orange),var(--soft-orange));
transition:0.3s;
}

/* HOVER EFFECT */
.view-menu-link:hover::after{
width:60%;
}

@media(max-width:768px){

.offer-content{
padding-left:0;
margin-top:30px;
text-align:center;
}

.offer-title{
font-size:34px;
}

.offer-image-wrapper{
height:350px;
}

}

/* MENU GRID SECTION */
.menu-grid-section{
position:relative;
background:#000;
padding:100px 0;
overflow:hidden;
}

/* TEXTURE LAYER */
.menu-grid-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:url("../images/charcoal-texture.jpg");
background-size:cover;
background-position:center;

opacity:0.08;

z-index:0;

/* IMPORTANT */
pointer-events:none;
}

/* KEEP CONTENT ABOVE TEXTURE */
.menu-grid-section .container,
.menu-grid{
position:relative;
z-index:1;
}

/* GRID */
.menu-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:0;
}

/* CARD */
.menu-card{
height:280px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:30px;
}

/* TEXT CARDS */
.text-card{
background:#0f0f0f;
border:1px solid rgba(255,106,0,0.08);
}

/* TITLE */
.text-card h3{
font-family:'Playfair Display', serif;
font-size:24px;
margin-bottom:10px;
}

/* DESCRIPTION */
.text-card p{
font-size:14px;
color:#bbb;
margin-bottom:10px;
max-width:260px;
}

/* PRICE */
.price{
color:var(--primary-orange);
font-weight:600;
font-size:16px;
}

/* IMAGE CARDS */
.image-card img{
width:100%;
height:100%;
object-fit:cover;
}

/* IMAGE HOVER EFFECT */
.image-card img{
transition:0.6s;
}

.image-card:hover img{
transform:scale(1.08);
}

/* BUTTON AREA */
.explore-drinks-wrapper{
text-align:center;
margin-top:60px;
}

/* BUTTON */
.explore-drinks-btn{

display:inline-block;
padding:16px 38px;
font-size:18px;
font-weight:600;

color:white;
text-decoration:none;

background:linear-gradient(135deg,var(--primary-orange),var(--soft-orange));

border-radius:40px;

transition:0.35s;
box-shadow:0 10px 25px rgba(255,106,0,0.35);

}

.explore-drinks-btn:hover{

transform:translateY(-4px);
box-shadow:0 15px 35px rgba(255,106,0,0.5);

}

/* SECTION HEADER */
.menu-section-header{
text-align:center;
margin-bottom:70px;
max-width:700px;
margin-left:auto;
margin-right:auto;
}

/* TITLE */
.menu-section-title{
font-size:48px;
margin-bottom:15px;
color:white;
position:relative;
display:inline-block;
}

/* ORANGE ACCENT UNDERLINE */
.menu-section-title::after{
content:"";
display:block;
width:60%;
height:3px;
margin:12px auto 0;
background:linear-gradient(90deg,var(--primary-orange),var(--soft-orange));
}

/* DESCRIPTION */
.menu-section-description{
font-size:16px;
color:#bbb;
line-height:1.7;
}

@media(max-width:768px){

.menu-grid{
grid-template-columns:repeat(2,1fr);
}

.menu-card{
height:220px;
}

.menu-section-title{
font-size:34px;
}

.menu-section-description{
font-size:14px;
}

}


/* ABOUT CAFE SECTION */
.about-cafe-section{
    background:black;
    padding:120px 0;
    position:relative;
    }
    
    /* PHOTO */
    .about-photo-box{
    width:55%;
    position:relative;
    z-index:1;
    }
    
    .about-img{
    width:100%;
    height:650px; /* CONTROL IMAGE HEIGHT HERE */
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 20px 50px rgba(0,0,0,0.6);
    }
    
    /* CONTENT CARD */
    .about-content-box{
    width:55%;
    background:#111;
    position:absolute;
    right:0;
    bottom:-60px;
    padding:50px;
    border-radius:10px;
    z-index:2;
    
    box-shadow:0 25px 60px rgba(0,0,0,0.7);
    border:1px solid rgba(255,106,0,0.15);
    }
    
    /* TITLE */
    .about-title{
    color:white;
    font-size:36px;
    margin-bottom:18px;
    }
    
    /* TEXT */
    .about-text{
    color:#bbb;
    font-size:16px;
    line-height:1.7;
    }
    
    /* BUTTON */
    .about-btn{
    display:inline-block;
    margin-top:25px;
    
    background:linear-gradient(135deg,var(--primary-orange),var(--soft-orange));
    color:white;
    
    padding:12px 30px;
    border-radius:30px;
    
    text-decoration:none;
    font-weight:600;
    
    transition:0.35s;
    box-shadow:0 10px 25px rgba(255,106,0,0.35);
    }
    
    .about-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(255,106,0,0.5);
    }

    .about-cafe-section{
        background:black;
        padding:120px 0;
        position:relative;
        
        /* LINES */
        border-top:1px solid rgba(255,106,0,0.35);
        border-bottom:1px solid rgba(255,106,0,0.35);
        }
    @media(max-width:768px){

.about-photo-box{
width:100%;
}

.about-content-box{
position:relative;
width:100%;
bottom:0;
margin-top:-40px;
padding:35px;
}

.about-img{
height:260px;
}

}

/* REVIEWS SECTION */


.reviews-section{
position:relative;
background:url("/static/images/g9.jpg") center/cover no-repeat;
padding:120px 0;
color:white;
}

/* DARK OVERLAY */

.reviews-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
z-index:1;
}

/* CONTENT ABOVE OVERLAY */

.reviews-section .container{
position:relative;
z-index:2;
}


/* TITLE */
.reviews-title{
font-size:42px;
margin-bottom:10px;
}

/* SUBTITLE */
.reviews-subtitle{
color:#bbb;
max-width:700px;
margin:0 auto 80px;
font-size:16px;
line-height:1.7;
}

/* REVIEWS ROW */
.reviews-row{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:60px;
}

/* REVIEW BLOCK */
.floating-review{
max-width:360px;
}

/* EXCITING SENTENCE */
.review-highlight{
font-size:26px;
color:var(--primary-orange);
margin-bottom:18px;
line-height:1.4;
}

/* COMMENT */
.review-text{
color:#bbb;
line-height:1.8;
font-size:15px;
margin-bottom:18px;
}

/* NAME */
.review-name{
color:var(--primary-orange);
font-weight:600;
font-size:16px;
}

@media(max-width:768px){

.reviews-row{
grid-template-columns:1fr;
gap:40px;
text-align:center;
}

}
/* ============================= */
/* HOME 3 CARDS SECTION */
/* ============================= */

/* SECTION BACKGROUND */
.difference-section{
    background:#ffffff;
    padding:90px 0;
    }
    
    /* TOP LEAF */
    .diff-leaf img{
    width:300px;
    margin-bottom:5px;
    }
    
    /* TITLE */
    .diff-title{
    color:#3e5c2f;
    font-size:38px;
    margin-bottom:30px;
    }
    
    /* CARD BASE */
    .diff-card{
    background:#e7d3b1;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
    position:relative;
    transition:0.3s ease;
    }
    
    /* OPTIONAL HOVER LIFT */
    .diff-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
    }
    
    /* IMAGE WRAP */
    .diff-img-wrap{
    position:relative;
    }
    
    .diff-img{
    width:100%;
    height:270px;
    object-fit:cover;
    }
    
    /* OVERLAP LEAF */
    .divider-leaf{
    position:absolute;
    bottom:-65px;
    left:50%;
    transform:translateX(-50%);
    z-index:2;
    }
    
    .divider-leaf img{
    width:200px;
    }
    
    /* TEXT */
    .diff-text{
    padding:55px 25px 35px;
    text-align:center;
    }
    
    .diff-text h4{
    color:#3e5c2f;
    font-size:28px;
    margin-bottom:10px;
    }
    
    .diff-text p{

    color:#5a4a3c;
    font-size:16px;
    line-height:1.5;
    }
    
    /* MOBILE */
    @media(max-width:768px){
    
    .diff-img{
    height:180px;
    }
    
    }

    
/* HOME GALLERY */



/* MOMENTS SECTION */
.moments-gallery-section{
background:black !important;
padding:60px 0;
}

/* TITLE AREA */
.moments-header{
margin-bottom:60px;
}

.moments-small{
color:var(--primary-orange);
font-size:16px;
letter-spacing:3px;
margin-bottom:8px;
}

.moments-title{
font-size:42px;
color:white;
}

/* IMAGE GRID */
.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:6px;
justify-items:center;
}

/* IMAGES */
.gallery-img{
width:90%;
height:360px;
object-fit:cover;
border-radius:8px;
transition:0.35s;
}

.gallery-img:hover{
transform:scale(1.05);
}

/* LIGHTBOX */

.lightbox{
display:none;
position:fixed;
z-index:1000;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
}

.lightbox-content{
max-width:80%;
max-height:80%;
border-radius:10px;
}

.close-lightbox{
position:absolute;
top:30px;
right:40px;
color:#fff;
font-size:40px;
cursor:pointer;
}
/* ONLY FOR HOME PAGE GALLERY */
.attach-footer{
    margin-bottom:-80px;   /* same value as footer margin-top */
    padding-bottom:80px;   /* prevents content cutting */
    background:linear-gradient(to right,#1f1f1f,#2e2e2e);
    position:relative;
    z-index:1;
    }

/* CAFE EXPERIENCE SECTION */
.cafe-experience-section{
background:black;
padding:100px 0;
}

.cafe-experience-section{
background:black;
padding:100px 0;

/* TOP DIVIDING LINE */
border-top:1px solid rgba(255,106,0,0.35);
}

/* IMAGE */
.cafe-img-box{
width:100%;
overflow:hidden;
border-radius:10px;
}

.cafe-img{
width:100%;
height:500px; /* control image height */
object-fit:cover;
border-radius:10px;
}

/* TITLE */
.cafe-title{
color:var(--primary-orange);
font-size:36px;
margin-bottom:18px;
}

/* TEXT */
.cafe-text{
color:#bbb;
font-size:17px;
line-height:1.7;
margin-bottom:15px;
}

@media(max-width:768px){

.gallery-grid{
grid-template-columns:repeat(2,1fr);
gap:10px;
}

.gallery-img{
height:180px;
}

.cafe-img{
height:260px;
}

}

/*ABOUT US PAGE*/
.about-hero{
height:60vh;
background:url('/static/images/g6.jpg') center/cover no-repeat;
position:relative;
}

.about-hero-title{
color:#ffffff;
font-size:56px;
letter-spacing:1px;

/* SOFT GREEN SHADOW */
text-shadow:
0 0 8px rgba(62,92,47,0.9),
0 0 20px rgba(62,92,47,0.5);

background:none;   /* ensures NO BOX */
padding:0;
margin:0;
}
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.85);
}

.about-gallery-img{
width:100%;
height:200px;
object-fit:cover;
border-radius:8px;
}

/* ABOUT SECTIONS */

.about-section{
background:black;
padding:100px 0;
}

/* IMAGE */

.about-img{
width:100%;
height:420px;
object-fit:cover;
border-radius:10px;
}

/* TITLE */

.about-title{
color:var(--primary-orange);
font-size:38px;
margin-bottom:18px;
}

/* TEXT */

.about-text{
color:#bbb;
font-size:17px;
line-height:1.7;
}

/* CARDS SECTION */

.about-cards-section{
background:black;
padding:100px 0;
}

/* CARDS TITLE */

.about-cards-title{
color:white;
font-size:40px;
}

/* CARD */

.about-card{
background:#0f0f0f;
padding:30px;
border-radius:10px;

border:1px solid var(--primary-orange);

transition:0.35s;
}

.about-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.6);
}

/* CARD IMAGE */

.about-card-img{
width:100%;
height:220px;
object-fit:cover;
border-radius:8px;
margin-bottom:15px;
}

/* CARD TEXT */

.about-card h4{
color:white;
margin-bottom:10px;
}

.about-card p{
color:#bbb;
font-size:15px;
}


@media(max-width:768px){

    /* ===== HERO 2 (ABOUT HERO) ===== */
    
    .about-hero{
        height:45vh;
    }
    
    .about-hero .hero-content{
        top:50%;
    }
    
    .about-hero-title{
        font-size:28px;
    }
    
/* ===== FOOTER 2 COLUMN LAYOUT ===== */

.footer-section .row{
    display:flex;
    flex-wrap:wrap;
}

/* make each footer column take 50% width */
.footer-section .col-lg-3{
    width:50%;
    flex:0 0 50%;
}
}

/* GALLERY SECTION */

.video-gallery-section{
position:relative;
height:160vh;
overflow:hidden;
background:black;
}

/* BACKGROUND VIDEO */

.gallery-bg-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
filter:blur(10px) brightness(0.4);
transform:scale(1.1);
}

/* OVERLAY */

.gallery-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.15);
}

/* CENTER CONTAINER */

.gallery-container{
position:relative;
z-index:2;
height:100%;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

text-align:center;
padding-top:160px;
}

/* HEADER */

.gallery-header{
margin-bottom:40px;
}

/* TITLE */

.gallery-title{
color:white;
font-size:46px;
margin-bottom:10px;
letter-spacing:2px;
}

/* SUBTITLE */

.gallery-subtitle{
color:#bbb;
max-width:600px;
margin:auto;
font-size:16px;
line-height:1.6;
}

/* WRAPPER */

.gallery-wrapper{
position:relative;
width:70%;
max-width:900px;
margin:auto;
}

/* SLIDER */

.gallery-slider{
position:relative;
width:100%;
display:flex;
justify-content:center;
align-items:center;
}

/* IMAGES */

.gallery-slide{
position:absolute;
width:70%;
height:720px;
object-fit:cover;

border-radius:10px;

opacity:0;
transition:0.5s;

box-shadow:0 25px 60px rgba(0,0,0,0.6);
}

.gallery-slide.active{
opacity:1;
position:relative;
}

/* ARROWS */
.gallery-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);

background:rgba(0,0,0,0.6);
border:none;
color:white;

font-size:40px;
padding:10px 18px;

cursor:pointer;
border-radius:50%;

transition:0.3s;
z-index:20;
}

.gallery-arrow.left{
left:-60px;
}

.gallery-arrow.right{
right:-60px;
}

.gallery-arrow:hover{
    background:var(--primary-orange);
    }
    
/* MOBILE RESPONSIVE */

@media (max-width:768px){

/* SECTION HEIGHT */

.video-gallery-section{
height:auto;
padding:80px 0;
}

/* TITLE */

.gallery-title{
font-size:28px;
letter-spacing:1px;
}

/* SUBTITLE */

.gallery-subtitle{
font-size:14px;
padding:0 20px;
}

/* WRAPPER */

.gallery-wrapper{
width:90%;
}

/* IMAGES */

.gallery-slide{
height:260px;
}

/* ARROWS */

.gallery-arrow{
font-size:28px;
padding:8px 14px;
}

/* MOVE ARROWS INSIDE IMAGE */

.gallery-arrow.left{
left:10px;
}

.gallery-arrow.right{
right:10px;
}

}

/* CONTACT HERO */

.contact-hero{
background:url('/static/images/contact.jpg') center/cover no-repeat;
}

/* CONTACT SECTION */

.contact-section{
background:#000;
padding:30px 0 0;
margin-bottom:0;
}

/* CARD */

.contact-card{
background:#ffffff;
padding:30px;
border-radius:14px;

box-shadow:0 20px 40px rgba(0,0,0,0.15);

display:flex;
flex-direction:column;
justify-content:space-between;

}

/* TITLE */

.contact-title{
color:#ab4e0c;
font-size:32px;
margin-bottom:25px;
}

/* TEXT */

.contact-card p{
font-size:18px;
color:#5a4a3c;
}

/* LINKS */

.contact-link{
color:#ab4e0c;
text-decoration:none;
font-weight:500;
}

.contact-link:hover{
color:#ff9a3d;
}

/* MAP */

.map-box{
height:480px;

border-radius:14px;
overflow:hidden;

box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* BUTTON */

.contact-map-btn{

display:block;

border:2px solid var(--primary-orange);

padding:12px;

text-align:center;

border-radius:8px;

text-decoration:none;

color:var(--primary-orange);

font-weight:600;

transition:0.3s;

}

.contact-map-btn:hover{

background:var(--primary-orange);
color:white;

}

/* REMOVE FOOTER GAP */

.contact-no-gap{
margin-bottom:-80px;
padding-bottom:80px;
position:relative;
z-index:1;
}

/* ===== SAME SIZE DIFFERENCE CARDS ===== */

.diff-card{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.diff-img-wrap{
    height:220px;
    overflow:hidden;
}

.diff-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.diff-text{
    flex-grow:1;
}


/* ===== GLOBAL MOBILE TEXT SIZE ===== */

@media(max-width:768px){

/* BODY TEXT */
body{
    font-size:14px;
}

/* ALL HEADINGS */
h1{font-size:26px;}
h2{font-size:22px;}
h3{font-size:20px;}
h4{font-size:18px;}
h5{font-size:16px;}
h6{font-size:15px;}

/* PARAGRAPHS */
p{
    font-size:14px;
}

/* LISTS */
li{
    font-size:14px;
}

/* LINKS */
a{
    font-size:14px;
}

/* CARD TEXT */
.diff-text h4{
    font-size:18px;
}

.diff-text p{
    font-size:14px;
}

}