body {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    margin: 0;
    background-repeat: no-repeat;
    font-family: 'Merriweather', cursive;
}

.content_i > .body-padding {
    padding-right: 50px;
    padding-left: 50px;
}

.wrapper1 {
    font-weight: bold;
    display: flex;
    justify-content: center;
    font-size: 2rem;
    color: #2d5691;
    text-align: center;
}

.main-photo {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.section2, .blockv2 {
    background-image: linear-gradient(0turn, rgba(255, 255, 255, 0.53) 0%, rgba(227, 227, 227, 0.32) 100%);
}

.section2, .blockv2,.section3 {
    padding-bottom: 40px;
}

.section {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #2d5691;
    font-size: 20pt;
}

.section-head {
    font-size: 25pt;
    font-weight: bold;
}

section {
    color: #2d5691;
}

.dress-code-colors {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.dress-code-colors img {
    flex: 1 1 20px;
    max-width: 160px;
    height: 60px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.swiper-container {
    overflow: hidden;
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}



.map-wrapper {
    width: 100%;
    margin-top: 20px;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 20px;
}


.date {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 15px 25px;
    max-width: 900px;
    margin-top: 40px;
}

.date-head {
    font-weight: bold;
}

.date-desc {
    text-align: left;
}



.route {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 15px 25px;
    max-width: 900px;
    margin-top: 40px;
}

.route-time {
    font-weight: bold;
    text-align: right;
}

.route-text {
    text-align: left;
}

.section {
    margin: 0 auto;
    text-align: center;
}

#rsvp-form {
    display: flex;
    justify-content: center;
}
#rsvp-form .card {
    max-width: 900px;
}



.boarding-pass {
    font-family: 'Merriweather', cursive;
    display: flex;
    max-width: 900px;
    margin: 60px auto;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.ticket-left {
    background: #2d5691;
    color: white;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ticket-left::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 20px;
    background:
        radial-gradient(circle at center, white 10px, transparent 11px) repeat-y;
    background-size: 20px 30px;
}

.airport {
    font-size: 2.5rem;
    font-weight: bold;
}

.arrow {
    font-size: 2rem;
    margin: 15px 0;
}

.ticket-main {
    flex: 1;
    padding: 40px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.value {
    font-size: 1.4rem;
    font-weight: bold;
}

.barcode {
    margin-top: 30px;
    height: 60px;
    background: repeating-linear-gradient(
        90deg,
        black,
        black 2px,
        white 2px,
        white 4px
    );
}

@media (max-width: 768px) {
    .boarding-pass {
        flex-direction: column;
        margin: 20px;
    }

    .ticket-left {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .ticket-left::after {
        display: none;
    }
}


.hero-board {
    text-align: center;
    font-family: 'Merriweather', serif;
}

#flight-status {
    color: #22c55e;
    font-weight: bold;
    animation: blink 1.5s infinite alternate;
}

@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0.6; }
}

.flight-code {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 4px;
}

.destination {
    font-size: 1.8rem;
    margin-top: 20px;
}

.status {
    margin-top: 15px;
    font-weight: bold;
    color: #caa03d;
}

.dress-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 25px;
    margin: 40px auto;
}

.dress-item {
    flex: 1 1 0px;
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(255,255,255,0.6);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.dress-color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}




.checkin-title {
    font-size: 2.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.checkin-status {
    margin-top: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #b45309;
}




.airport-board {
    background: #111;
    color: #facc15;
    font-family: monospace;
    padding: 30px;
}

.board-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.active {
    color: #fff;
}


.departure-countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-family: monospace;
    font-size: 2rem;
    margin: 60px 0;
}

.count-item {
    text-align: center;
}

.count-item div {
    font-size: 3rem;
    font-weight: bold;
}


.result-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.result-card {
    background: white;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    animation: fadeUp 0.5s ease;
}
.hidden {
    display: none;
}
