/* contact.css - Contact Page Specific Styles */

.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://raw.githubusercontent.com/Neodynix/Hope-Mystica-Cakes/refs/heads/main/images/background1.jpg?token=GHSAT0AAAAAADRIXZBP2DIRKYPTACRVAYVA2KGYXTA') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero .hero-overlay {
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.contact-hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    color: #00C4B4;
    text-shadow: 0 3px 15px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.8rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.contact-content {
    padding: 8rem 5% 6rem;
    background: #f9f9f9;
}

.contact-content .container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: white;
    text-align: c
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #ff69b4;
    margin-bottom: 2.5rem;
    text-align: center;
}

.detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.detail i {
    font-size: 2rem;
    color: #00C4B4;
    margin-right: 1.5rem;
    min-width: 50px;
}

.detail p {
    margin: 0;
    line-height: 1.8;
}

.detail a {
    color: #00C4B4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.detail a:hover {
    color: #ff69b4;
}

.whatsapp-large a {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s;
}

.whatsapp-large a:hover {
    background: #128C7E;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: 450px;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .contact-content .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-container {
        height: 400px;
        order: -1; /* Map appears above contact info on mobile */
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        min-height: 400px;
    }

    .contact-hero h1 {
        font-size: 3.5rem;
    }

    .contact-hero p {
        font-size: 1.4rem;
    }

    .contact-content {
        padding: 6rem 5% 4rem;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-info h2 {
        font-size: 2.8rem;
    }
}

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

    .detail {
        flex-direction: column;
    }

    .detail i {
        margin-bottom: 1rem;
    }

    .map-container {
        height: 350px;
    }
}

