@font-face {
    font-family: 'MiaMaNueva';
    src: url(font/miamanueva/miamanueva.otf) format('opentype');
    font-display: swap;
}
@font-face {
    font-family: 'STIX Two Text';
    src: url(font/STIX_Two_Text/STIXTwoText-VariableFont_wght.ttf);
    font-display: swap;
}

body, div, h1, h2, h3, h4, h5, h6, p, ol, ul, blockquote, figure{
    margin:0;
    padding:0;
    font-weight: normal;
    font-size: unset;
}
body{
    position: relative;
    margin:0 auto;
    font-family: 'STIX Two Text', sans-serif;
    -webkit-text-size-adjust: 100%;
    background: #fffbf8;
    color:#535959;
    width:100%;
    opacity: 0;
    animation: page-reveal 0.7s ease 0.1s both;
}

@keyframes page-reveal {
    to { opacity: 1; }
}

a{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
li{
    list-style-type: none;
}
html {
    scroll-behavior: smooth;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width:100%;
}
html, body {
    overflow-x: clip;
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}
.flex{
    display: flex;
}
.flex.column{
    flex-direction: column;
}
.flex.centered{
    align-items: center;
}
.flex.space{
    justify-content: space-between;
}

/* Subtle upward section reveal on scroll */
.reveal-ready {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
    will-change: opacity, transform;
}

.reveal-ready.reveal-in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-ready,
    .reveal-ready.reveal-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
    body,
    .hero-img-ring,
    .hero-section .date,
    .hero-img-ring::before {
        animation: none;
        opacity: 1;
    }
}

header{
    position: relative;
}
/* Section separator image */
.section-separator {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    overflow: hidden;
}
.section-separator img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    opacity: 0.85;
}
/* Bottom bar image at the very bottom */
.bottom-image-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none;
}
.bottom-image-bar img {
    width: 100%;
    display: block;
}
/* Top bar image at the very top */
.top-image-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    max-width: 500px;
    z-index: -1;
    pointer-events: none;
}
.top-image-bar img {
    width: 100%;
    display: block;
    object-fit: cover;
}
/* Fixed background image styling */
.fixed-background-image {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 90%;
    height: auto;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    will-change: transform;
    opacity: 0.7;
    max-width:470px;
}
.fixed-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
}

/* Fixed GIF on top right */
/* Rocking Horse Image Animation */
.rocking-horse-img {
    position: absolute;
    bottom: -25%;
    left: 5%;
    height: auto;
    z-index: 100;
    pointer-events: none;
    transform-origin: center bottom;
    animation: rockingMotion 2s ease-in-out infinite;
}

.rocking-horse-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    -webkit-filter: drop-shadow(0 4px 8px rgba(92, 77, 66, 0.2));
    filter: drop-shadow(0 4px 8px rgba(92, 77, 66, 0.2));
}

@keyframes rockingMotion {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

/* Hero Section  */
.hero-section {
    position: relative;
    height: 100vh;
    max-height: 1080px;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
    justify-content: center;
    flex-direction: column;
}

.hero-section img{
    max-width: 550px;
    width: 100%;
    z-index: 1;
    position: relative;
}

.hero-img-ring {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: hero-rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s both;
}

.hero-img-ring::before {
    content: '';
    position: absolute;
    width: calc(100% - 75px);
    height: calc(100% - 80px);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(
        to bottom,
        #9e8474 0%,
        rgba(158, 132, 116, 0.08) 40%,
        rgba(158, 132, 116, 0.55) 65%,
        #9e8474 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: hero-ring-spin 8s linear 1.6s infinite, ring-fade-in 0.6s ease 1.6s both;
    z-index: 0;
}

@keyframes hero-ring-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ring-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.hero-section .date{
    font-size: 100px;
    color: #9e8474;
    font-family: 'Miamanueva', cursive;
    line-height: 100px;
    font-weight: 800;
    animation: hero-rise 1s cubic-bezier(0.22, 0.61, 0.36, 1) 1.1s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: #5E3888;
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(15px);
    }
}

.invite{
    text-align: center;
    font-size: 25px;
    padding: 100px 50px;
}
.invite-wrapper h4{
    font-size: 50px;
    padding: 30px 0;
    color:#9e8474;
}
.invite-wrapper h4#inviteTitle{
    font-family: 'MiaMaNueva',sans-serif;
}
.parents h4, .koump h4{
    font-size:28px;
}
/* Blue and Pink Horses at Top of Invitation */
.blue-horse-top,
.pink-horse-top {
    position: absolute;
    top: 20px;
    width: 120px;
    height: auto;
    z-index: 5;
    transform-origin: center bottom;
}

.blue-horse-top {
    left: 10%;
    animation: rockLeft 2.8s ease-in-out infinite;
}

.pink-horse-top {
    right: 60%;
    animation: rockRight 2.8s ease-in-out infinite 0.3s;
    transform: scaleX(-1);
}

.blue-horse-top img,
.pink-horse-top img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes rockLeft {
    0%, 100% {
        transform: rotate(-6deg);
    }
    50% {
        transform: rotate(4deg);
    }
}

@keyframes rockRight {
    0%, 100% {
        transform: rotate(-4deg);
    }
    50% {
        transform: rotate(6deg);
    }
}

.fixed-gif{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
    padding: 50px;
    opacity: 0.8;
}
.fixed-gif img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30% 0;
}


.hero-img{
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    text-align: center;
    width: 100%;
}
.hero-img img{
    width: 70%;
    height: 100%;
    -webkit-filter: drop-shadow(0 8px 16px rgba(92, 77, 66, 0.15));
    filter: drop-shadow(0 8px 16px rgba(92, 77, 66, 0.15));
}
.hero-img::before {
    left: 15%;
}
.hero-img::after {
    right: 15%;
    transform: translateY(-50%) scaleX(-1);
}
.menu{
    padding: 30px 10px 10px;
    position: relative;
    justify-content: center;
}
.menu::after{
    content: '';
    position: absolute;
    bottom: -0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #E8D5C2 50%, transparent 100%);
}
.menu li{
    padding: 10px;
    color:#5C4D42;
    font-size:22px;
    transition: 0.3s ease-in;
    background: #e8d5c291;
    width: fit-content;
}
.menu li:hover{
    background: #E8D5C2;
    color:#5C4D42;
    transition: 0.3s ease-in;
}
.hero-title{
    position: absolute;
    top: 45%;
    right:12%;
    font-size: 80px ;
    font-family: 'MiaMaNueva',sans-serif;
    color: #8B7A6A;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.left-col span{
    font-family: 'MiaMaNueva',sans-serif;
    font-size:45px;
    color: #8B7A6A;
}
.invite-wrapper{
    position: relative;
    padding: 0;
}

.invite-container{
    display: flex;
    flex-direction: column;
}

.invite-left{
    padding: 50px;
    position: relative;
    overflow-y: auto;
}

.invite-right{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px 50px;
    pointer-events: none;
}

.invite-content{
    max-width: 800px;
    margin: 0 auto;
}

.invite-info{
    width: 100%;
    text-align: center;
}

.invite-info h3{
    font-size: 28px;
    padding-bottom: 80px;
    line-height: 1.6;
}

.invite-info span{
    font-family: 'MiaMaNueva',sans-serif;
    font-size: 55px;
    color: #8A9366;
    font-weight: 700;
    display: block;
    text-align: left;
}
.invite-info .hour-wrapper span{
    color: #8A9366;
}

.invite-info h4{
    font-size: 55px;
    text-align: center;
    padding: 20px 0;
    font-family: 'MiaMaNueva', sans-serif;
}

.invite-info p{
    font-size: 55px;
    padding-left: 10px;
    font-family: 'MiaMaNueva', sans-serif;
}
.hour-wrapper{
    align-items: baseline;
}
.hour-wrapper span:last-of-type{
    padding:0 10px;
}
.parents-info{
    text-align: center;
    pointer-events: none;
    max-width: 650px;
    width: 100%;
}

.parents-info span{
    font-size: 22px;
}
.hour-wrapper{
    justify-content: flex-end;
    margin-top: 10px;
}
.hour-wrapper p{
    padding-left: 10px;
}
.parents, .koump{
    padding: 30px 0;
    width: 50%;
}
.parents span:first-of-type, .godm span:first-of-type, .parents h5{
    padding-bottom: 10px;
    text-decoration: underline #8A9366;
    font-size: 28px;
}
.parents span, .godm span{
    font-size: 25px;
}
.more-info , .date-down{
    width: 200px;
    color: #535959;
    background: #53595930;
    padding: 15px 25px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: 0.3s ease;
    cursor: pointer;
    margin-top: 40px;
    text-align: center;
}
.more-info:hover, .date-down:hover{
    background: #535959;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(79, 66, 92, 0.15);
}

.location-wrapper{
    position: relative;
    padding: 100px 100px 0;
}
.location-wrapper h2, .contact-wrapper h2{
    font-size:55px;
    font-family: 'MiaMaNueva',sans-serif;
    text-align: center;
    padding-bottom:20px;
    color: #9e8474;
    font-weight: 700;
    position: relative;
}
.maps-wrapper{
    height: 100%;
    justify-content: flex-start;
    width:calc(100%/2);
}
.maps-wrapper:last-of-type{
    margin-left: auto;
    justify-content: flex-end;
}
.maps-wrapper h5{
    font-size:28px;
    padding-bottom:30px;
    text-align: center;
    font-weight: 600;
}
.church, .after{      
    position: relative;
    width: 100%;
}
.map iframe{
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(79, 66, 92, 0.15);
}
.cntdn-text h2{
    font-size: 55px;
    font-family: 'MiaMaNueva',sans-serif;
    color: #9e8474;
    font-weight: 700;
}
.cntdn-text{
    padding-bottom: 50px;
}
.countdown-wrapper {
    position: relative;
    text-align: center;
    padding: 50px;
}
.cntdn #countdown{
    font-size: 95px;
    font-family: 'MiaMaNueva',sans-serif;
    background: linear-gradient(135deg, #f5ede43b 0%, #535959b3 100%);
    padding: 30px 50px 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(79, 66, 92, 0.1);
    position: relative;
}
.cntdn{
    padding-bottom: 30px;
}
.image-below-countdown{
    width: min(32vw, 350px);
    max-width: 350px;
    position: absolute;
    bottom: 53px;
    left: clamp(8px, 4vw, 8px);
    opacity: 0.7;
    z-index: -1;
    transform: rotate(-20deg);
    pointer-events: none;
}
.image-below-countdown img{
    width: 100%;
    height: auto;
    display: block;
}
.date-down{
    margin: 0 auto;
    width: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.quote-wrapper h2{
    font-size: 27px;
    text-align: center;
    color: #8A9366;
    font-style: italic;
    position: relative;
}
.quote-wrapper h2::before,
.quote-wrapper h2::after{
    content: '❦';
    font-size: 16px;
    color: #8767AA;
    font-style: normal;
    display: inline-block;
    margin: 0 12px;
    vertical-align: middle;
}
.quote-wrapper h2::before{
    transform: rotate(180deg);
}
.quote-wrapper {
    padding: 50px;
    width: 500px;
    background: linear-gradient(135deg, #F5EDE4 0%, #E3D8E9 100%);
    border-left: 4px solid #8767AA;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(79, 66, 92, 0.1);
    margin: 50px auto;
}
.quote-wrapper h3{
    font-family: 'MiaMaNueva', sans-serif;
    text-align: right;
    font-size:21px;
    padding-top:30px;
    color: #5E3888;
}
.rsvp-form{
    padding: 30px 150px;
    position: relative;
}
.rsvp-form input , .rsvp-form select , .rsvp-form textarea{
    background: #53595930;
    outline: none;
    border: 1px solid #535959;
    padding:10px;
    margin: 20px 0 ;
    font-size: 14px;
    font-family: 'STIX Two Text', sans-serif;
    color:#535959;
    border-radius: 6px;
    transition: 0.3s ease;
}
.rsvp-form input:focus, .rsvp-form select:focus, .rsvp-form textarea:focus{
    border-color: #535959;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 212, 232, 0.1);
}
.download-invitation img { 
    width: 20px;
}
.rsvp-wrapper h2{
    font-size: 55px;
    font-family: 'MiaMaNueva',sans-serif;
    color: #9e8474;
    font-weight: 700;
    position: relative;
}
.rsvp-wrapper {  
    position: relative;
    text-align: center;
    padding: 50px 0;
}
.rsvp-wrapper h3, .contact-item{
    font-size: 25px;
}
.contact-info{
    justify-content: center;
    gap: 30px;
}
.contact-item{
    align-items: center;
    padding: 20px;
    background: #53595930;
    border-radius: 10px;
}
.rsvp-form input, .rsvp-form select{
    width:calc((100% - 50px)/2);
}
.rsvp-form select option{
    background:#E3D8E9;
    color:#5E3888;
}
.rsvp-form textarea{
    width:calc(100% - 50px);
    font-family: 'STIX Two Text',sans-serif;
    resize: none;
    min-height: 100px;
}
.send-btn{
    justify-content: center;
    padding-top:20px;
}
.send-btn button{
    outline: none;
    border:none;
    padding:15px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 6px;
    font-family: 'STIX Two Text', sans-serif;
    letter-spacing: 0.5px;
    background: #53595930;
}
.send-btn button:hover{
    background: #535959b3;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(79, 66, 92, 0.15);
}
.download-invitation{
    font-size: 20px;
    margin-top: 30px;
}
.download-invitation a{
    color: #535959;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background:linear-gradient(135deg, #f5ede43b 0%, #53595930 100%);
    box-shadow: 0 4px 12px rgba(92, 77, 66, 0.1);
    transition: 0.3s ease;
}
.download-invitation a:hover{
    background: #53595930;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 77, 66, 0.1);
}
.contact{
    position: relative;
    text-align: center;
}
.contact h2{
    font-size: 50px;
    font-family: 'MiaMaNueva' , sans-serif;
    padding:50px;
    color: #8767AA;
    position: relative;
}
.contact h2::after{
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #B8D4E8 0%, #F4D9DB 100%);
    margin: 15px auto 0;
}

.contact-wrapper{
    justify-content: center;
    padding: 0 0 180px;
    margin: 0 20px;
    border-bottom: 2px solid #E8D5C2;
}
.contact-container{
    position: relative;
    padding: 30px;
    width: 30%;
    background: linear-gradient(135deg, #E8D5C2 0%, #F5EDE4 100%);
    margin:0 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(92, 77, 66, 0.1);
    border-top: 3px solid #B8D4E8;
    transition: 0.3s ease;
}
.contact-container:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(92, 77, 66, 0.15);
}
.contact-container h3{
    font-family: 'MiaMaNueva',sans-serif;
    font-size: 35px;
}
.contact-container span{
    font-family: 'STIX Two Text', sans-serif;
    font-size: 25px;
}
.footer-wrapper{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 16px;
    width: 100%;
}
.rsvp-form input, .rsvp-form select{
    height:39px;
}
.section-separator .star{
    max-width:50px;
}
@media screen and (max-width:1100px){
    .hero-horses-section {
        padding: 0 5%;
    }
    .baby-name {
        font-size: 50px;
    }
    .blue-horse-top,
    .pink-horse-top {
        width: 100px;
        top: 15px;
    }
    .blue-horse-top {
        left: 8%;
    }
    .pink-horse-top {
        right: 58%;
    }
    .rocking-horse-img {
        width: auto;
        bottom: -15%;
        left: 3%;
    }
    .rocking-horse-img img{
        max-width: 350px;
    }
    .fixed-gif{
        width: 45%;
    }
    .hero-title{
        top: 150px;
        left: 0;
        right: 0;
        text-align: center;
    }
    .invite-info h3, .parents span:first-of-type, .godm span:first-of-type,.parents h5{
        font-size: 22px;
    }
    .parents span, .godm span{
        font-size: 22px;
    }
    .invite-info span{
        font-size: 50px;
    }
    .invite-info h4, .invite-info p {
        font-size: 50px;
    }
    .rsvp-form{
        padding:30px 100px;
    }
    .teddy-image-below-countdown img {
        max-width: 350px;
    }
    .rsvp-wrapper h3, .contact-item,.maps-wrapper h5 {
        font-size: 22px;
    }
    .cntdn #countdown {
        font-size: 70px;
    }
    .location-wrapper{
        padding:50px;
    }
    
}
@media screen and (max-width:800px) {
    .hero-section{
        justify-content: center;
        padding: 20px;
    }
}
@media screen and (max-width:768px) {
    .hero-horses-section {
        flex-direction: column;
        justify-content: center;
        padding: 30px 5%;
        gap: 40px;
        height: 100%;
    }
    .hero-section .date {
        font-size: 60px;
    }
    .blue-horse-hero,
    .pink-horse-hero {
        width: 60%;
        max-width: 300px;
        gap:0;
    }
    .pink-horse-hero{
        align-self: flex-end;
        flex-direction: row-reverse;
    }
    .blue-horse-hero{
        align-self: flex-start;
        flex-direction: row;
    }
    .scroll-indicator {
        font-size: 32px;
        bottom: 20px;
    }
    .blue-horse-top {
        width: 70px;
        left: 5%;
        top: 10px;
    }

    .fixed-gif{
        display: none;
    }
    .invite-container{
        flex-direction: column;
    }
    .invite-left{
        width: 100%;
        padding: 50px 0 0;
    }
    .invite-right{
        position: relative;
        width: 100%;
        height: auto;
        padding: 30px;
        pointer-events: auto;
    }
    .parents-info{
        text-align: center;
        pointer-events: auto;
    }
    .countdown-wrapper{
        padding: 0 50px 50px;
    }
    .image-below-countdown {
        width: min(42vw, 220px);
        right: 8px;
        transform: rotate(-14deg);
    }
    .cntdn-text h2 {
        font-size: 40px;
    }
    .location-wrapper h2, .contact-wrapper h2 {
        font-size: 40px;
        padding-top: 30px;
        padding-bottom:0;
    }
    .hero-img img{
        width:75%;
    }
    .hero-title h1{
        font-size:65px;
    }
    .menu li{
        font-size:20px;
    }
    .people{
        flex-direction: column;
    }

    .invite-wrapper, .location-wrapper{
        padding:0;
        height:100%;
        min-height: auto;
    }
    .invite-container{
        min-height: auto;
    }
    .invite{
        flex-direction: column;
        padding: 50px;
    }
    .invite-wrapper h4#inviteTitle{
        font-size: 30px;
    }
    .invite-right .parents-info{
        width:100%;
        text-align: center;
    }
    .invite-info{
        align-self: flex-start;
    }
    .invite-info h3{
        padding-bottom:40px;
    }
    .invite-wrapper h4{
        padding:15px 0;
    }
    .parents, .koump {
        padding: 15px 0;
        width: 100%;
    }
    .parents h4, .koump h4 {
       font-size: 20px;
    }
    .invite{
        font-size: 20px;
    }
    .maps-wrapper{
        flex-direction: column;
        width: 100%;
    }
    .church, .after{
        align-items: center;
        padding: 30px 20px;
    }
    .after{
        flex-direction: row-reverse;
    }
    .cntdn #countdown{
        font-size: 55px;
    }
    .rsvp-form{
        padding:30px 0px;
    }
    .rsvp-wrapper{
        padding:50px;
    }
    .contact h2{
        padding:30px 
    }
    .contact-wrapper{
        flex-direction: column;
        align-items: center;
    }
    .contact-container{
        margin:20px 0;
        width:300px;
    }
    .rocking-horse-img{
        bottom: -5%;
    }
    .rocking-horse-img img {
        max-width: 260px;
    }
    .section-separator img{
        max-width: 500px;
    }
    .bottom-horse-right{
        width: 250px;
        bottom: 20px;
    }
    .top-image-bar{
        top:0;
    }
}

@media screen and (max-width:500px){
    .hero-horses-section {
        padding: 20px 10px;
    }
    .blue-horse-hero,.pink-horse-hero {
        width: 80%;
        max-width: 300px;
    }
    .blue-horse-hero,.pink-horse-hero{
        flex-direction: column;
    }
    .baby-name {
        font-size: 40px;
    }
    .invite-info span {
        font-size: 35px;
    }
    .scroll-indicator {
        font-size: 28px;
        bottom: 15px;
    }

    .fixed-gif{
        display: none;
    }
    .invite-left{
        width: 100%;
    }
    .invite-right{
        position: relative;
        width: 100%;
        padding:0;
    }
    .checkpass{
        width:200px;
    }
    .menu{
        flex-direction: column;
    }
    .menu li{
        border: none;
        padding: 5px 10px;

    }
    .hero-img{
        top: 30%;
        padding: 10px;
    }
    .hero-img img{
        width:100%;
    }
    .hero-title{
        bottom: 20%;
        top: unset;
    }
    .hero-title::after{
        content: "";
        display: block;
        border-left: 2px solid #C9B8A8;
        height: 0px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateY(75px);
        -webkit-animation: width 1s infinite;
        -moz-animation: width 1s infinite;
        -o-animation: width 1s infinite;
        animation: width 1s infinite;
    }
    @keyframes width {
        100%{
            height:100px;
        }
    }
    .invite-wrapper, .location-wrapper{
        padding: 50px 10px;
    }
    .invite-left{
        width:100%;
        padding: 50px 20px;
    }
    .rocking-horse-img{
        position: relative;
        top: 30px;
        bottom: 0;
        left: 0;
    }
    .rocking-horse-img img{
        margin: 0 auto;
    }
    .parents, .godm{
        align-items:center;
        text-align: center;
    }
    .map, .maps-wrapper h5{
        width:100%;
    }
    .maps-wrapper h5{
        padding-bottom: 15px
    }
    .church, .after{
        flex-direction: column;
    }
    .rsvp-wrapper{
        padding:50px 10px;
    }
    .countdown-wrapper{
        padding: 30px 10px 50px;
    }
    .image-below-countdown {
        position: relative;
        top: auto;
        bottom:0;
        right: auto;
        width: min(60vw, 190px);
        margin: 0 auto;
        opacity: 0.6;
        transform: rotate(-8deg);
        z-index: -1;
    }
    .cntdn-text h2 {
        font-size: 30px;
    }
    .cntdn #countdown{
        font-size: 40px;
    }
    .quote-wrapper{
        width:100%;
        padding:10px;
    }
    .invite-info span{
        display: block;
    }
    .rsvp-form input, .rsvp-form select,.rsvp-form textarea{
        width:100%;
        margin: 10px 0;
    }
    .contact-container{
        width:100%;
    }
    .contact h2 {
        padding: 20px 10px 10px;
    }
    .rsvp-wrapper h2 , .contact h2, .location-wrapper h2, .contact-wrapper h2{
        font-size:30px;
        padding-bottom: 20px;
    }
    .contact-info{
        flex-direction: column;
        gap: 20px;
    }
    .contact-container h3{
        font-size: 30px;
    }
    .invite{
        padding: 0 15px;
    }
    .invite-wrapper h4#inviteTitle {
        font-size: 23px;
    }
    .cntdn #countdown{
        padding: 30px 15px 0;
    }
    .contact-container span {
        font-size: 22px;
    }
    .contact-wrapper{
        padding: 0 0 80px;
    }
    .blue-horse-hero img, .pink-horse-hero img{
        max-width: 250px;
    }
    .teddy-image-below-countdown{
        bottom: -150px;
        left:0;
    }
    .teddy-image-below-countdown img {
        max-width: 300px;
    }
    .bottom-image-bar img{
        object-fit: cover;
        height: 150px;
    }
    .section-separator img {
        max-width: 350px;
    }
    .bottom-horse-right {
        width: 150px;
    }
    .invite-info h4, .invite-info p {
        font-size: 35px;
    }
    .hero-section .date {
        font-size: 45px;
    }
    .cntdn-text {
        padding-bottom: 0px;
    }
    .hero-img-ring::before{
        width: calc(100% - 0px);
        height: calc(100% - 5px);
    }
    .location-wrapper h2{
        padding-bottom:0;
    }
    .rsvp-wrapper h3, .contact-item, .maps-wrapper h5 {
        font-size: 20px;
    }
}
.check{
    width:100%;
    height:100%;
    background: linear-gradient(135deg, #FAF7F4 0%, #E8D5C2 100%);
}
.checkpass{
    padding: 30px;
    width:400px;
    height: 100vh;
    margin: 0 auto;
    justify-content: center;
}
.checkpass h1{
    padding: 20px 0;
}
.checkpass input{
    padding: 10px;
    font-size: 18px;
}
.checkpass button{
    width: 200px;
    padding: 10px;
    text-align: center;
    margin: 20px auto;
}
