/*==================================================
    Contact Page Styling
==================================================*/

/* Main Contact Section */
.contact-section {
    padding: 6rem 0 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Contact Info Box */
.contact-info {
    background: rgba(17, 17, 17, 0.7);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    width: 20px;
    text-align: center;
    margin-top: 0.2rem;
}

.info-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.info-item p, .info-item a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-color);
}

.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links h3 {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon i {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    z-index: 2;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Platform-specific hover backgrounds */
.social-icon.facebook:hover { background-color: #1877F2; }
.social-icon.instagram:hover { background-color: #E4405F; }
.social-icon.discord:hover { background-color: #5865F2; }
.social-icon.kick:hover { background-color: #53FC18; }
.social-icon.youtube:hover { background-color: #FF0000; }
.social-icon.tiktok:hover { background-color: #000000; }

/* The icon itself should turn white on hover */
.social-icon:hover i {
    color: var(--text-primary);
}

/* Kick icon implementation with a pseudo-element for proper coloring */
.social-icon.kick::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-secondary); /* Default color */
    -webkit-mask: url('https://assets.streamlinehq.com/image/private/w_300,h_300,ar_1/f_auto/v1/icons/videos/kick-logo-99g5rc4igpw0ygzleoxf.png/kick-logo-dli3o7f9jkm1yolfj0sm6g.png?_a=DATAdtWOZAA0') no-repeat center;
    mask: url('https://assets.streamlinehq.com/image/private/w_300,h_300,ar_1/f_auto/v1/icons/videos/kick-logo-99g5rc4igpw0ygzleoxf.png/kick-logo-dli3o7f9jkm1yolfj0sm6g.png?_a=DATAdtWOZAA0') no-repeat center;
    -webkit-mask-size: 55%;
    mask-size: 55%;
    transition: background-color 0.3s ease;
}

.social-icon.kick:hover::before {
    background-color: var(--text-primary); /* Hover color */
}

/* Hide the original img tag if it exists */
.social-icon img {
   display: none;
}

/* Contact Form */
.contact-form-container {
    background: rgba(17, 17, 17, 0.7);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(41, 121, 255, 0.2);
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(98, 0, 234, 0.8), rgba(41, 121, 255, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, rgba(98, 0, 234, 1), rgba(41, 121, 255, 1));
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(41, 121, 255, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 255, 255, 0.1);
}

.submit-btn i {
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-text {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.map-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 1rem;
}

.map-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.map-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        margin-top: 60px;
        padding: 3rem 0;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-section,
    .map-section {
        padding: 3rem 0;
    }

    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 350px;
        border-radius: 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .map-text {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .map-text h2 {
        font-size: 1.8rem;
    }

    .map-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-item i {
        margin: 0 0 0.5rem 0;
    }

    .social-icons {
        gap: 1rem;
    }
    
    .map-container iframe {
        border-radius: 16px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
} 