section.wedding-day {
    position: relative;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--white, #fdfaf6);
}

.wedding-day .bg-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.wedding-day .bg-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wedding-day .bg-image-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
}

.wedding-day .arch-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 280px;
    border-radius: 200px;
    padding: 5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

    background: rgb(255 255 255 / 57%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 15px rgba(255, 255, 255, 0.6);
}

.wedding-day .event-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.wedding-day .event-title {
    font-family: var(--playfair, serif);
    font-size: 38px;
    font-weight: bold;
    font-style: italic;
    color: #713135;
    margin-bottom: 0.5rem;
}

.wedding-day .event-details {
    font-family: var(--montserrat, sans-serif);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    color: #713135;
    margin-bottom: 1.5rem;
}

.wedding-day .map-btn {
    background-color: #713135;
    color: #ffffff;
    font-family: var(--montserrat, sans-serif);
    font-size: 13px;
    font-weight: 300;
    padding: 10px 30px;
    border-radius: 0 20px 0 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(184, 134, 85, 0.2);
}

.wedding-day .map-btn:hover {
    background-color: #5a272a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(184, 134, 85, 0.3);
}

/* Ornamen */
.wedding-day .ornaments {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.wedding-day .ornaments img {
    position: absolute;
    width: 60%;
    max-width: 280px;
    object-fit: cover;
    opacity: 0.85;
}

.wedding-day .ornaments img:nth-child(1) {
    top: -1%;
    width: 45% !important;
    max-width: none !important;
    right: -2%;
    animation: rotateLeft 3s ease-in-out infinite alternate;
}

.wedding-day .ornaments img:nth-child(2) {
    top: -1%;
    width: 45% !important;
    max-width: none !important;
    left: -2%;
    animation: rotateRight 3s ease-in-out infinite alternate;
}

.wedding-day .ornaments img:nth-child(3) {
    width: 100% !important;
    max-width: none !important;
    bottom: 5%;
    left: -45%;
}

.wedding-day .ornaments img:nth-child(4) {
    width: 60%;
    bottom: -1%;
    right: 0;
    animation: rotateLeft 3s ease-in-out infinite alternate;
}

.wedding-day .ornaments img:nth-child(5) {
    width: 60%;
    bottom: -1%;
    left: 0;
    animation: rotateRight 3s ease-in-out infinite alternate;
}
.wedding-day .ornaments img:nth-child(6) {
    width: 100%;
    bottom: -1%;
    left: 40%;
}

/* Responsive */
@media (max-width: 360px) {
    .wedding-day .arch-container {
        padding: 5rem 1.5rem;
        border-radius: 150px;
    }

    .wedding-day .event-title {
        font-size: 32px;
    }

    .wedding-day .event-details {
        font-size: 12px;
    }
}
