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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Plus Jakarta Sans',sans-serif;
    background:#111827;
    color:#fff;
    line-height:1.6;
}

/* Header */

.header{
    position:sticky;
    top:0;
    width:100%;
    background:#18181b;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.4);
}

.nav-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#fff;
    font-size:24px;
    font-weight:800;
}

.logo span{
    color:#ef4444;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-link{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-link:hover{
    color:#ef4444;
}

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
}

.bar{
    width:26px;
    height:3px;
    background:#fff;
    border-radius:20px;
}

/* Mobile Drawer */

.mobile-drawer{
    display:none;
}

/* Gallery */

.container{
    max-width:1200px;
    margin:auto;
    padding:30px 20px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.card{
    background:#1f2937;
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.3);
}

.card:hover{
    transform:translateY(-8px);
}

.card-media{
    position:relative;
}

.card-media img{
    width:100%;
    height:360px;
    object-fit:cover;
    display:block;
}

.btn-on-image{
    position:absolute;
    left:50%;
    bottom:20px;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:8px;
    background:#ef4444;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
}

.btn-on-image:hover{
    background:#dc2626;
}

.card-body{
    padding:20px;
}

.card-title{
    font-size:18px;
    font-weight:700;
}

/* Stay Tuned */

.stay-tuned-banner{
    margin-top:50px;
    background:#ef4444;
    color:#fff;
    text-align:center;
    padding:18px;
    border-radius:14px;
    font-size:20px;
    font-weight:700;
}

/* Footer */

.footer{
    background:#18181b;
    margin-top:60px;
    text-align:center;
    padding:40px 20px;
}

.footer-copy{
    margin-top:15px;
    color:#9ca3af;
}

/* Back To Top */

.back-to-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#ef4444;
    color:#fff;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,.4);
    transition:.3s;
}

.back-to-top:hover{
    background:#dc2626;
}

/* Animation */

.scroll-fade-in{
    animation:fadeUp .8s ease both;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Mobile */

@media(max-width:768px){

.nav-links{
    display:none;
}

.hamburger{
    display:flex;
}

.mobile-drawer{
    display:block;
    background:#18181b;
}

.mobile-nav-inner{
    display:flex;
    flex-direction:column;
}

.mobile-nav-link{
    padding:15px;
    text-decoration:none;
    color:#fff;
    border-top:1px solid rgba(255,255,255,.1);
}

.mobile-nav-link:hover{
    background:#ef4444;
}

.card-media img{
    height:300px;
}

.logo{
    font-size:20px;
}

.stay-tuned-banner{
    font-size:18px;
}
}

