/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
    background:#ffffff;
}

/* BASE */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom{
    opacity:0;
    transition:all 0.8s ease;
}

/* DEFAULT (BOTTOM TO TOP) */
.reveal{
    transform:translateY(60px);
}

/* LEFT */
.reveal-left{
    transform:translateX(-80px);
}

/* RIGHT */
.reveal-right{
    transform:translateX(80px);
}

/* ZOOM */
.reveal-zoom{
    transform:scale(0.8);
}

/* ACTIVE (WHEN VISIBLE) */
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active{
    opacity:1;
    transform:translate(0,0) scale(1);
}

/* ===== COLORS ===== */
:root{
    --gold1:#c9a227;
    --gold2:#f5d76e;
    --gold3:#fff3b0;
    --red1:#f31818;
    --red2:#fe3a3af3;
    --red3:#f15454df;

    --dark:#1a1a1a; /* dark text color */
    --secondary:#555555; /* secondary text */
    --section-bg:#fffdf0; /* light cream background */
}




/* ===== GALLERY HERO ===== */
.gallery-hero{
    height:70vh;
    position:relative;
    background:url("/images/Bg3.jpg") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        #050505 0%,
        rgba(0,0,0,0.95) 20%,
        rgba(0,0,0,0.7) 50%,
        transparent 100%
    );
}
/* CONTENT */
.gallery-hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:700px;
    padding:20px;
}
/* HEADING */
.gallery-hero-content h1{
    font-size:56px;
    margin-bottom:15px;
    font-weight:700;
}

/* GOLD TEXT */
.gallery-hero-content h1 span{
       background:linear-gradient(var(--red1),var(--red3));

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */
.gallery-hero-content p{
    font-size:18px;
    color:#ddd;
    line-height:1.6;
}

@media(max-width:600px){

    .gallery-hero{
        height: 50vh;         /* ✅ reduce height */
        padding: 0 15px;
    }

    .gallery-hero-content{
        max-width: 100%;
        padding: 10px;
    }

    /* HEADING */
    .gallery-hero-content h1{
        font-size: 28px;      /* ✅ mobile size */
        line-height: 1.3;
        margin-bottom: 10px;
    }

    /* TEXT */
    .gallery-hero-content p{
        font-size: 14px;
        line-height: 1.6;
        color: #ccc;
    }

    /* OVERLAY (slightly stronger for readability) */
    .hero-overlay{
        background:
        linear-gradient(
            to top,
            #050505 0%,
            rgba(0,0,0,0.98) 30%,
            rgba(0,0,0,0.75) 60%,
            transparent 100%
        );
    }

}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding:80px 6%;
}

.gallery-header {
    text-align:center;
    margin-bottom:50px;
}

.gallery-header h2 {
    font-size:48px;
    font-weight:700;
}

.gallery-header span {
    background:linear-gradient(90deg, var(--red1), var(--red2));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* FILTER BUTTONS */
.filter-btns {
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.filter-btns button {
    padding:10px 20px;
    border:1px solid var(--red1);
    background:transparent;
    color:var(--red2);
    cursor:pointer;
    transition:0.3s;
    border-radius:5px;
    font-weight:600;
}

.filter-btns button.active,
.filter-btns button:hover {
    background:var(--red2);
    color:#ffffff;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

/* ===== GALLERY ITEM ===== */
.gallery-item {
    position:relative;
    overflow:hidden;
    cursor:pointer;
    border-radius:8px;
    transition:0.3s;
    height:250px; /* uniform height */
}

.gallery-item img,
.gallery-item video {
    width:100%;
    height:100%;
    object-fit:cover; /* fit into uniform card */
    display:block;
    border-radius:8px;
    transition: transform 0.4s ease;
}

/* HOVER IMAGE SCALE */
.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

/* ===== OVERLAY EFFECT ===== */
.gallery-item .overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to top, rgba(246, 41, 5, 0.85) 0%, rgba(201,162,39,0.1) 100%);
    display:flex;
    align-items:flex-end;
    justify-content:center;
    opacity:0;
    transform:translateY(100%);
    transition:0.4s ease;
}

.gallery-item:hover .overlay{
    opacity:1;
    transform:translateY(0);
}

/* IMAGE NAME */
.overlay .img-name{
    color:#ffffff;
    font-weight:700;
    font-size:18px;
    padding:15px;
    text-align:center;
}

/* VIDEO LABEL */
.video-label {
    position:absolute;
    top:10px;
    right:10px;
    background:var(--gold1);
    color:#000;
    padding:5px 10px;
    font-weight:600;
    border-radius:5px;
    font-size:12px;
}

/* LIGHTBOX */
.lightbox {
    position:fixed;
    top:50px;
    margin-bottom:100px;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
    display:flex;
    align-items:center;
    justify-content:center;
    visibility:hidden;
    opacity:0;
    transition:0.3s;
    z-index:999;
}

.lightbox.active {
    visibility:visible;
    opacity:1;
}

.lightbox img,
.lightbox video {
    max-width:90%;
    max-height:80%;
    border-radius:8px;
}


.close {
    position: absolute;
    top: 50px;
    right: 30px;
    font-size: 28px;
    color: #fff;
    background: var(--gold1) ;/* red-ish background */
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1100;
}

.close:hover {
    background: #ff4d4d;
    transform: scale(1.1);
}

/* ===== CTA SECTION ===== */
.cta-section{
    position:relative;
    padding:120px 8%;
    background:linear-gradient(135deg, rgba(201,162,39,0.85), rgba(245,215,110,0.85)), url('images/cta-bg.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:12px;
    margin:80px 0;
    overflow:hidden;
}

.cta-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

.cta-section .cta-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
}

.cta-section h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.cta-section h2 span{
    background:linear-gradient(90deg, var(--gold1), var(--gold2));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.cta-section p{
    font-size:18px;
    margin-bottom:30px;
    color:#f0f0f0;
    line-height:1.6;
}

/* CTA BUTTON OVERRIDE (matches gallery style) */
.cta-section .cta-btn{
    font-size:18px;
    padding:14px 32px;
    border-radius:40px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(90deg,var(--gold1), var(--gold2));
    border:none;
    transition:0.4s;
    box-shadow:0 6px 18px rgba(201,162,39,0.4);
}

.cta-section .cta-btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 8px 25px rgba(245,215,110,0.6);
}

@media(max-width:600px){

/* SECTION */
.gallery-section{
    padding: 50px 15px;
}

/* HEADER */
.gallery-header{
    margin-bottom: 30px;
}

.gallery-header h2{
    font-size: 26px;
}

/* FILTER BUTTONS */
.filter-btns{
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btns button{
    padding: 8px 14px;
    font-size: 13px;
}

/* ===== GRID (MOBILE STYLE) ===== */
.gallery-grid{
    grid-template-columns: repeat(2, 1fr); /* ✅ 2 column mobile */
    gap: 10px;
}

/* ITEMS */
.gallery-item{
    height: 160px;   /* ✅ smaller cards */
    border-radius: 6px;
}

/* IMAGE NAME */
.overlay .img-name{
    font-size: 14px;
    padding: 10px;
}

/* VIDEO LABEL */
.video-label{
    font-size: 10px;
    padding: 3px 6px;
}

/* LIGHTBOX */
.lightbox img,
.lightbox video{
    max-width: 95%;
    max-height: 70%;
}

/* CLOSE BUTTON */
.close{
    top: 60px;
    right: 15px;
    font-size: 20px;
    padding: 6px 10px;
}

/* ===== CTA SECTION ===== */
.cta-section{
    padding: 60px 20px;
    margin: 50px 0;
    border-radius: 10px;
}

.cta-section h2{
    font-size: 24px;
}

.cta-section p{
    font-size: 14px;
}

.cta-section .cta-btn{
    font-size: 14px;
    padding: 10px 20px;
}

}

/* ===== Featured Projects Section ===== */
.featured-projects {
    padding: 80px 6%;
    background: #f8f8f8;
    text-align: center;
}

.featured-projects .section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.featured-projects .section-header h2 span {
    color: #d4af37; /* golden accent for premium look */
}

.featured-projects .section-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.project-card img {
    width: 100%;
    display: block;
}

.project-info {
    padding: 20px;
    text-align: left;
}

.project-info h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #222;
}

.project-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

@media(max-width:600px){

/* SECTION */
.featured-projects{
    padding: 50px 15px;
}

/* HEADER */
.featured-projects .section-header h2{
    font-size: 24px;
    line-height: 1.3;
}

.featured-projects .section-header p{
    font-size: 14px;
    margin-bottom: 30px;
}

/* GRID */
.projects-grid{
    grid-template-columns: repeat(1, 1fr); /* ✅ single column clean */
    gap: 20px;
}

/* CARD */
.project-card{
    border-radius: 10px;
}

/* IMAGE */
.project-card img{
    height: 200px;          /* ✅ uniform look */
    object-fit: cover;
}

/* INFO */
.project-info{
    padding: 15px;
}

.project-info h3{
    font-size: 18px;
}

.project-info p{
    font-size: 13px;
    line-height: 1.6;
}

}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
