/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #121212;
    color: #f1f1f1;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 60vh;
    background-image: url('contact.png'); /* full PNG background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6); /* dark overlay */
    z-index: 1;
}

.hero h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: #ffcc00;
}

/* Call-to-Action Section */
.contact-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

.contact-section p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Discord Button Image */
.discord-button img {
    width: 200px;       /* adjust size as needed */
    height: auto;
    cursor: pointer;
    transition: transform 0.3s;
}

.discord-button img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .contact-section h2 {
        font-size: 1.5rem;
    }
    .contact-section p {
        font-size: 1rem;
    }
    .discord-button img {
        width: 150px;
    }
}
