body{
    margin:0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background:#0b0b0b;
    color:#fff;
}

header{
    background:#000;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid gold;
}

header img{
    height:120px; /* BIGGER LOGO */
}

nav a{
    color:gold;
    margin-left:30px;
    text-decoration:none;
    font-weight:600;
    letter-spacing:1px;
}

nav a:hover{
    color:white;
}

.hero{
    background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url('https://images.unsplash.com/photo-1610375461246-83df859d849d?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
    padding:150px 8%;
    text-align:center;
}

.hero h1{
    font-size:52px;
    color:gold;
}

.hero p{
    font-size:22px;
    margin-top:20px;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:15px 40px;
    background:gold;
    color:#000;
    text-decoration:none;
    font-weight:bold;
}

.section{
    padding:90px 8%;
}

.section h2{
    text-align:center;
    color:gold;
    margin-bottom:50px;
    font-size:38px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
}

.card{
    background:#141414;
    padding:35px;
    border:1px solid #222;
}

.card:hover{
    border:1px solid gold;
}

.image-section img{
    width:100%;
    height:350px;
    object-fit:cover;
}

footer{
    background:#000;
    text-align:center;
    padding:25px;
    color:#aaa;
    border-top:1px solid gold;
}