.wishas {
    width: 100%;
    min-height: 100vh;
    padding: 4rem 8rem;
    background-color: var(--bg-color);
    position: relative;
    text-align: center;
}

.wishas div:nth-of-type(1) h2, .wishas div:nth-of-type(2) h2 {
    font-size: var(--fontSize-heading-base);
    font-family: var(--sacramento);
    font-weight: 400;
}

.wishas div:nth-of-type(1) > div {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.wishas div:nth-of-type(1) > div figure {
    width: 24rem;
    text-align: center;
    border-radius: 15px;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 -1px 1px rgba(0, 0, 0, 0.1);
}

.wishas div:nth-of-type(1) > div figure img {
    width: 7rem;
    height: 7rem;
    object-fit: contain;
    margin-bottom: 1rem;
}

.wishas div:nth-of-type(1) > div figure figcaption {
    line-height: 1.8rem;
    margin-bottom: 1rem;
}

.wishas div:nth-of-type(1) > div figure button {
    padding: 0.4rem 1rem;
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-small);
}

.wishas div:nth-of-type(1) > div figure button:hover {
    background-color: #000;
    color: #fff;
}

/* Venue map section */
.venue-map {
    margin-top: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 -1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 2rem 4rem 2.5rem;
}

.venue-map h2 {
    font-size: var(--fontSize-heading-base);
    font-family: var(--sacramento);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.venue-map > p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.open-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #000;
    color: #fff;
    padding: 0.55rem 1.4rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.5px;
    transition: var(--transition-small);
    margin-bottom: 1.2rem;
    cursor: pointer;
}

.open-map-btn:hover {
    background-color: #e91e8c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.35);
}

.open-map-btn i {
    font-size: 1rem;
}

#wedding-map {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 1;
}

.venue-address {
    margin-top: 0.8rem;
    font-size: 0.82rem;
    color: #555;
    font-style: italic;
}

/* Custom Leaflet marker */
.wedding-marker-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 50px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.35));
}

.wedding-marker-inner i {
    font-size: 2.8rem;
    color: #e91e8c;
    line-height: 1;
}

.wishas svg:nth-of-type(1){
    position: absolute;
    z-index: -10;
    top: -12rem;
    left: 0;
    right: 0;
}

.wishas svg:nth-of-type(2) {
    position: absolute;
    z-index: -10;
    left: 0;
    right: 0;
    bottom: -15rem;
}