body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background: linear-gradient(135deg, #000000, #8B0000, #FFD700);
}

/* SPLASH SCREEN */
#initialSplash {
    position: fixed;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 20px;
    box-sizing: border-box;
}

#initialSplash img {
    width: 70%;
    max-width: 500px;
    border: 5px solid gold;
    margin-bottom: 30px; /* THIS CREATES SPACE */
}

#initialSplash button {
    position: absolute;
    bottom: 70px;
    padding: 15px 40px;
    background: linear-gradient(45deg, gold, orange);
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
}

#initialSplash button {
    box-shadow: 0 0 15px gold;
}

/* HERO VIDEO */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.overlay h1 {
    font-size: 3rem;
    color: gold;
}

/* PROFILE SECTIONS */
.profile {
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 30px;
}

.profile img {
    width: 250px;
    border: 4px solid gold;
}

.profile h2 {
    color: gold;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin: 60px 0;
    letter-spacing: 2px;

    /* SHINE INSIDE TEXT */
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 40%,
        #ffd700 50%,
        #ffffff 60%,
        #ffffff 100%
    );

    background-size: 200% auto;

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    animation: textShine 3s linear infinite;
}

/* LEFT → RIGHT SHINE */
@keyframes textShine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.section-title::after {
    content: "";
    display: block;
    width: 1000px;
    height: 3px;
    margin: 15px auto 0;
    background: gold;
    box-shadow: 0 0 10px gold;
}

.bio-list {
    list-style-type: disc;
    padding-left: 20px;
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
}

.bio-list li {
    margin-bottom: 8px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    body {
        font-size: 14px;
    }

    /* SPLASH */
    #initialSplash img {
        width: 90%;
        max-width: 300px;
    }

    #initialSplash button {
        font-size: 16px;
        padding: 12px 25px;
        bottom: 40px;
    }

    /* HERO TEXT */
    .overlay h1 {
        font-size: 1.8rem;
    }

    /* PROFILE STACK */
    .profile {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .profile img {
        width: 180px;
    }

    /* SECTION TITLE */
    .section-title {
        font-size: 2rem;
        margin: 40px 0;
    }

    .section-title::after {
        width: 80%;
    }

    /* BIO TEXT */
    .bio-list {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* COUNTDOWN SECTION */
.countdown-section {
    text-align: center;
    padding: 60px 20px;
}

/* TITLE WITH GOLD SHINE */
.countdown-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 40%,
        #ffd700 50%,
        #ffffff 60%,
        #ffffff 100%
    );

    background-size: 200% auto;

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    animation: textShine 3s linear infinite;
}

/* COUNTDOWN BOXES */
#countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

#countdown div {
    background: rgba(0,0,0,0.6);
    border: 2px solid gold;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px gold;
}

/* NUMBERS WITH SHINE */
#countdown span {
    font-size: 3rem;
    font-weight: bold;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 40%,
        #ffd700 50%,
        #ffffff 60%,
        #ffffff 100%
    );

    background-size: 200% auto;

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    animation: textShine 2.5s linear infinite;
}

#countdown p {
    margin-top: 10px;
    font-size: 1rem;
    color: gold;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero video {
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
}

/* RSVP Buttons */
.gold-button {
    background: linear-gradient(45deg, #ffffff, #ffd700);
    border: none;
    color: #000;
    font-weight: bold;
    padding: 15px 35px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    text-shadow: 0 0 5px #ffd700;
    margin-top: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gold-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffd700;
}

/* Form container styling to match site */
#rsvpFormContainer {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid gold;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    margin: 50px auto;
}

#rsvpForm input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
    border: none;
}

#rsvpForm label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.checkbox-group label {
    display: block;
    margin: 5px 0;
}

#initialSplash {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
}
#initialSplash button {
    display: block;
}
/* FLOATING RSVP BUTTON TOP-RIGHT WITH DARKER BLACK AND SHIMMER TEXT */
#flyerSplash #showRSVP {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 9999;

    padding: 16px 45px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid gold;

    /* DARK BLACK GRADIENT BACKGROUND for visibility */
    background: linear-gradient(135deg, #000000 0%, #0d0d0d 50%, #000000 100%);
    background: #000000; /* solid black background */
    /* Box glow */
    box-shadow: 0 0 15px gold, 0 0 30px #ffd700;

    /* Center text */
    text-align: center;

    /* Shimmer text */
    color: transparent;
    background-image: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 40%,
        #ffd700 50%,
        #ffffff 60%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s linear infinite;

    /* Hover animation */
    transition: transform 0.2s, box-shadow 0.3s;
}

/* Hover effect */
#flyerSplash #showRSVP:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px gold, 0 0 40px #ffd700, 0 0 60px rgba(255,215,0,0.5);
}

/* Shimmer animation */
@keyframes textShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* RSVP Form Package Dropdown Styling */
#rsvpForm select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid gold;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    box-shadow: 0 0 10px gold;
    cursor: pointer;
}

#rsvpForm select option {
    background: #000000; /* ensure options are black */
    color: white;
}

#paymentScreen h2 {
    font-size: 28px;
    color: gold;
}

#paymentScreen h3 {
    color: #00c3ff;
}

#paymentScreen button:hover {
    opacity: 0.9;
}

/* ===================== */
/* RSVP Form Buttons */
/* ===================== */
#rsvpForm button {
    padding: 14px 40px;             /* Bigger size */
    font-size: 18px;                /* Larger text */
    font-weight: bold;
    color: white;                   /* White text */
    border: none;                   /* Remove default border */
    border-radius: 50px;            /* Oval shape */
    background: linear-gradient(90deg, #FFD700, #FFB800); /* Gold gradient */
    cursor: pointer;
    transition: all 0.3s ease;      /* Smooth hover */
    margin-right: 10px;             /* Space between buttons */
}

/* Hover effect */
#rsvpForm button:hover {
    opacity: 0.9;
    transform: scale(1.05);         /* Slight zoom on hover */
}

/* Optional: separate reset/back button style */
#rsvpForm #resetPage {
    background: linear-gradient(90deg, #FFA500, #FF8C00); /* Slightly different gold for variety */
}

/* Button container: flex layout */
.button-row {
    display: flex;
    justify-content: space-between; /* Pushes buttons to left & right */
    margin-top: 20px;
}

/* RSVP Form Buttons */
.button-row button {
    padding: 14px 40px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #FFD700, #FFB800);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect */
.button-row button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Optional: different style for Back button */
#resetPage {
    background: linear-gradient(90deg, #FFA500, #FF8C00);
}

/* ===================== */
/* CONTACT FOOTER */
/* ===================== */
#contactFooter {
    background: #000000; /* Solid black banner */
    padding: 25px 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    border-top: 2px solid gold;
    box-shadow: 0 -2px 10px gold;
    z-index: 999;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.contact-item {
    font-size: 18px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;

    /* Shimmer text effect (same as your section titles) */
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 40%,
        #ffd700 50%,
        #ffffff 60%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
}

/* Hover effect for links */
.contact-item a {
    text-decoration: none;
    color: inherit;
}

.contact-icon {
    font-size: 22px; /* slightly bigger icons */
}

/* ===================== */
/* EVENT DATE BANNER */
/* ===================== */
.event-banner {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 40px 20px 20px 20px;
    line-height: 1.4;

    /* SHIMMER EFFECT (same as countdown) */
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 40%,
        #ffd700 50%,
        #ffffff 60%,
        #ffffff 100%
    );

    background-size: 200% auto;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    animation: textShine 3s linear infinite;
}

/* Tagline slightly smaller */
.event-tagline {
    font-size: 1.3rem;
    display: block;
    margin-top: 10px;
}

/* ===================== */
/* 45 YEARS IMAGE STYLING */
/* ===================== */
.years-banner {
    text-align: center;
    margin: 20px 0 40px 0;
    position: relative;
}

.years-banner img {
    max-width: 300px;
    width: 80%;
    border-radius: 12px;
    box-shadow: 0 0 20px gold;
}

/* SHINE OVERLAY EFFECT */
.years-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );

    animation: shineSweep 3s infinite;
}

/* ANIMATION */
@keyframes shineSweep {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

