/* -------------------------------- */
/* FONT EINBINDUNG                  */
/* -------------------------------- */
@font-face {
    font-family: "OldBikerBase";
    src: url("fonts/OldBiker-OldBikerbase.ttf") format("truetype");
}

/* -------------------------------- */
/* GLOBAL                           */
/* -------------------------------- */
body {
    margin: 0;
    background: #0a0a0a;
    color: #e2e2e2;
    font-family: "OldBikerBase", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* -------------------------------- */
/* NAVIGATION                       */
/* -------------------------------- */
nav {
    background: #111;
    border-bottom: 2px solid #c9a34e;
    padding: 20px;
    text-align: center;
}

nav a {
    color: #c9a34e;
    margin: 0 20px;
    text-decoration: none;
    font-size: 28px;
    letter-spacing: 4px;
    font-family: "OldBikerBase", sans-serif;

    text-shadow:
        -2px -2px 0 #000,
         2px -2px 0 #000,
        -2px  2px 0 #000,
         2px  2px 0 #000;
}

/* -------------------------------- */
/* HERO / HEADER                    */
/* -------------------------------- */
.hero {
    padding: 60px 20px;
    text-align: center;
    border-bottom: 3px solid #333;
}

.hero h1 {
    font-family: "OldBikerBase", sans-serif;
    font-size: 120px;
    font-weight: 900;
    color: #c9a34e;
    letter-spacing: 10px;

    text-shadow:
        -4px -4px 0 #000,
         4px -4px 0 #000,
        -4px  4px 0 #000,
         4px  4px 0 #000,
         0   0 15px #000;
}

.hero p {
    font-family: "OldBikerBase", sans-serif;
    font-size: 32px;
    color: #bbb;
    letter-spacing: 6px;

    text-shadow:
        -2px -2px 0 #000,
         2px -2px 0 #000,
        -2px  2px 0 #000,
         2px  2px 0 #000;
}

/* -------------------------------- */
/* MEMBER SECTION                   */
/* -------------------------------- */
.member-section {
    background: #0a0a0a;
    padding: 40px;
    color: #e2e2e2;
    font-family: "OldBikerBase", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-title {
    text-align: center;
    font-size: 42px;
    color: #c9a34e;
    margin-bottom: 40px;
    font-family: "OldBikerBase", sans-serif;
}

/* -------------------------------- */
/* MEMBER GRID                      */
/* -------------------------------- */
.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.member-card {
    background: #111;
    border: 2px solid #333;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px #000;
    font-family: "OldBikerBase", sans-serif;
}

/* -------------------------------- */
/* MEMBER IMAGE                     */
/* -------------------------------- */
.member-image {
    width: 100%;
    height: 200px;
    background: #222;
    border: 2px dashed #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    font-family: "OldBikerBase", sans-serif;
}

/* -------------------------------- */
/* MEMBER TEXT                      */
/* -------------------------------- */
.member-name {
    font-size: 26px;
    margin: 15px 0 5px;
    color: #c9a34e;
    font-family: "OldBikerBase", sans-serif;
}

.member-bike {
    font-size: 16px;
    margin-bottom: 10px;
    color: #bbb;
    font-family: "OldBikerBase", sans-serif;
}

.member-text {
    font-size: 14px;
    color: #999;
    font-family: "OldBikerBase", sans-serif;
}
