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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0d0d0d;
    color:white;
    line-height:1.6;
}

/* Navigation */

header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 70px;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(12px);

    z-index:999;

}

.logo h1{

    font-family:'Cinzel',serif;

    color:#D4AF37;

    font-size:34px;

}

.logo p{

    color:#bfa35d;

    font-size:13px;

}

nav a{

    color:white;

    text-decoration:none;

    margin-left:30px;

    transition:.35s;

    font-weight:500;

}

nav a:hover{

    color:#D4AF37;

}

/* HERO */

.hero{

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),
    radial-gradient(circle at top,#5B2C83 0%,#111 60%);

}

.overlay{

    max-width:900px;

    padding:30px;

}

.hero h2{

    font-family:'Cinzel',serif;

    font-size:72px;

    color:#D4AF37;

    margin-bottom:20px;

}

.hero p{

    font-size:22px;

    color:#ddd;

    margin-bottom:40px;

}

.btn{

    display:inline-block;

    padding:18px 42px;

    border-radius:40px;

    background:#D4AF37;

    color:black;

    text-decoration:none;

    font-weight:bold;

    transition:.35s;

}

.btn:hover{

    background:#5B2C83;

    color:white;

    transform:translateY(-4px);

    box-shadow:0 0 25px #5B2C83;

}

/* Collections */

.collections{

    padding:120px 60px;

    text-align:center;

}

.collections h2{

    font-family:'Cinzel',serif;

    color:#D4AF37;

    font-size:48px;

    margin-bottom:60px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.card{

    background:#181818;

    border:1px solid rgba(212,175,55,.25);

    border-radius:18px;

    padding:80px 20px;

    transition:.4s;

}

.card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 0 30px rgba(212,175,55,.25);

}

.card h3{

    color:#D4AF37;

}

/* Queen Section */

.queen{

    padding:120px 60px;

    text-align:center;

    background:#141414;

}

.queen h2{

    font-family:'Cinzel',serif;

    color:#D4AF37;

    font-size:48px;

    margin-bottom:30px;

}

.queen p{

    max-width:850px;

    margin:auto;

    font-size:22px;

    color:#ddd;

}

/* Footer */

footer{

    padding:40px;

    text-align:center;

    color:#999;

    background:black;

}

/* Mobile */

@media(max-width:900px){

header{

flex-direction:column;

padding:20px;

}

nav{

margin-top:20px;

}

nav a{

display:inline-block;

margin:10px;

}

.hero h2{

font-size:46px;

}

.hero p{

font-size:18px;

}

}
