/* Login Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    max-width: 400px;
    /* Adjust the maximum width as needed */
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.modal h2 {
    margin-top: 0;
    font-family: 'Antipasto Pro';
    letter-spacing: 5px;
    color: #333;
    /* Adjust text color for elegance */
}

.input-container {
    margin: 20px 0;
    text-align: left;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Antipasto Pro Medium';
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    /* Slightly larger border radius for a softer look */
}

button#submit-code {
    background-color: #557564;
    /* A green color for an elegant touch */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Antipasto Pro';
}

button#submit-code:hover {
    background-color: #69917b;
    /* Darker green color on hover */
}

.fadeIn {
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    animation-name: slideInRight;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.slideInLeft {
    animation-name: slideInLeft;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.fadeOut {
    animation-name: fadeOut;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOutDown {
    animation-name: fadeOutDown;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutUp {
    animation-name: fadeOutUp;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}

@font-face {
    font-family: 'Antipasto Pro';
    src: url('https://weddingsconnect.co.za/font/AntipastoPro-Light.woff2') format('woff2');
    font-weight: normal;
    /* Specify font weight if applicable */
    font-style: normal;
    /* Specify font style if applicable */
}

@font-face {
    font-family: 'Antipasto Pro Medium';
    src: url('https://weddingsconnect.co.za/font/AntipastoPro-Medium.woff2') format('woff2');
    font-weight: normal;
    /* Specify font weight if applicable */
    font-style: normal;
    /* Specify font style if applicable */
}

@font-face {
    font-family: "Bodoni MT";
    src: url("https://db.onlinewebfonts.com/t/037a670cefc97958beb036dab0f6e254.eot");
    src: url("https://db.onlinewebfonts.com/t/037a670cefc97958beb036dab0f6e254.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/037a670cefc97958beb036dab0f6e254.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/037a670cefc97958beb036dab0f6e254.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/037a670cefc97958beb036dab0f6e254.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/037a670cefc97958beb036dab0f6e254.svg#Bodoni MT")format("svg");
}

.respond-section-landscape {
    display: flex;
    justify-content: center;
    align-items: center;
}

#respondLandscape {
    padding: 20px 100px;
    font-size: 18px;
    background-color: #557564;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 30px;
}

/*body {
  background-color: #f6f6f9ff;
}*/

/*Initial and custom properties of save the date elements*/

#saveTheDateText {
    visibility: hidden;
}

#location {
    visibility: hidden;
}

#invitation {
    visibility: hidden;
}

#leftImage {
    visibility: hidden;
}

#centerImage {
    visibility: hidden;
}

#rightImage {
    visibility: hidden;
}

#theDescription {
    visibility: hidden;
}

#stdDay {
    visibility: hidden;
}

#stdMonth {
    visibility: hidden;
}

#stdYear {
    visibility: hidden;
}

#stdDevide {
    visibility: hidden;
}

#respondLandscape {
    visibility: hidden;
}

#imageSlider {
    visibility: hidden;
}


/* Response RSVP Modal styles */
#rsvpModal {
    display: none;
    position: fixed;
    z-index: 998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.Responsemodal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 390px;
    height: 360px;
    border-radius: 10px;
    text-align: center;
}

#rsvpModal-heading {
    height: 60px;
    text-align: center;
    font: normal normal normal 25px/30px Bodoni MT;
    letter-spacing: 6.25px;
    color: #637C6A;
    text-transform: uppercase;
    opacity: 1;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.toggle-group input[type="radio"] {
    display: none;
}

.toggle-group label {
    border-style: solid;
    border-width: 1px;
    border-radius: 33px;
    padding: 15px 20px;
    cursor: pointer;
    background: #A0B5A8 0% 0% no-repeat padding-box;
    color: #FCFFF5;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3.6px;
    margin-bottom: 10px;
}

.toggle-group input[type="radio"]:checked+label {
    background-color: #466251;
    color: #FCFFF5;
}

.toggle-group label:hover {
    background-color: #FCFFF5;
    color: #466251;
}

#rsvpForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#rsvpEmailField {
    width: 320px;
    height: 34px;
    background: #FCFFF5 0% 0% no-repeat padding-box;
    border: 1px solid #707070;
    border-radius: 33px;
    font: normal normal medium 12px/30px Antipasto Pro;
    letter-spacing: 3.6px;
    color: #525252;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 15px;
    opacity: 1;
}

#rsvpEmailField::placeholder {
    font: normal normal medium 12px/30px Antipasto Pro;
    letter-spacing: 3.6px;
    color: #525252;
    text-transform: uppercase;
    text-align: center;
    opacity: 1;
}

#rsvpSubmitButton {
    width: 240px;
    height: 38px;
    background: #466251 0% 0% no-repeat padding-box;
    border: 0px solid #466251;
    border-radius: 33px;
    opacity: 1;
    cursor: pointer;
}

#rsvpButtonText {
    text-align: center;
    font: normal normal medium 12px/30px Antipasto Pro;
    letter-spacing: 3.6px;
    color: #FCFFF5;
    text-transform: uppercase;
    opacity: 1;
}

#confirmationMessage {
    display: none;
    /* UI Properties */
    text-align: center;
    font: normal normal normal 14px/15px Antipasto Pro;
    letter-spacing: 0px;
    color: #1A1818;
    margin-top: 10px;
    opacity: 1;
}