/* ============================================
   CONTACT.CSS - Contact Section Styles
   ============================================ */

.contact-section {
    height: 100vh;
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    margin: 0;
    border: 0;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 34, 34, 0.9);
    background: url('https://www.toowang.space/Bottom_BG.webp') center/cover no-repeat;
    z-index: 0;
}

.contact-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: -1.5rem;
    font-size: 3rem;
    color: #CCC;
    width: 100%;
    z-index: 999;
}

.contact-section .section-subtitle {
    text-align: center;
    font-weight: 100;
    letter-spacing: 2rem;
    font-size: 2.5rem;
    margin-top: -3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.3);
    width: 100%;
    z-index: 998;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-text {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    margin-top: 1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.6;
}

/* Contact buttons section */
.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin-top: 0rem;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: white;
    border: 2px solid transparent;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-button svg {
    width: 20px;
    height: 20px;
}

/* Contact button variants */
.facebook-btn:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.discord-btn:hover {
    background: #5865F2;
    border-color: #5865F2;
}

.email-btn:hover {
    background: #ea4335;
    border-color: #ea4335;
}

.qq-btn:hover {
    background: #12b7f5;
    border-color: #12b7f5;
}

/* Contact Section - Mobile */
@media (max-width: 768px) {
    .contact-section .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-section .section-subtitle {
        font-size: 1rem;
        margin-top: -4rem;
        margin-bottom: 1rem;
        letter-spacing: 1rem;
    }

    .contact-text {
        font-size: 0.6rem;
        margin-bottom: 0.5rem;
        padding: 0.1rem;
        line-height: 1.5;
    }
    
    .contact-text:nth-child(2) {
        font-size: 0.85rem;
    }
    
    .contact-buttons {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-button {
        width: 60px;
        height: 60px;
        justify-content: center;
        padding: 0.5rem;
    }

    .contact-button svg {
        width: 70%;
        height: 70%;
    }
    
    .contact-button span {
        display: none;
    }
}
