/* Contact page styles */

.contact-hero {
    height: 60vh;
    background-image: url('../resources/images/phone_1-2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-attachment: fixed;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    background-attachment: fixed;
}

.contact-hero h1 {
    font-size: 3.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
}

.highlight {
    color: #00e1e8;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

h1:hover .highlight::after,
h2:hover .highlight::after {
    transform: scaleX(1);
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 10rem auto;
    gap: 3rem;
    padding: 0 2rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon {
    background-color: rgba(0, 225, 232, 0.1);
    padding: 0.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00e1e8;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-details p,
.contact-details span {
    color: #cccccc;
}

.protected-info {
    cursor: pointer;
    color: #00e1e8;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.protected-info:hover {
    color: #ffffff;
}

.social-links h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: #e9e9e9;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #00e1e8;
    color: #000000;
    transform: translateY(-3px);
}

.contact-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 500px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .contact-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 40vh;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-container {
        flex-direction: column;
        margin-top: 6rem;
        gap: 3rem;
    }
    
    .contact-image {
        height: 300px;
    }
}

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