#hero {
    background-image: url("../images/bg-hero.jpg")
}

#the-wedding-event {
    background-image: url("../images/bg-the-wedding-event.jpg")
}

#proposed {
    background-image: url("../images/bg-proposed.jpg")
}

#wedding-gifts {
    background-image: url("../images/bg-wedding-gifts.jpg")
}

footer {
    background-image: url("../images/bg-footer.jpg")
}

/* Dress Code Gallery - responsive CSS grid (not masonry) */
.dresscode-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.dresscode-item figure {
    margin: 0;
}
.dresscode-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: default;
    pointer-events: none;
}
@media (max-width: 991px) {
    .dresscode-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .dresscode-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Guest Messages Carousel */
#guest-messages {
    background-color: #fdf8f2;
}
.guest-card {
    max-width: 600px;
}
.guest-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #c9a96e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.guest-initials {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: .05em;
}
.guest-message {
    color: #555;
    line-height: 1.7;
}
.guest-name {
    color: #2b2b2b;
    font-size: 1.05rem;
}
/* Manual carousel — hide all items, show only .active */
#guest-carousel-inner .carousel-item {
    display: none;
}
#guest-carousel-inner .carousel-item.active {
    display: block;
}
.guest-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 2px solid #c9a96e;
    color: #c9a96e;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background .2s, color .2s;
}
.guest-nav:hover {
    background: #c9a96e;
    color: #fff;
}
.guest-nav-prev { left: 0; }
.guest-nav-next { right: 0; }
@media (max-width: 575px) {
    .guest-card { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
}

/* RSVP form inputs - larger on mobile */
@media (max-width: 767px) {
    #rsvp-name,
    #rsvp-passcode {
        font-size: 1.375rem;
        padding: 1rem 1.25rem !important;
        height: auto !important;
    }
}

/* ===== Entourage Section ===== */
#entourage {
    position: relative;
    background-color: #fdf8f2;
    background-image:
        radial-gradient(circle, rgba(201,169,110,.09) 1px, transparent 1px),
        radial-gradient(ellipse at 12% 55%, rgba(201,169,110,.06) 0%, transparent 52%),
        radial-gradient(ellipse at 88% 18%, rgba(201,169,110,.08) 0%, transparent 48%);
    background-size: 32px 32px, 100% 100%, 100% 100%;
    padding: 5rem 0;
}

/* ── Particle container ── */
.ec-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* ── Floating hearts ── */
.ec-heart {
    position: absolute;
    color: #e8869a;
    opacity: 0;
    animation: ec-heart-float linear forwards;
    filter: drop-shadow(0 1px 2px rgba(232,134,154,.35));
}

@keyframes ec-heart-float {
    0%   { opacity: 0;   transform: translateY(0)      translateX(0)           scale(.6); }
    12%  { opacity: .75; }
    85%  { opacity: .35; }
    100% { opacity: 0;   transform: translateY(-220px) translateX(var(--sway)) scale(1.1); }
}

/* ── Falling petals ── */
.ec-petal {
    position: absolute;
    border-radius: 50% 0 50% 0;
    background: linear-gradient(135deg, #fcd5db, #f9a8b8);
    opacity: 0;
    animation: ec-petal-fall linear forwards;
    box-shadow: inset 0 1px 2px rgba(255,255,255,.5);
}

@keyframes ec-petal-fall {
    0%   { opacity: 0;   transform: translateY(0)    rotate(0deg); }
    10%  { opacity: .8; }
    85%  { opacity: .4; }
    100% { opacity: 0;   transform: translateY(340px) translateX(var(--drift)) rotate(var(--spin)); }
}

/* ensure cards sit above particles */
.entourage-card { z-index: 1; }

/* ── Card icons (Font Awesome) ── */
.ec-card-icon {
    display: block;
    font-size: 1.9rem;
    color: #c9a96e;
    margin: 0 auto .6rem;
    line-height: 1;
}

.entourage-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    color: #c9a96e;
    line-height: 1.1;
    margin-bottom: .25rem;
}

/* ── Cards — paper + tape style ── */
.entourage-card {
    background: #fffef9;
    border: none;
    border-radius: 3px;
    padding: 2.5rem 3rem;
    max-width: 700px;
    box-shadow:
        0 4px 8px rgba(0,0,0,.10),
        0 12px 28px rgba(0,0,0,.09),
        3px 6px 0 rgba(0,0,0,.04);
    position: relative;
    overflow: visible;
}

/* hide old ornament corners — tape replaces them */
.entourage-card .ornament-corner { display: none; }

/* top-left tape strip */
.entourage-card::before {
    content: '';
    position: absolute;
    top: 2px;
    left: -16px;
    width: 78px;
    height: 22px;
    background: rgba(172, 122, 34, 0.52);
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 3px,
        rgba(255,255,255,.10) 3px,
        rgba(255,255,255,.10) 5px
    );
    transform: rotate(44deg);
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,.22);
    z-index: 2;
}

/* bottom-right tape strip */
.entourage-card::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: -16px;
    width: 78px;
    height: 22px;
    background: rgba(172, 122, 34, 0.52);
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 3px,
        rgba(255,255,255,.10) 3px,
        rgba(255,255,255,.10) 5px
    );
    transform: rotate(44deg);
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,.22);
    z-index: 2;
}

/* alternate slight tilt for natural paper feel */
#entourage .entourage-card:nth-child(odd)  { transform: rotate(-0.6deg); }
#entourage .entourage-card:nth-child(even) { transform: rotate(0.6deg); }

/* ── Hero card (Bride & Groom) ── */
.entourage-card-hero {
    background: #fffdf4;
    box-shadow:
        0 6px 16px rgba(0,0,0,.12),
        0 20px 48px rgba(201,169,110,.18),
        3px 6px 0 rgba(0,0,0,.05);
}

/* ── Script ampersand between groom & bride ── */
.entourage-ampersand {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    color: #c9a96e;
    opacity: .6;
    line-height: 1;
    display: block;
}

/* ── Role labels with flanking lines ── */
.entourage-role-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(.67rem, 2vw, .76rem);
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: .4rem;
}

.entourage-role-label::before,
.entourage-role-label::after {
    content: '';
    display: block;
    height: 1px;
    width: 26px;
    flex-shrink: 0;
    background: linear-gradient(to right, transparent, #c9a96e);
}

.entourage-role-label::after {
    background: linear-gradient(to left, transparent, #c9a96e);
}

/* ── Sub-labels (Gentlemen / Ladies / Sand / Veil …) ── */
.entourage-sub-label {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: .69rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #b09068;
    margin-bottom: .25rem;
}

/* ── Names ── */
.entourage-main-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.05rem, 3vw, 1.2rem);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.entourage-name {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(.83rem, 2.2vw, .94rem);
    color: #4a4a4a;
    line-height: 1.8;
}

/* ── Column dividers ── */
.entourage-col-left {
    border-right: 1px solid #ecdfc8;
}

@media (min-width: 576px) {
    .entourage-col-left-sm {
        border-right: 1px solid #ecdfc8;
    }
}

.entourage-divider {
    border-color: #ecdfc8;
    opacity: 1;
}

/* ── Mobile ── */
@media (max-width: 575px) {
    .entourage-card {
        padding: 2rem 1.75rem;
        border-radius: 3px;
    }

    /* shrink tape strips so they don't overflow the viewport */
    .entourage-card::before {
        width: 58px;
        height: 18px;
        left: -10px;
        top: 4px;
    }

    .entourage-card::after {
        width: 58px;
        height: 18px;
        right: -10px;
        bottom: 4px;
    }

    .entourage-name {
        font-size: .87rem;
    }

    .entourage-role-label {
        white-space: normal;
        text-align: center;
    }
}

/* ── Mobile countdown bar clearance ── */
@media (max-width: 991.98px) {
    footer .container {
        padding-bottom: 72px;
    }
    #footer-spacer {
        height: 72px;
    }
}

/*# sourceMappingURL=custom.min.css.map */
