/* =========================
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;
}

nav a.nav-login{
    background:#d4af37;
    color:#111;
    padding:8px 18px;
    border-radius:5px;
    font-weight:bold;
}

nav a.nav-login:hover{
    color:#111;
    background:#e6c555;
    transform:translateY(-1px);
}

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

.hero{
    height:80vh;
    background-image:var(--hero-image);
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-image-only::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.05),
        rgba(0,0,0,.12)
    );
    pointer-events:none;
}

.hero:not(.hero-image-only){
    background-image:linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.55)
    ), var(--hero-image);
}

.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%;
}

.product-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:25px;
}

.product-card{
    background:#222;
    border:1px solid #333;
    border-radius:10px;
    overflow:hidden;
    text-align:center;
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-5px);
    border-color:#d4af37;
}

.product-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.product-card h3{
    padding:15px;
}

.product-card p{
    color:#d4af37;
    font-size:1.2rem;
    margin-bottom:15px;
}

.shop-hero{

    height:40vh;

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

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

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

    text-align:center;
}

.shop-hero h1{
    font-size:4rem;
    color:#d4af37;
}

.shop-categories{

    background:#151515;

    border-top:2px solid #d4af37;
    border-bottom:2px solid #d4af37;

    padding:25px 0;
}

.shop-categories .container{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.shop-cat{

    background:#222;

    color:white;

    text-decoration:none;

    padding:15px 25px;

    border-radius:8px;

    transition:.3s;
}

.shop-cat:hover{

    background:#d4af37;

    color:#111;
}

.shop-overlay h1{
    font-size:4rem;
    color:#d4af37;

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

    margin-bottom:15px;
}

.shop-overlay p{
    font-size:1.25rem;

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

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

.hero-title{
    color:#d4af37;
    font-size:3.5rem;
    margin-bottom:12px;
    text-shadow:0 0 10px rgba(0,0,0,.8), 0 0 20px rgba(0,0,0,.8);
}

.hero-subtitle{
    font-size:1.25rem;
    max-width:700px;
    text-shadow:0 0 10px rgba(0,0,0,.8);
}

.page-heading{
    text-align:center;
    color:#d4af37;
    font-size:2.5rem;
    margin-bottom:16px;
}

.page-intro,.page-content p{
    text-align:center;
    margin-bottom:16px;
    color:#ccc;
}

.page-content h1{
    color:#d4af37;
    margin-bottom:20px;
}

.tier-grid .tier-card{
    padding:24px;
    text-align:center;
}

.tier-price{
    color:#d4af37;
    font-size:1.4rem;
    font-weight:bold;
    margin:12px 0;
}

.tier-card ul{
    list-style:none;
    text-align:left;
    padding:0 20px;
}

.tier-card li{
    padding:8px 0;
    border-bottom:1px solid #333;
}

.tier-card li::before{
    content:"⚒ ";
    color:#d4af37;
}

.topic-list{
    list-style:none;
    max-width:500px;
    margin:30px auto 0;
}

.topic-list li{
    background:#222;
    margin-bottom:10px;
    padding:14px 20px;
    border-radius:8px;
    border-left:3px solid #d4af37;
}

.links-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:15px;
    margin-top:30px;
}

.link-btn{
    text-align:center;
    margin:0;
}

.card{
    text-decoration:none;
    color:inherit;
    display:block;
}

@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;
    }
    
}

