/* Contact page styles */
.contact-section {
    padding: 40px;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #333;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.contact-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 80%;
    max-width: 600px;
}

.contact-item h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #333;
}

.contact-button {
    display: inline-block;
    font-size: 1.2em;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    margin: 5px;
}

.discord-button {
    background: #7289da; /* Discord color */
}

.discord-button:hover {
    background: #5b6eae;
    transform: scale(1.05);
}

.facebook-button {
    background: #1877f2; /* Facebook color */
}

.facebook-button:hover {
    background: #145dbf;
    transform: scale(1.05);
}

.youtube-button {
    background: #ff0000; /* YouTube color */
}

.youtube-button:hover {
    background: #cc0000;
    transform: scale(1.05);
}

.contact-button i {
    margin-right: 10px;
    font-size: 1.5em;
}
