.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 80vh;
    padding: 40px 0;
    gap: -2rem;
   

}

.contact-left {
    flex: 1;
    max-width: 500px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    margin-left: 4rem;
    
}

.contact-title {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-divider {
    border: none;
    border-top: 2px solid #fff;
    margin: 0 0 30px 0;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 18px;
}

.contact-details h4,
.contact-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p,
.contact-hours p {
    margin-bottom: 8px;

}

.contact-details a,
.contact-details a:visited {
    color: #777272;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-open-time {
    
    font-weight: 500;
}

.contact-email-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 28px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
}

.contact-email-btn:hover {
    background: #fff;
    color: #000;
}

.contact-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    margin-right: 2rem;
}

.contact-img {
    width: 400px;
    height: 450px;
    border-radius: 6px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    object-fit: cover;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    .contact-left {
        max-width: 100%;
        padding: 0 20px;
        margin: 0 3rem;
    }
    .contact-right {
        display: none;
        padding: 0 0;
        margin: 0 0 ;
    }
    .contact-img {
        display: none;
    }
}

