/* Center the single logo in the nav for this page only */
nav ul.nav-links { justify-content: center; }

/* Make links red */
.body-content a { color: red; }
.body-content a:hover { color: darkred; }

/* Allow content to grow and add layout spacing */
.body-content {
    display: flex;
    flex-direction: column;  /* paragraph, then two-column section */
    align-items: center;
    gap: 20px;
    height: auto;
    min-height: calc(100vh - 120px);
    padding: 20px;
    padding-top: 100px; /* clear fixed header */
}

/* Two-column layout for Discord + Contact form */
.contact-discord {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    max-width: 1100px;
}

.contact-discord > .discord-widget,
.contact-discord > #contact-form-container {
    flex: 1 1 360px;   /* responsive columns with base width */
    max-width: 520px;
}

/* Discord widget panel */
.discord-widget iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* Contact form styling */
#contact-form-container {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

#contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

#contact-form label {
    font-weight: 600;
    margin-bottom: 6px;
}

#contact-form input,
#contact-form textarea {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.35);
    color: #fff;
    outline: none;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}

#contact-form .submit-btn {
    background-color: #e63946;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.25s ease;
}

#contact-form .submit-btn:hover {
    background-color: #b72b37;
}

/* Success message (hidden by default) */
.success-message {
    display: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 18px;
    border-radius: 10px;
    margin-top: 12px;
    text-align: center;
}

/* Footer social links */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 12px;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.footer-social a:hover {
    text-decoration: underline;
}

.footer-social .dot {
    color: rgba(255,255,255,0.6);
}

/* Mobile tweaks */
@media (max-width: 480px) {
    .discord-widget iframe { height: 420px; }
}