/* ============================= */
/* GOOGLE FONT */
/* ============================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ============================= */
/* RESET */
/* ============================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#0d0d0d;
    color:#fff;
}

/* ============================= */
/* NAVBAR */
/* ============================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(12px);
    z-index:1000;
}

.logo{
    text-decoration:none;
    color:#fff;
    font-size:30px;
    font-weight:700;
}

.logo span{
    color:#d4af37;
}

.navbar{
    display:flex;
    gap:35px;
}

.navbar a{
    text-decoration:none;
    color:#fff;
    font-size:17px;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover,
.navbar .active{
    color:#d4af37;
}

.menu-btn{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/* ============================= */
/* HERO */
/* ============================= */

.gallery-hero{
    position:relative;
    width:100%;
    height:70vh;
    background:linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.70)),
    url("../images/project1.jpg") center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content h1{
    font-size:60px;
    color:#fff;
}

.hero-content p{
    color:#ddd;
    font-size:18px;
    margin-top:20px;
    line-height:1.8;
}

/* ============================= */
/* GALLERY SECTION */
/* ============================= */

.gallery{
    padding:100px 8%;
    background:#111;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#d4af37;
    margin-bottom:15px;
}

.section-title p{
    color:#ccc;
    font-size:18px;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    background:#1b1b1b;
    border:1px solid rgba(212,175,55,.15);
    box-shadow:0 10px 30px rgba(0,0,0,.35);
    transition:.4s ease;
}

.gallery-item:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 18px 40px rgba(212,175,55,.25);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* ============================= */
/* CTA SECTION */
/* ============================= */

.cta{
    padding:90px 8%;
    text-align:center;
    background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url("../images/hero7.png") center/cover no-repeat;
}

.cta h2{
    font-size:42px;
    color:#fff;
    margin-bottom:20px;
}

.cta p{
    color:#ddd;
    max-width:700px;
    margin:auto;
    line-height:1.8;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    text-decoration:none;
    background:#d4af37;
    color:#000;
    padding:15px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.btn:hover{
    background:#fff;
    transform:translateY(-5px);
}

/* ============================= */
/* FOOTER */
/* ============================= */

footer{
    background:#000;
    padding:50px 8%;
    text-align:center;
}

.footer-content h2{
    color:#d4af37;
    margin-bottom:15px;
}

.footer-content p{
    color:#bbb;
    margin-bottom:20px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:18px;
    margin:25px 0;
}

.social-icons a{
    width:45px;
    height:45px;
    background:#1b1b1b;
    color:#d4af37;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    text-decoration:none;
    font-size:18px;
    transition:.4s;
}

.social-icons a:hover{
    background:#d4af37;
    color:#000;
    transform:translateY(-6px);
}

.copyright{
    border-top:1px solid #222;
    padding-top:20px;
    margin-top:20px;
    font-size:15px;
    color:#888;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:992px){

    .gallery-container{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-content h1{
        font-size:48px;
    }

}

@media(max-width:768px){

   /* ============================= */
/* MOBILE MENU */
/* ============================= */

@media(max-width:768px){

    .menu-btn{
        display:block;
        font-size:30px;
        color:#fff;
        cursor:pointer;
        z-index:1001;
    }

    .navbar{
        position:fixed;
        top:75px;
        right:-100%;
        width:280px;
        height:calc(100vh - 75px);
        background:#111;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        padding:30px;
        gap:20px;
        transition:.4s ease;
        z-index:999;
    }

    .navbar.active{
        right:0;
    }

    .navbar a{
        width:100%;
        font-size:18px;
        padding:12px 0;
        border-bottom:1px solid rgba(255,255,255,.1);
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:16px;
    }

    .gallery-container{
        grid-template-columns:1fr;
    }

}