body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #fff;
}

.hero {
    background: url("/images/background.png") no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 5px solid #A27831;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 50px;
    border: 3px solid #A27831;
    border-radius: 15px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: #A27831;
}

.hero p {
    font-size: 1.2em;
    color: #ddd;
}

.button-group {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-button {
    padding: 12px 24px;
    font-weight: bold;
    font-size: 1em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid white;
}

/* Apply Now Button - Custom Gold */
.hero-button.apply {
    background-color: #A27831;
    color: #000;
}

.hero-button.apply:hover {
    background-color: #d4af37;
    border-color: #A27831;
}

/* Discord Button - Discord Blue/Purple */
.hero-button.discord {
    background-color: #5865F2;
    color: #fff;
}

.hero-button.discord:hover {
    background-color: #4049d2;
}

/* TruckersMP Button - Dark Theme */
.hero-button.tmp {
    background-color: #1e1e1e;
    color: #A27831;
    border-color: #A27831;
}

.hero-button.tmp:hover {
    background-color: #333;
    color: #fff;
}

/* About Section */
.about {
    padding: 40px;
    text-align: center;
    border-top: 3px solid #A27831;
}

.about h2 {
    color: #A27831;
    font-size: 2em;
    margin-bottom: 0.5em;
}

.about p {
    color: #ccc;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

/* Stats Section */
.stats {
    padding: 40px;
    text-align: center;
    border-top: 3px solid #A27831;
    border-bottom: 3px solid #A27831;
    background-color: #111;
}

.stats h2 {
    color: #A27831;
    font-size: 2em;
    margin-bottom: 0.5em;
}

.stats ul {
    list-style: none;
    padding: 0;
    font-size: 1.2em;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

.stats li {
    margin: 10px 0;
}

/* Events Attending Section */
.events {
    padding: 40px;
    text-align: center;
    border-top: 3px solid #A27831;
    background-color: #111;
}

.events h2 {
    color: #A27831;
    margin-bottom: 20px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.event-card {
    background-color: #1a1a1a;
    border: 2px solid #A27831;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: scale(1.03);
}

.event-banner {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-bottom: 2px solid #A27831;
}

.event-info {
    padding: 15px;
    text-align: left;
}

.event-info h3 {
    color: #A27831;
    margin-top: 0;
}

.event-info p {
    color: #ccc;
    margin: 5px 0;
}

.event-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #A27831;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.event-button:hover {
    background-color: #d4af37;
}
