:root{
    --gold:#D4AF37;
    --gold-light:#F4D675;
    --black:#0B0B0B;
    --dark:#111111;
    --white:#ffffff;
    --gray:#f7f7f7;
}

body{
    margin:0;
    font-family:'Segoe UI',sans-serif;
    background:#fff;
    color:#222;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/* HEADER */

.ed-header{
    background:#000;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid rgba(212,175,55,.25);
}

.ed-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:85px;
}

.ed-header h2{
    color:var(--gold);
    margin:0;
    letter-spacing:2px;
}

.ed-header ul{
    display:flex;
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
}

.ed-header a{
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.ed-header a:hover{
    color:var(--gold);
}

/* HERO */

.hero{
    min-height:550px;
    display:flex;
    align-items:center;
    text-align:center;
    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.75)
    ),
    url('https://images.unsplash.com/photo-1610375461246-83df859d849d');
    background-size:cover;
    background-position:center;
    color:#fff;
}

.hero h1{
    font-size:72px;
    margin-bottom:20px;
    font-weight:800;
}

.hero p{
    max-width:700px;
    margin:auto;
    font-size:20px;
}

/* BUTTON */

.btn-gold{
    background:var(--gold);
    color:#000;
    font-weight:700;
    padding:15px 35px;
    border-radius:5px;
    display:inline-block;
    margin-top:25px;
}

.btn-gold:hover{
    background:var(--gold-light);
}

/* SECTIONS */

.section{
    padding:100px 0;
}

.section h2{
    font-size:42px;
    margin-bottom:20px;
}

/* PRODUCT GRID */

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.gold-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.gold-card:hover{
    transform:translateY(-10px);
}

.gold-card img{
    width:100%;
    display:block;
}

.gold-card h3{
    padding:15px;
}

.gold-card a{
    margin:15px;
    display:inline-block;
}

/* FOOTER */

.ed-footer{
    background:#000;
    color:#fff;
    text-align:center;
    padding:70px 0;
    border-top:1px solid rgba(212,175,55,.25);
}

.ed-footer h3{
    color:var(--gold);
}

@media(max-width:768px){

.hero h1{
font-size:64px;
line-height:1.1;
max-width:900px;
margin:auto auto 20px;
}

.ed-header .container{
flex-direction:column;
padding:15px 0;
}

.ed-header ul{
flex-wrap:wrap;
justify-content:center;
}

}

/* HEADER */

.header-flex{
display:flex;
justify-content:space-between;
align-items:center;
}

.main-nav ul{
margin:0;
padding:0;
list-style:none;
display:flex;
align-items:center;
gap:25px;
}

.main-nav li{
position:relative;
}

.main-nav a{
color:white;
font-size:15px;
font-weight:600;
display:block;
padding:12px 0;
}

.main-nav a:hover{
color:#D4AF37;
}

/* DROPDOWN */

.main-nav .sub-menu{

display:none;

position:absolute;

top:100%;
left:0;

background:#111;

min-width:250px;

padding:15px 0;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:999;
}

.main-nav .sub-menu li{

width:100%;
}

.main-nav .sub-menu a{

padding:12px 20px;
}

.main-nav li:hover > .sub-menu{

display:block;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
text-align:center;
}

.stats-grid h3{
font-size:48px;
color:#D4AF37;
}

.dark-section{
background:#000;
color:white;
text-align:center;
}