/* Contacts Page Styles */
.contacts-page {
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    padding: 2rem 0;
}

.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.contacts-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contacts-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contacts-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-method {
    background: #111;
    padding: 2rem;
    border: 1px solid #222;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-method p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #ff6b6b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contacts-container {
        padding: 0 1rem;
    }

    .contacts-title {
        font-size: 2rem;
    }

    .contacts-subtitle {
        font-size: 1rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contacts-page {
        padding: 1rem 0;
    }

    .contacts-title {
        font-size: 1.8rem;
    }

    .contact-method {
        padding: 1.5rem;
    }

    .contact-icon {
        font-size: 2.5rem;
    }
} 