/* contact.css - Simple contact page styles */

#contact-container {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    padding: 150px 20px 60px 20px;
    text-align: center;
}

#contact-container h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

#contact-container>p {
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Email button */
.btn-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff8c00, #ff4500);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-email:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.btn-email i {
    font-size: 1.5rem;
}

/* Social links */
.contact-socials {
    margin-top: 60px;
}

.contact-socials p {
    color: #888;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-btn:hover {
    background: #ff8c00;
    border-color: #ff8c00;
    transform: translateY(-5px);
}