*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#080808;
    color:#fff;
}

/* ================= HEADER ================= */

header{
    position:relative;
    height:60vh;
    overflow:hidden;
}

.cover{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.35);
}

.overlay{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    width:100%;
    padding:20px;
}

.logo{
    width:120px;
    height:120px;
    border-radius:50%;
    border:4px solid #d4af37;
    background:#000;
    object-fit:cover;
    box-shadow:0 0 30px rgba(212,175,55,.45);
}

.overlay h1{
    margin-top:20px;
    font-size:46px;
    color:#d4af37;
    letter-spacing:1px;
}

.overlay h2{
    margin-top:5px;
    font-size:22px;
    font-weight:400;
    color:#ffffff;
}

.overlay p{
    margin-top:15px;
    color:#c9c9c9;
    font-size:15px;
}

/* ================= MENU ================= */

.menu{
    padding:60px 20px;
}

.menu h3{
    text-align:center;
    font-size:34px;
    margin-bottom:40px;
    color:#d4af37;
    position:relative;
}

.menu h3::after{
    content:"";
    width:90px;
    height:3px;
    background:#d4af37;
    display:block;
    margin:12px auto;
}

/* ================= GRID ================= */

.cards{
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;
}

/* ================= CARD ================= */

.card{

    background:#121212;

    border-radius:20px;

    overflow:hidden;

    cursor:pointer;

    border:1px solid rgba(212,175,55,.25);

    transition:.35s;

    box-shadow:
    0 12px 25px rgba(0,0,0,.35);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 18px 40px rgba(212,175,55,.25);

    border-color:#d4af37;

}

.card img{

    width:100%;
    height:260px;

    object-fit:cover;

}

.card h4{

    padding:18px;

    text-align:center;

    color:#d4af37;

    font-size:20px;

    font-weight:600;

}

/* ================= IMAGE VIEWER ================= */

#viewer{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.95);

    z-index:9999;

}

#viewer img{

    width:90%;

    max-width:650px;

    max-height:92vh;

    border-radius:15px;

    border:4px solid #d4af37;

    box-shadow:0 0 35px rgba(212,175,55,.35);

}

#viewer span{

    position:absolute;

    top:25px;

    right:35px;

    color:white;

    font-size:55px;

    cursor:pointer;

}

/* ================= SCROLL BAR ================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#d4af37;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#111;

}

/* ================= MOBILE ================= */

@media(max-width:768px){

header{

height:45vh;

}

.logo{

width:90px;

height:90px;

}

.overlay h1{

font-size:34px;

}

.overlay h2{

font-size:18px;

}

.overlay p{

font-size:13px;

}

.menu{

padding:40px 15px;

}

.menu h3{

font-size:28px;

}

.card img{

height:220px;

}

}

/* NAVBAR */

.navbar{

position:sticky;

top:0;

z-index:999;

display:flex;

justify-content:space-between;

align-items:center;

padding:15px 8%;

background:#111;

border-bottom:1px solid rgba(212,175,55,.3);

}

.brand{

font-size:24px;

font-weight:700;

color:#d4af37;

}

.navbar ul{

display:flex;

gap:30px;

list-style:none;

}

.navbar a{

text-decoration:none;

color:white;

transition:.3s;

}

.navbar a:hover{

color:#d4af37;

}

/* CONTACT */

.contact{

padding:80px 20px;

text-align:center;

}

.contact h2{

color:#d4af37;

margin-bottom:30px;

font-size:34px;

}

.contact-box{

max-width:700px;

margin:auto;

padding:40px;

background:#121212;

border-radius:20px;

border:1px solid rgba(212,175,55,.25);

}

.contact-box p{

margin:15px;

font-size:18px;

}

/* FOOTER */

footer{

margin-top:70px;

padding:30px;

text-align:center;

background:#111;

color:#999;

}

footer p:first-child{

color:#d4af37;

margin-bottom:10px;

}

/* LOADER */

#loader{

position:fixed;

width:100%;

height:100%;

background:#000;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

}

.spinner{

width:70px;

height:70px;

border:6px solid #333;

border-top:6px solid #d4af37;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/* TOP BUTTON */

#topBtn{

position:fixed;

bottom:25px;

right:25px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#d4af37;

color:#000;

font-size:20px;

cursor:pointer;

display:none;

box-shadow:0 8px 20px rgba(0,0,0,.4);

transition:.3s;

}

#topBtn:hover{

transform:scale(1.1);

}

.category-nav{

display:flex;

overflow:auto;

gap:15px;

padding:15px;

background:#111;

position:sticky;

top:70px;

z-index:998;

}

.category-nav::-webkit-scrollbar{

display:none;

}

.category-nav a{

text-decoration:none;

white-space:nowrap;

padding:12px 22px;

border-radius:30px;

background:#1b1b1b;

color:#d4af37;

border:1px solid rgba(212,175,55,.3);

transition:.3s;

}

.category-nav a:hover{

background:#d4af37;

color:#000;

}

.card{

animation:fadeUp .8s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

#preview{

transition:.35s;

}