/* =====================
   ROOT VARIABLES
===================== */
:root{
    --bg-main:#8B0000;
    --bg-dark:#5c0000;
    --bg-footer:#3b0000;
    --gold:#FBE109;
    --white:#ffffff;
    --radius:18px;
    --max-width:1200px;
}

/* =====================
   GLOBAL RESET
===================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Verdana, Segoe, "Segoe UI", sans-serif;
    background: var(--bg-main);
    color: var(--white);
    font-size: 17px;
    line-height: 1.8;
}

/* =====================
   NAVBAR
===================== */
nav{
    background:#000;
    border-bottom:3px solid goldenrod;
}

#nav{
    max-width:var(--max-width);
    margin:auto;
    display:flex;
    gap:10px;
    padding:15px;
}

#nav a{
    flex:1;
    text-align:center;
    background:brown;
    color:#fff;
    text-decoration:none;
    padding:10px;
    font-weight:bold;
    border-radius:8px;
}

#nav a:hover{
    background:#700000;
}

/* =====================
   HERO VIDEO
===================== */
.hero{
    position:relative;
    width:100%;
    height:70vh;
    overflow:hidden;
}

.hero video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero-overlay h1{
    color:var(--gold);
    font-size:clamp(28px,5vw,46px);
    margin-bottom:10px;
}

.hero-overlay p{
    font-size:17px;
}

/* =====================
   CONTENT CONTAINER
===================== */
.content{
    max-width:var(--max-width);
    margin:45px auto;
    padding:0 20px;
}

/* =====================
   HEADINGS
===================== */
h1{font-size:32px;}
h2{font-size:30px;}
h3{font-size:28px;}
h4{font-size:26px;}
h5{font-size:24px;}
h6{font-size:20px;}

h1,h2,h3,h4,h5,h6{
    color:var(--gold);
    margin-bottom:18px;
    text-transform:capitalize;
    font-weight:900;
}

/* =====================
   TEXT
===================== */
p{
    margin-bottom:18px;
    text-align:justify;
    color:#f5f5f5;
}

strong{
    color:var(--gold);
}

a{
    color:var(--gold);
}

/* =====================
   IMAGE GRID (BIG IMAGES)
===================== */
.grid-img{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.col-3{
    width:100%;
}

.gallery_img{
    background:var(--bg-dark);
    border:2px solid goldenrod;
    padding:6px;
    border-radius:20px;
    text-align:center;
    transition:transform .3s ease, box-shadow .3s ease;
}

.gallery_img:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.galleryimg img{
    width:100%;
    height:auto;          /* IMPORTANT */
    max-height:420px;     /* desktop control */
    object-fit:cover;
    border-radius:18px;
}

/* Star rating image */
.gallery_img img:last-child{
    margin-top:10px;
    width:250px;
    height:50px;
    height:auto;
}
/* =====================
   ALWAYS VISIBLE CENTER WATERMARK
===================== */
.galleryimg{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.watermark{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%) rotate(-20deg);
   
    font-weight:800;
    letter-spacing:1.5px;
    color:rgba(255,255,255,0.35);
    background:rgba(0,0,0,0.25);
    padding:8px 20px;
    border-radius:25px;
    pointer-events:none;
    user-select:none;
    white-space:nowrap;
    opacity:1; /* force always visible */
}

/* Kill ANY hover behaviour */
.gallery_img:hover .watermark,
.galleryimg:hover .watermark{
    opacity:1;
    transform:translate(-50%, -50%) rotate(-20deg);
}


/* =====================
   FOOTER
===================== */
footer{
    background:#000;
    margin-top:50px;
    padding-top:40px;
}

#footer{
    max-width:var(--max-width);
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

#footer h3{
    color:gold;
    margin-bottom:10px;
}

.links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.links a{
    color:#ddd;
    text-decoration:none;
    font-size:14px;
}

.links a:hover{
    color:var(--gold);
}

/* Footer copyright bar */
footer p {
    background: var(--bg-footer);
    padding: 10px 15px;
    margin-top: 8px;
    margin-bottom: 44px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-top: 1px solid goldenrod;
}

footer p a{
    color:var(--gold);
    text-decoration:none;
    font-weight:bold;
}

footer p a:hover{
    text-decoration:underline;
}

/* =====================
   STICKY CALL BAR
===================== */
.nowcalling{
    position:fixed;
    bottom:0;
    width:100%;
    height:50px;
    display:flex;
    z-index:9999;
}

.lcol, .rcol{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.lcol{
    background:darkorange;
}

.rcol{
    background:green;
}

.lcol a, .rcol a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
}


/* =====================
   RESPONSIVE
===================== */
@media(max-width:1024px){
    .grid-img{
        grid-template-columns:repeat(2,1fr);
    }

    .galleryimg img{
        height:320px;
    }
}

@media(max-width:768px){
    #nav{
        flex-direction:column;
    }

    .hero{
        height:50vh;
    }

    .grid-img{
        grid-template-columns:1fr;
    }


    .galleryimg img{
        width:100%;
        height:auto;      /* FULL image */
        max-height:none;  /* remove limit */
    }

    #footer{
        grid-template-columns:1fr;
    }

    body{
        font-size:16px;
    }
    
}
