/* =========================
RESET
========================= */

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

body{
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background:#111;
color:#eee;
line-height:1.6;
}

/* =========================
GLOBAL CONTAINERS
========================= */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.narrow{
max-width:800px;
margin:auto;
text-align:center;
}

/* =========================
HEADER
========================= */

header{
background:#151515;
border-bottom:2px solid #d4af37;
position:sticky;
top:0;
z-index:1000;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

/* Logo */

.logo{
display:flex;
align-items:center;
gap:15px;
text-decoration:none;
}

.logo img{
height:90px;
width:auto;
display:block;
}

.logo span{
color:#d4af37;
font-size:2rem;
font-weight:bold;
}

/* Navigation */

nav ul{
display:flex;
gap:20px;
list-style:none;
flex-wrap:wrap;
}

nav a{
color:white;
text-decoration:none;
transition:.3s;
font-weight:500;
}

nav a:hover{
    color:#d4af37;
}

/* =========================
HERO SECTION
========================= */

.hero{
    height:80vh;

    background:
        linear-gradient(
            rgba(0,0,0,.25),
            rgba(0,0,0,.45)
        ),
        url("images/banner.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    position:relative;

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

    text-align:center;
}

.overlay{
    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    padding:20px;
}
.hero-logo{
    width:180px;
    height:auto;

    margin-bottom:20px;

    filter:
        drop-shadow(0 0 10px rgba(0,0,0,.7))
        drop-shadow(0 0 20px rgba(0,0,0,.5));
}

/* =========================
QUICK LINKS
========================= */

.quick-links{
    background:#151515;
    border-top:2px solid #d4af37;
    border-bottom:2px solid #d4af37;

    padding:25px 0;
}

.quick-links .container{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* =========================
BUTTONS
========================= */

.btn{
    display:inline-block;
    padding:12px 24px;
    margin:8px;

    background:#d4af37;
    color:#111;

    text-decoration:none;
    font-weight:bold;

    border-radius:5px;

    transition:.3s;
}

.btn:hover{
transform:translateY(-2px);
}

.secondary{
background:#333;
color:white;
}

.center-btn{
display:block;
width:max-content;
margin:40px auto 0;
}

/* =========================
SECTIONS
========================= */

.section{
padding:80px 0;
}

.section h2{
text-align:center;
color:#d4af37;
margin-bottom:40px;
font-size:2.2rem;
}

.dark{
background:#1a1a1a;
}

/* =========================
GRID SYSTEM
========================= */

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

/* =========================
CARDS
========================= */

.card{
background:#222;
border-radius:10px;
overflow:hidden;
transition:.3s;
}

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

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

.card h3{
padding:20px;
text-align:center;
}

/* =========================
SHOP GRID
========================= */

.shop-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.shop-grid div{
background:#222;
padding:25px;
border-radius:8px;
text-align:center;
font-weight:bold;
}

/* =========================
NEWSLETTER
========================= */

.newsletter{
background:#d4af37;
color:#111;
padding:60px 0;
text-align:center;
}

.newsletter h2{
margin-bottom:20px;
}

.newsletter input{
padding:12px;
width:300px;
max-width:90%;
border:none;
border-radius:4px;
}

.newsletter button{
padding:12px 20px;
border:none;
border-radius:4px;
cursor:pointer;
font-weight:bold;
margin-left:10px;
}

/* =========================
FOOTER
========================= */

footer{
background:#0d0d0d;
padding:50px 0;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.footer-grid h3{
color:#d4af37;
margin-bottom:10px;
}

.footer-grid a{
display:block;
color:#ccc;
text-decoration:none;
margin-top:10px;
}

.footer-grid a:hover{
    color:#d4af37;
}

/* =========================
HERO BUTTONS
========================= */

.hero-buttons{
    position:absolute;
    bottom:40px;

    left:50%;
    transform:translateX(-50%);

    display:flex;
    gap:15px;

    flex-wrap:wrap;
    justify-content:center;

    width:100%;
}

/* =========================
MOBILE
========================= */

@media (max-width: 768px){

    header .container{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        justify-content:center;
    }

    .hero h1{
     color:#d4af37;

     font-size:4.5rem;

     margin-bottom:10px;

     text-shadow:
        0 0 10px rgba(0,0,0,.8),
        0 0 20px rgba(0,0,0,.8);
     }

    .hero p{
        font-size:1rem;
    }

    .logo img{
        height:70px;
    }

    .newsletter button{
        margin-top:10px;
        margin-left:0;
    }
    
}

