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

body {
    background: #050505;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}


/* HERO SECTION */

.hero {
    height: 100vh;
    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.9)
    ),
    url("derek.jpg");

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

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


.hero-content {
    max-width: 900px;
    padding: 30px;
}


.hero h1 {

    font-size: 4rem;
    color: #d4af37;

    text-shadow:
    0 0 10px #d4af37,
    0 0 30px rgba(212,175,55,.6);

}


.hero h2 {

    margin-top: 20px;
    font-weight: 300;
    font-size: 1.5rem;

}


.hero p {

    margin: 20px;
    color: #ddd;

}



/* GOLD BUTTONS */

.gold-button {

    display: inline-block;

    margin: 15px;

    padding: 14px 30px;

    color: #050505;

    background: #d4af37;

    text-decoration: none;

    font-weight: bold;

    border-radius: 30px;

    transition: .3s;

}


.gold-button:hover {

    background: #fff;

    box-shadow:
    0 0 20px #d4af37;

}



/* SECTIONS */

section {

    padding: 80px 10%;

    text-align: center;

}


section h2 {

    color: #d4af37;

    font-size: 2.5rem;

    margin-bottom: 30px;

}



/* CARDS */

.cards {

    display: flex;

    gap: 30px;

    justify-content: center;

    flex-wrap: wrap;

}


.card {

    background:
    linear-gradient(
        145deg,
        #151515,
        #080808
    );

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

    padding: 30px;

    border-radius: 15px;

    width: 300px;

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

}


.card h3 {

    color:#d4af37;

    margin-bottom:15px;

}



/* CONTACT */

#contact a {

    color:#d4af37;

    text-decoration:none;

}



/* FOOTER */

footer {

    padding:30px;

    background:#000;

    text-align:center;

    color:#888;

}



/* MOBILE */

@media(max-width:700px){

.hero h1 {

    font-size:2.5rem;

}

.hero h2 {

    font-size:1.1rem;

}

section {

    padding:50px 5%;

}

}
