
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html, body {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
            position: fixed;
        }

        body {
            background: #000000;
            font-family: 'Arial', sans-serif;
        }
@font-face {
    font-family: 'another-shabby';
    src:url('../assets/font/another-shabby.ttf.woff') format('woff'),
        url('../assets/font/another-shabby.ttf.svg#another-shabby') format('svg'),
        url('../assets/font/another-shabby.ttf.eot'),
        url('../assets/font/another-shabby.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}
        :root {
    --color-black: #000000;
    --color-gold: #eac96a;
    --color-beige: #b8a992;
    --color-gray: #7a7268;
    --color-white: #ffffff;
    --font-script: 'Great Vibes', cursive;
    --font-invite: 'Josefin Sans', sans-serif;
        --font-date-number: 'Lora', serif;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-rsvp:'another-shabby';


    --color-grey-light: #d3d3d3;
}


.rsvp-section {
    margin-top: 20px;
}
        .invitation-text {
            margin-top: 5px;
               margin-left: 10px;
            margin-right: 10px;
           
         
        }

        .invitation-text p {

            font-size: 1rem;
            line-height: 1.5;
            color: var(--color-gold);
            text-align: center;
            font-family: var(--font-invite);
        }

        .event-title {
            font-family: var(--font-script);
            font-size: 2.5rem;
            color: var(--color-gold);
            margin-top: 80px;
            font-weight: 500;
            text-align: center;
        }
        .fullscreen-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
        }

        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }

        /* Top belt image: fixed at very top, centered */
        .belt-top {
            position: fixed;
            top:40px; /* small gap from top edge */
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 760px;
            height: auto;
            z-index: 60;
            pointer-events: none; /* doesn't block taps */
            display: block;
        }

        @media screen and (max-width: 480px) {
            .belt-top{ width: 75%; max-width: 360px; top:40px }
        }


        .content-overlay {
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 10px;
            padding-bottom: 60px;
        }
        /* Optional: Add your content styles here */
        .content {
            text-align: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            top: 50px;
        }

        .content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .content .invitation-text p {
            font-size: 0.6rem;
            line-height: 1.25;
        }

        /* Enforce invitation and event text sizes to match other pages */
        .content .invitation-text p {
            font-size: 1.5rem;
        }

        .event-venue,
        .event-location {
            font-size: 1.5rem;
        }

        @media screen and (max-width: 480px) {
            .content .invitation-text p {
                font-size: 1rem;
            }
            .event-venue,
            .event-location {
                font-size: 1rem;
            }
        }
  
/* Event Details Section */
.event-details-section {
   text-align: center;
}

.event-date {
    font-family: var(--font-invite);
    color: var(--color-gold);
    margin-top: 40px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.event-date p {
    margin: 0;
    display: inline;
    line-height: 1.5;
    font-size: 12rem;
}
.date-number {
    font-family: var(--font-date-number);
    font-size: 1.5rem;
    font-weight: 100;
    color: var(--color-gold);
    display: inline;
    margin: 0 4px;
    vertical-align: middle;
    line-height: 1;
}

.date-line {
    width: 75%;
    height: 2px;
    background: var(--color-gold);
    margin: 6px auto;
}

.event-venue {
    font-family: var(--font-invite);
    font-size: 2rem;
    color: var(--color-gold);
    margin: 5px 0 3px 0;
    font-weight: 400;
}

.event-location {
    font-family: var(--font-invite);
    font-size: 2rem;
    color: var(--color-gold);
    margin: 0;
    margin-bottom: 20px;
    font-weight: 400;
}
.speaker-info {
    font-family: var(--font-invite);
    font-size: 0.75rem;
    color: var(--color-gold);
    font-weight: 400;
    margin-top: 35px;
}

.speaker-person {
    font-family: var(--font-invite);
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 400;
    margin-top: 10px;
}

/* Two Column Section */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;  
   /* grid-template-columns: 50% 50%;*/
    gap: 10px;
    margin-top: 75px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.column-left {
   text-align: center;
    padding: 2px;
    color: var(--color-gold);
    font-family: var(--font-body);
    width: 100%;
    box-sizing: border-box;
}

.column-right {
    text-align: right;
    padding: 2px;
    color: var(--color-gold);
    font-family: var(--font-body);
    width: 100%;
    box-sizing: border-box;
}

.rsvp-title {
    font-family: var(--font-invite);
    font-size: 1rem;

    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-gold);
  
    margin-top: 20px;
    
   text-align: center;
}


/* Form Groups */
.form-group {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.form-group label {
    flex: 0 0 auto;
    font-family: var(--font-invite);
    font-size: 1.1rem;
    color: var(--color-gold);
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    flex: 1 1 auto;
    padding: 4px 4px;
    margin-right: 50px;
    border: none;
    border-bottom: 1px solid var(--color-gold);
    background: transparent;
    background-color: transparent;
    color: var(--color-white);
    font-family: var(--font-invite);
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s;
    
}

.form-group input[type="text"]:-webkit-autofill,
.form-group input[type="tel"]:-webkit-autofill,
.form-group input[type="text"]:-webkit-autofill:hover,
.form-group input[type="tel"]:-webkit-autofill:hover,
.form-group input[type="text"]:-webkit-autofill:focus,
.form-group input[type="tel"]:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--color-gold);
    transition: background-color 9999s ease-in-out 0s;
    box-shadow: 0 0 0px 1000px transparent inset;
    caret-color: var(--color-white);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder {
    color: rgba(212, 175, 55, 0.5);
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
    border-bottom-color: var(--color-white);
}

/* Confirmation Section */
.confirmation-section {
    margin-bottom: 4px;
}

.confirmation-section .confirmation-label {
    font-family: var(--font-invite);
    font-size: 1.1rem;
    color: var(--color-gold);
   text-align: left;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input[type="radio"] {
    width: 11px;
    height: 11px;
    font-size: 1.25winrem;
    margin-right: 5px;
    cursor: pointer;
    accent-color: var(--color-gold);
    flex-shrink: 0;
}

.checkbox-item label {
    font-family: var(--font-invite);
    font-size: 1.25rem;
    color: var(--color-gold);
    margin: 0;
    cursor: pointer;
}

/* entry Policy Section */
.entry-policy-section {
    margin-top: 40px;
        margin-bottom: 10px;
   text-align: center;}

.entry-policy-section .entry-policy-text {
    font-family: var(--font-rsvp);
    font-size: 1.1rem;
    color: var(--color-gold);
    margin: 0;
    font-weight: 500;
}

/* Dress Code Section */
.dress-code-section {
    margin-top: 10px;
        margin-bottom: 3px;
   text-align: center;}

.dress-code-section .dress-code-text {
    font-family: var(--font-invite);
    font-size: 1.1rem;
    color: var(--color-gold);
    margin: 0;
    font-weight: 500;
}

.dress-code-emphasis {
    font-weight: 500;
}

/* Comfort Note Section */
.comfort-note-section {
    margin-top: 15px;
    margin-bottom: 3px;
   text-align: center;
}

.comfort-note-section .comfort-text {
    font-family: var(--font-invite);
    font-size: 1.1rem;
    color: var(--color-gold);
    line-height: 1;
    margin: 0;
    font-weight: 400;
}

/* Submit Button */
.submit-btn {
    margin-top : 0px;
 
    border: none;
    padding: 10px 10px;
    border-radius: 3px;
    color: var(--color-black);
    background: transparent; /* make button background transparent only */
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    width: 30%;
    transition: all 0.5s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.5;
}

/* Image-style submit button (used in index3.html) */
.submit-btn.image-btn{
    background: transparent;
    border: none;
    padding: 0;
    width: auto;
}
.submit-btn.image-btn img{
    display:block;
    max-width:260px;
    width:100%;
    height:auto;
}

/* Fixed center-bottom RSVP button */
.submit-btn.fixed-bottom{
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    width: auto !important;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
}
.submit-btn.fixed-bottom img{ max-width:320px }

@media screen and (max-width: 600px){
    .submit-btn.fixed-bottom{ bottom:10px }
    .submit-btn.fixed-bottom img{ max-width:260px }
}

@media screen and (max-width: 380px){
    .submit-btn.fixed-bottom img{ max-width:200px }
}

.submit-btn:hover {
  
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* Center Button Wrapper */
.center-button-wrapper {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.center-button-wrapper .scan-text {
    font-family: var(--font-body);
    font-size: 0.50rem;
    color: var(--color-gold);
    letter-spacing: 2px;
    
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 500;
     position: fixed;
    left: 50%;
    transform: translateX(-50%);

}

.submit-btn-center {

    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.button-image {
    display: block;
    max-width: 75px;
    height: auto;
    transition: transform 0.3s ease;
}
     

.submit-btn-center:hover .button-image {
    transform: scale(1.05);
}

.submit-btn-center:active .button-image {
    transform: scale(0.98);
}

.submit-btn-center:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Message Styles */
.message {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 0.75rem;
    font-family: var(--font-invite);
    display: none;
    max-width: 90%;
    width: fit-content;
    position: relative;
    z-index: 2;
}

.message.success {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    display: block;
}

.message.error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
    display: block;
}








        /* Mobile optimization */
        @media screen and (max-width: 768px) {
            .content h1 {
                font-size: 1.2rem;
            }
            
            .content p {
                font-size: 1.2rem;
            }

            .event-details-section .event-date p {
                font-size: 8rem;
            }

            .date-number {
                font-size: 3rem;
            }

            .event-venue,
            .event-location {
                line-height: 1.5;
                font-size: 2rem;
            }
        }

        @media screen and (max-width: 480px) {
            .content h1 {
                font-size: 1rem;
            }
            
            .content p {
                font-size: 1.1rem;
            }

            .event-details-section .event-date p {
                font-size: 4rem;
            }

            .date-number {
                font-size: 1.15rem;
            }

            .event-venue,
            .event-location {
                font-size: 2rem;
            }

            .invitation-text {
                margin-top: 60px;
                 margin-left: 15px;
                 margin-right: 15px;
            }
         
        }

/* Ornament at bottom-left */
.ornament-left{
    position: fixed;
    left: 8px;
    bottom: 8px;
    width: 140px;
    max-width: 30vw;
    height: auto;
    z-index: 55;
    pointer-events: none;
    opacity: 0.98;
}


.ornament-right{
    position: fixed;
    right: 8px;
    bottom: 8px;
    width: 140px;
    max-width: 30vw;
    height: auto;
    z-index: 55;
    pointer-events: none;
    opacity: 0.98;
}

.ornament-center{
    
}
@media screen and (max-width: 480px){
    .ornament-left{  width:110px; max-width:34vw }
    .ornament-right{ width:110px; max-width:34vw }   
}
