* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: white;
}

@font-face {
    font-family: 'Eurostile';
    src: url('../fonts/eurostile.TTF');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Eurostile';
    src: url('../fonts/EuroStyle Normal.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Eurostile';
    src: url('../fonts/Eurostile MN Extended Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Eurostile';
    src: url('../fonts/EurostileExtendedBlack.ttf');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Eurostile';
    src: url('../fonts/Eurostile-LT-Std-Oblique_16312.ttf');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Eurostile';
    src: url('../fonts/Eurostile-LT-Std-Demi-Oblique_16309.ttf');
    font-weight: 600;
    font-style: italic;
}

.home-bg {
    background: linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)),
    url('../images/home-bg.png') center/cover no-repeat fixed;
}

.community-bg {
    background: linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)),
    url('../images/community-bg.png') center/cover no-repeat fixed;
}

.builds-bg {
    background: linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)),
    url('../images/builds-bg.jpg') center/cover no-repeat fixed;
}

.events-bg {
    background: linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)),
    url('../images/events-bg.jpg') center/cover no-repeat fixed;
}

.grid-bg {
    background: linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)),
    url('../images/grid-bg.jpg') center/cover no-repeat fixed;
}

.signup-bg {
    background: linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)),
    url('../images/signup-bg.webp') center/cover no-repeat fixed;
}

header {
    background: black;
    border-bottom: 2px solid gold;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: gold;
}

nav a {
    color: gold;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

nav a:hover {
    color: white;
}

.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
    url('../images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.hero h2 {
    font-size: 4rem;
    color: gold;
}

.section {
    padding: 70px;
}

.flex-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #111;
    border: 1px solid gold;
    padding: 20px;
    width: 300px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px gold;
}

.card img {
    width: 100%;
    margin-bottom: 10px;
}

.build-form {
    max-width: 600px;
    background: #111;
    border: 1px solid gold;
    padding: 30px;
}

.build-form input,
.build-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: black;
    border: 1px solid gold;
    color: white;
}

.build-form button {
    width: 100%;
    background: gold;
    color: black;
    border: none;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
}

.build-form button:hover {
    background: white;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-item {
    background: #111;
    border: 1px solid gold;
    padding: 40px;
    text-align: center;
    font-weight: bold;
}
