.wedding-location-section {
    padding: 100px 0;
    background-color: white;
    text-align: center;
}

.wedding-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wedding-section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--wedding-secondary);
    position: relative;
    display: inline-block;
}

.wedding-section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--wedding-gold);
}

.wedding-location-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.wedding-location-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.wedding-location-info h3 {
    color: var(--wedding-accent);
    margin-bottom: 20px;
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
}

.wedding-location-info h3.wedding-location-title {
    font-size: 4rem;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    /* Add space for underline */
}

/* Add stylish underline */
.wedding-location-info h3.wedding-location-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Position below text */
    left: 50%;
    transform: translateX(-50%);
    /* Center horizontally */
    width: 100px;
    /* Width of underline */
    height: 4px;
    /* Thickness of underline */
    background: #b66230;
    /* Color to match theme */
    border-radius: 2px;
    /* Rounded ends */
}

.wedding-location-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: var(--wedding-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}


.wedding-location-info p i {
    color: var(--wedding-accent);
    min-width: 24px;
}

.wedding-location-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #f0f0f0;
    /* fallback color */
    background-size: cover;
    background-position: center;
}

.wedding-location-map:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.wedding-location-map:hover:before {
    background: rgba(0, 0, 0, 0.3);
}




.reception-location-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #f0f0f0;
    /* fallback color */
    background-size: cover;
    background-position: center;
}

.reception-location-map:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.reception-location-map:hover:before {
    background: rgba(0, 0, 0, 0.3);
}




.wedding-map-overlay {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--wedding-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wedding-map-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.wedding-map-overlay:active {
    transform: translate(-50%, -50%) scale(0.95);
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .wedding-location-info h3.wedding-location-title {
        font-size: 3.5rem;
    }

    .wedding-location-info h3 {
        font-size: 2rem;
    }

    .wedding-location-info h3.wedding-location-title::after {
        width: 70px;
        /* Width of underline */
        height: 3px;
        /* Thickness of underline */
    }

    .wedding-map-overlay {
        font-size: 1.4rem;
        padding: 15px 20px;
        min-width: 60vw;
        /* or try 90vw for more stretch */
        justify-content: center;
        /* optional: centers content inside */
        text-align: center;
        /* ensures text stays centered */
    }

    .wedding-section-title {
        font-size: 2rem;
    }

    .wedding-location-info p {
        font-size: 1.5rem;
    }

    .wedding-location-info,
    .wedding-location-map {
        min-width: 100%;
    }

    .wedding-location-container {
        gap: 30px;
    }
}