
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://use.typekit.net/rax0hzx.css');
body {
    margin: 0;
    overflow-x: hidden;
    font-family: "proxima-nova", sans-serif !important;
    background-color: #501C49;
    text-rendering: optimizeLegibility;
}

h2 ,h3 ,h4, h5, h6 {
    font-family: "proxima-nova", sans-serif !important;
}

.resort-section {
    padding: 50px 0;
    position: relative;
    background-color: #501C49;
}

.resort-leaf {
    position: absolute;
    max-width: 18%;
    z-index: 5;
    top: -50px;
    right: 0;
}

.leaf-1 {
    position: absolute;
    max-width: 11%;
    z-index: 5;
    top: 22%;
}

.leaf-2 {
    position: absolute;
    max-width: 17%;
    z-index: 5;
    top: 50%;
}

.parent-div {
    position: relative;
    background-color: #501C49;
}

.parent-div .leaf-2 {
    top: 35%;
    z-index: -1;
}

.leaf-3 {
    position: absolute;
    max-width: 17%;
    right: 0;
    top: -5%;
}

.resort-container {
    max-width: 940px;
    margin: auto;
    padding: 0 20px;
}

.resort-title {
    position: relative;
    font-family: "adage-script-jf", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    margin-bottom: 20px;
    color: #ffffff;
    z-index: 5;
}

.resort-text {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
}

.resort-gallery {
    display: grid;
    grid-template-columns: repeat(4, 22%);
    justify-content: center;
    align-content: end;
    grid-gap: 30px;
}

.gallery-section {
    background-color: #501C49;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item.item1 {
    grid-column: 1 / 5;
}

.gallery-item.item2 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

.gallery-item.item3 {
    grid-column: 3 / 5;
    grid-row: 2 / 4;
}

.gallery-item.item4 {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
}

.gallery-item.item5 {
    grid-column: 3 / 5;
    grid-row: 5 / 4;
}

.activities-container {
    font-size: 20px;
    font-family: 'proxima-nova' ,sans-serif;
}

.activity-title {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #ffffff;
}

.activities-list {
    list-style: disc;
    padding-left: 25px;
    margin-left: 0;
}

.activity-item {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #ffffff;
}

.activities-conclusion {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 560px) {
    .resort-gallery {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .resort-title {
        font-size: 60px;
    }
}

/*Header*/
.main-header {
    z-index: 0;
    color: white;
    display: flex;
    padding-top:50px;
    padding-left:80px;
    position: relative;
    align-items: center;
    background: #501C49;
    justify-content: space-between;
}

.main-header .menu {
    width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.main-header .logo {
    width: 200px;
    margin-right: 10px;
}

.main-header .logo span {
    font-weight: bold;
    font-size: 1.2em;
}

.main-header nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;;
}

.main-header nav a {
    font-size: 17px;
    color: white;
    text-decoration: none;
    margin-left: 20px;
    padding: 10px 15px;
}

.main-header nav a.rsvp {
    color: #eec75b;
}

@media (max-width: 768px) {
    .main-header {
        padding: 30px 15px;
    }

    .main-header .logo {
        width: 150px;
    }
}

/*Modal Header*/
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    border-radius: 8px;
    text-align: center;
    min-width: 15rem;
}

.modal-content #magic_user_email{
    margin-left: 0px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.modal-content form p label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

.modal-content form input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 15px;
    outline: none;
    transition: border 0.3s ease;
}

.modal-content form input[type="submit"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #501C49;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-content form input[type="submit"]:hover {
    background-color: #44123c;
}

.modal-content form p {
    margin: 0;
    text-align: left;
}

/*Modal Header*/


/*Header*/

/*Welcome section*/
.welcome-section {
    position: relative;
    background-color: #501C49;
}

.top-video {
    position: absolute;
    top: -215px;
    right: 0;
    height: 70%;
    color: #501C49;
    z-index: 0;
}

.welcome-content {
    padding: 0 20px;
    position: relative;
    max-width: 940px;
    margin: 0 auto;
    z-index: 10;
    color: #fff;
}

.welcome-title {
    font-family: "adage-script-jf", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 125px;
    margin: 0;
    padding-top: 35px;
}

.welcome-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.first-part {
    margin-bottom: 15px;
}

.home-page-button {
    color: #fff;
    position: relative;
    z-index: 1;
    font-size: 20px;
    cursor: pointer;
    padding: 30px 60px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #fff;
    background-color: transparent;
    font-family: "proxima-nova", sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.home-page-button:hover {
    background-color: #fff;
    color: #501C49;
}

.home-page-button:focus {
    background-color: transparent;
}

.leaf-video-wrapper {
    width: 100%;
    margin-top: 70px;
    margin-bottom: -5px;
    bottom: 0px;
    box-shadow: inset 0px -125px 0px 0 #ffffff;
}

@media (max-width: 700px) {
    .leaf-video-wrapper {
        box-shadow: inset 0px -45px 0px 0 #ffffff;
    }
}

@media (max-width: 968px) {
    .top-video {
        display: none;
    }
}

@media (max-width: 600px) {

    .welcome-title {
        font-size: 65px;
    }

    .welcome-text {
        font-size: 18px;
    }

}
/*Welcome section*/


/*Message Section*/
.message-section {
    position: relative;
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    padding-bottom: 0;
}

.message-content {
    max-width: 900px;
    display: flex;
    margin: 0 auto;
}

.message {
    line-height: 34px;
    font-weight: bold;
    text-align: start;
    font-size: 23px;
    color: #DCA20E;
    margin-bottom: 50px;
    max-width: 400px;
}

.message-from-whom {
    font-weight: 700;
    text-align: start;
    font-size: 20px;
    color: #4c4a4a;
    margin-bottom: 30px;
}

.message-content img {
    height: auto;
    max-width:52% ;
    display: block;
    margin: 0 auto;
}

.connection-leaf {
    left: 0;
    z-index: 1;
    width: 100%;
    height: 225px;
    bottom: -115px;
    mask-size: contain;
    position: absolute;
    background: #501C49;
    mask-repeat: no-repeat;
}


@media (max-width: 960px) {
    .connection-leaf {
        height: 180px;
    }
}

@media (max-width: 580px) {
    .connection-leaf {
        height: 150px;
    }
}


@media (max-width: 768px) {
    .message-content {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .message {
        font-size: 20px;
    }

    .message-from-whom {
        font-size: 20px;
    }

    .message-content img {
        max-width: 300px;
    }
}

/*Message Section*/

/*Slick slider*/
.slick-slide {
    height: unset !important;
}

.gallery-slider {
    width: 100%;
    overflow: hidden;
    padding: 30px 22px;
}

.slide {
    display: inline-block;
    margin-right: 20px;
    max-height: 500px;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    border: 1px solid #d9b451;
    border-radius: 25px;
}

@media (max-width: 1200px) {
    .slide {
        margin-right: 15px;
    }
}

@media (max-width: 900px) {
    .slide {
        margin-right: 10px;
    }
}

@media (max-width: 600px) {
    .slide {
        margin-right: 5px;
    }
}
/*Slick slider*/

/*Advantages and Suggestions section*/

.info-boxes-section {
    padding-top: 25%;
    background-color: #ffffff;
}

.info-boxes-container {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    color: #501C49;
    font-family: "adage-script-jf", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #501C49;
    font-size: 73px;
    margin-top: 0;
    font-family: "adage-script-jf", cursive;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.section-description p {
    margin-bottom: 10px;
}

.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.info-box {
    border: 1px solid #d9b451;
    background-color: #501C49;
    padding: 50px 35px;
    border-radius: 25px;
}

.info-box-icon {
    margin-bottom: 10px;
}

.info-box-icon img {
    max-width: 50px;
    height: auto;
}

.info-box-title {
    color: #ffffff;
    font-family: "adage-script-jf", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.info-box-text {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.6;
}

.info-box:last-child .info-box-title {
    width: 50%;
}


@media (max-width: 768px) {
    .info-box:last-child .info-box-title {
        width: 100%;
    }

    .info-boxes-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-title {
        font-size: 80px;
    }
    .section-subtitle {
        font-size: 63px;
    }
}
/*Advantages and Suggestions section*/


/*Feature Section*/
.featured-speakers {
    max-width: 940px;
    text-align: center;
    margin: auto;
    padding: 0 20px 100px 20px;
}

.feature_leaf_image {
    max-width: 230px;
}

.feature_title {
    color: #ffffff;
    font-family: "adage-script-jf", cursive;
    font-weight: 400;
    text-align: left;
    font-style: normal;
    font-size: 95px;
    margin-bottom: 30px;
    padding-top: 0.83em;
    margin-top: 0;
}

.feature_leaf-name {
    margin: 0;
    font-size: 20px;
    color: #e3e3e3;
    text-align: center;
}

.feature_text {
    font-size: 20px;
    margin-bottom: 50px;
    text-align: left;
    color: #ffffff;
}

.speaker {
    display: flex;
    gap: 40px;
    color: white;
    background-color: #231a22;
    border-radius: 25px;
    border: 1px solid #d9b451;
    padding-left: 35px;
}

.speakers_container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.speaker-image {
    width: 77%;
    display: flex;
    align-items: end;
}

.speaker-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 0 25px 25px 0;
}

.speaker-details {
    width: 100%;
    text-align: left;
}

.speaker-name {
    font-size: 32px;
    margin-bottom: 10px;
    margin-top: 65px;
    color: #d9b451;
    font-weight: normal;
}

.speaker-details p {
    font-size: 21px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 60px;
}

.speakers_container .extra_speakers {
    display: flex;
    gap: 40px;
}

.speakers_container .extra_speakers .speaker{
    flex-direction: column;
    width: 50%;
    padding: 40px 25px;
}

.speakers_container .extra_speakers .speaker-details p {
    margin: 0;
    font-size: 20px;
}

.speakers_container .extra_speakers .speaker-image {
    order: -1;
    margin: 0 auto;
    width: 100%;
}

.speakers_container .extra_speakers .speaker-name {
    margin-top: 0;
}

.leaf-container-2 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.leaf-container {
    width: 31%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.leaf-container:nth-child(odd) .leaf {
    transform: rotate(290deg);
}

.names_and_leafs {
    gap: 30px;
    display: flex;
    margin-top: 70px;
    flex-wrap: wrap;
    margin-bottom:  50px;
    justify-content: center;
}

.name_lastname {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    font-weight: normal;
    color: #e2b846;
}


@media (max-width: 860px) {
    .speaker {
        flex-direction: column;
        align-items: end;
        text-align: center;
        padding: 0 0 0 25px;
        gap: 0;
    }

    .speaker-details {
        padding-right: 25px;
    }

    .speaker-details p {
        margin-bottom: 30px;
    }

    .speaker-image img {
        height: 40%;
    }

    .speaker-image {
        margin: 0;
        width: 77%;
    }

    .names_and_leafs {
        flex-wrap: wrap;
    }

    .speakers_container .extra_speakers {
        flex-direction: column;
    }

    .speakers_container .extra_speakers .speaker {
        width: 100%;
    }

    .speakers_container .extra_speakers .speaker .speaker-image {
        margin-bottom: 35px;
    }

    .leaf-container {
        flex-basis: calc(100% - 10px);
        box-sizing: border-box;
        margin-bottom: 30px;
    }
}
/*Feature Section*/



/*FORM*/

.guests_form-video {
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 0;
}

#guests_form_container {
    background-color: #ffffff;
    padding: 20px;
    padding-bottom: 70px;
}

#guests_form_container h1:nth-child(2) {
    text-align: center;
    margin-top:0;
    margin-bottom: 50px;
}

#guests_form_container button {
    font-family: "proxima-nova", sans-serif;
}

#guests_form  {
    margin: auto;
    padding: 50px;
    display: flex;
    margin-top: 37%;
    max-width: 900px;
    position: relative;
    border-radius: 5px;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 0 9px #888888;
}

.guests_form_desc {
    text-align: center;
}

.guests_form_description {
    font-family: "proxima-nova", sans-serif;
    font-size: 20px;
}

.rsvp_details {
    font-family: "adage-script-jf", cursive;
}

#guests_form label[for="guests_count"] {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: -2px;
    color: #000;
}

#guests_form .guest_field .the_guest {
    font-weight: 600;
    color: #000;
}

.form-background {
    width: 100%;
    position: absolute;
    z-index: 0;
}

#guests_form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#guests_form input[type="text"],
#guests_form input[type="email"],
#guests_form select,
#guests_form textarea {
    width: calc(100%);
    padding: 8px;
    margin: 13px 0;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

#guests_form textarea {
    height: 100px;
}

#guests_form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24h-24z' fill='none'/></svg>") no-repeat right 8px center;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

#guests_form h2 {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

#guests_form .guest_field {
    padding: 0;
    margin: 20px 0;
    border: none;
    border-radius: 0;
    border-top: 1px solid #cccccc;
    background-color: transparent;
}

#guests_form .checkbox_blocks {
    gap: 22px;
    display: flex;
    flex-wrap: wrap;
    margin: 18px 0px;
}

#guests_form .checkbox_blocks div {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    margin-right: 15px;
}

#guests_form input[type="radio"] {
    margin-right: 9px;
    cursor: pointer;
}

#guests_form button[type="submit"] {
    color: #501C49;
    font-size:20px;
    cursor: pointer;
    align-self: center;
    padding: 30px 60px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #501C49;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#guests_form button[type="submit"]:hover {
    color: #ffffff;
    background-color: #501C49;
}

#guests_form .d_none {
    display: none;
}

#guests_form label {
    font-weight: normal;
    font-size: 20px;
    cursor: pointer;
    color: #4e4c4c;
}

#guests_form h2 {
    font-size: 25px;
    color: #4e4c4c;
    border: none;
    padding: 25px 0 10px 0;
}

#guests_form input[type="text"],
#guests_form input[type="email"],
#guests_form textarea {
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #ffffff;
}

#guests_form_container label[for=""],
#guests_form_container label[for="rsvp_1"],
#guests_form_container label[for="staying_1"],
#guests_form_container label[for="special_needs_1"],
#guests_form_container label[for="comments_and_questions_1"],
#guests_form_container .staying_1,
#guests_form_container #special_needs_1,
#guests_form_container .checkbox_blocks,
#guests_form_container #comments_and_questions_1 {
    display: none;
}

.guest-data-container {
    gap: 15px 20px;
    display: flex;
    flex-wrap: wrap;
}

.guest_input_data {
    width: 48%;
}

#guests_form  .guest_input_data input[type="text"] ,#guests_form  .guest_input_data input[type="email"] {
    margin: 0;
}

@media (max-width: 580px) {
    .guest_input_data {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #guests_form {
        padding: 20px;
    }
    .feature_title {
        font-size: 60px;
    }
}

/*FORM*/


/*Footer*/
footer {
    position: relative;
    color: white;
    text-align: center;
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-bar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #a5a5a5;
    background-color: #521d49 !important;
}

.top-bar a:hover {
    color: #ffffff !important;
}

.copyright {
    padding: 20px 100px;
    font-size: 17px;
}

.footer-links {
    display: flex;
    gap: 100px;
    padding: 35px 100px;
    border-right: 1px solid #a5a5a5;

}

.footer-links a {
    color: white;
    font-size: 15px;
    white-space: nowrap;
    text-decoration: none;
}

.bottom-bar {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0px;
    width: 100%;
}

.bottom-bar .logo {
    margin: 20px 0px;
    max-width: 250px;
}

.green-hat-web-link {
    text-decoration: none;
}

@media (max-width: 1342px) {
    .footer-links {
        border-right: none;
        padding:0;
        height: 60px;
        align-items: center;
    }

    .copyright {
        border-top: 1px solid #a5a5a5;
    }
}

/*Footer*/