/* 
CONTACT SECTION CSS

Styles for the Contact Me section
- Full viewport height layout
- Responsive design for mobile and desktop
- Professional styling consistent with the portfolio theme
*/

.contact-section {
    background-color: #1a1a1a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.contact-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile styles for contact section */
@media (max-width: 768px) {
    .contact-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .contact-text {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}
