@font-face {
    font-family: ContentFont;
    src: local('ContentFont'), url("./petunia-sans.ttf") format("opentype");
}

@font-face {
    font-family: HeaderFont;
    src: local('HeaderFont'), url("./RoughNotesSample.otf") format("opentype");    
}

.dodo {
    position: absolute;
    top: 0;
    width: 200px;
    animation: animate 5s linear forwards;
    transform-origin: top;
    opacity: 0.5;
}

@keyframes animate {
    0% {
        -webkit-transform: translateY(0vh) scale(1) rotate(0deg);
        transform: translateY(0vh) scale(1) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(calc(100vh - 100%)) scale(1) rotate(260deg);
        transform: translateY(calc(100vh - 100%)) scale(1) rotate(260deg);
    }
    90% {
        -webkit-transform: translateY(calc(100vh - 100%)) scale(1) rotate(360deg);
        transform: translateY(calc(100vh - 100%)) scale(1) rotate(360deg);
        transform-origin: bottom;
    }
    100% {
        -webkit-transform: translateY(calc(100vh - 100%)) scale(1) rotate(360deg);
        transform: translateY(calc(100vh - 100%)) scale(1) rotate(360deg);
        transform-origin: bottom;
        opacity: 0;
    }
}

body {
    background-color: #d1e4ff;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: black;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: white;
}

.spinner-border {
    color: #d1e4ff;
    width: 180px;
    height: 180px;
}

.wedding-date {
    font-family: 'ContentFont', serif;
    color: white;
    font-size: 4rem !important;
    text-shadow: #a8b7cc 1px 0 5px;
}

h1 {
    padding-top: 30px;
    font-family: 'HeaderFont', serif !important;
    font-size: 5.5rem;
    color: black;
    width: 100%;
    text-align: center;
    /* background-color: #d1e4ff; */
    /* text-shadow: #a8b7cc 1px 0 10px; */
    cursor: default;
}

#dashboard-menu {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    height: 100%;
    background-color: #d1e4ff;
    width: 100%;
    font-family: 'ContentFont', serif;
    text-transform: uppercase;
    /* text-shadow: #a8b7cc 3px 0 3px; */
    color: black;
    padding-bottom: 50px;
}

.dashboard-spacer {
    width: 12%;
}

.icon-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 12%;
    padding-right: 12%;
}

.dashboard-icon {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    color: white;
    transform: scale(2);
}

.menu-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transform: scale(1);
    transition-duration: 500ms;
    transition-property: transform;
    cursor: pointer;
    width: 25%;
}

.menu-item-text {
    margin-top: -15px;
    margin-bottom: 10px;
    font-size: 3rem;
    font-weight: 500;
}

.img {
    width: 40%;
    border: 1px solid #a8b7cc;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    padding: 10px;
    margin: 30px;
    background-color: #a8b7cc;
    align-items: center;
}

@media only screen and (min-width: 1280px) {
    .dashboard-icon {
        transform: scale(2.5);
    }
}

@media only screen and (max-width: 860px) {
    .menu-item {
        width: 50%;
    }

    .dashboard-icon {
        transform: scale(2);
    }
}

@media only screen and (max-width: 540px) {
    .dashboard-icon {
        transform: scale(2);
    }
}

@media (orientation: portrait) {

    body {
        overflow-y: scroll;
    }

    .wedding-date {
        font-size: 6.5rem !important;
    }

    .menu-item {
        width: 50%;
    }

    .menu-item-text {
        font-size: 5.5rem !important;
    }

    .dashboard-icon {
        transform: scale(3);
    }

    .icon-container {
        padding-left: 6%;
        padding-right: 6%;
    }

    span {
        font-size: 4rem !important;
    }

    .menetrend-item-timeline {
        padding-top: 35px !important;
    }

    h4 {
        font-size: 5rem !important;
    }

    h2 {
        font-size: 6rem !important;
    }

    .menetrend-time, .menetrend-title, .menetrend-date {
        font-size: 4.5rem !important;
    }

    .carte-type-header {
        font-size: 7rem !important;
    }
    
    .carte-type-item-title {
        font-size: 4.7rem !important;
    }
    
    .carte-type-item-description {
        font-size: 3.5rem !important;
    }

    .gift-content {
        font-size: 4.5rem !important;
    }
}

@media (orientation: landscape) {
    .menu-item:hover {
        transform: scale(1.2);
        transition-duration: 500ms;
        transition-property: transform;
    }
}

.content {
    background-color: white;
    font-family: 'ContentFont', serif;
    text-transform: uppercase;
    height: 100%;
    width: 100%;
    position: absolute;
    display: none;
}

h4 {
    padding-top: 10px;
}

/* HEADER */

.content-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background-color: #a8b7cc;
    padding: 5px 20px 5px 5px;
    color: white;
}

.header-title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.header-title-text {
    font-size: 3rem;
}

h2 {
    padding-left: 20px;
    padding-top: 10px;
}

.header-icon {
    transform: scale(2.5);
    padding: 10px;
}

.close-icon {
    cursor: pointer;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-right: 15px;
    padding: 5px;
}

/* MENETREND */

hr {
    color: black;
    height: 1px;
    width: 100%;
    margin-left: 2%;
}

#menetrend {
    /* opacity: 0; */
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* transition: opacity 1s ease-out; */
}

.menetrend-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #a8b7cc;
    font-size: 2.7rem;
    width: 100%;
    padding: 50px 0 0 70px;
    background-color: white;
}

ul.progress-bar {
    height: 500px;
    list-style: none;
    margin: 33px;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

ul.progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    background: #a8b7cc;
    width: 5px;
    height: 100vh;
}

ul.progress-bar li {
    background: #a8b7cc;
    border-radius: 100px;
    width: 15px;
    height: 15px;
    z-index: 1;
    position: relative;
    font-size: 1.5rem;
    padding-bottom: 10px;
}

ul.progress-bar li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5px;
    background: transparent;
    width: 5px;
    height: 100vh;
}

.menetrend-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    color: black;
    min-width: 10%;
}

.menetrend-date {
    font-size: 4.5rem;
}

.menetrend-item-timeline > img {
    padding-top: 5px;
    padding-bottom: 20px;
    scale: 1.5;
}

.menetrend-item-timeline {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 15px;
}

.vr {
    width: 3px;
    color: #a8b7cc;
    opacity: 0.6;
    margin-right: 25px;
    align-self: center;
    margin-bottom: 25px;
}

.menetrend-icon {
    padding-right: 25px;
}

.menetrend-list-icon {
    padding-right: 13px;
    scale: 2;
}

.menetrend-time {
    padding-bottom: 10px;
    padding-right: 30px;
}

.menetrend-title {
    padding-bottom: 10px;
    padding-right: 30px;
}

/* DESTINATION */

#destination {
    flex-direction: column;
    display: none;
}

.destination-content {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    background-color: white;
}

.destination-content > h2 {
    font-size: 4rem;
}

.destination-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.destination-info-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.destination-google-maps {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
}

/* CARTE */

#carte {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.carte-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
    background-color: white;
}

.carte-header {
    font-size: 5rem;
    width: 100%;
    text-align: center;
}

.carte-drinks {
    width: 100%;
    display: flex;
    flex-direction: row;
    font-size: 2rem;
    flex-wrap: wrap;
}

.drink-type {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    width: 25%;
    padding: 10px;
    border-bottom: none;
}

.drink {
    padding: 10px;
}

.carte-type {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    width: 25%;
    border-bottom: none;
}

@media (orientation: portrait) {
    .carte-type {
        border-bottom: 1px solid #a8b7cc;
        width: 100%;
    }

    .drink-type {
        width: 100%;
        border-bottom: 1px solid #a8b7cc;
    }

    .carte-drinks {
        flex-wrap: wrap;
    }
}

.carte-type-header {
    font-size: 3rem;
    color: #d1e4ff;
    text-shadow: darkgray 1px 0 1px;
    text-align: left;
}

.carte-type-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.carte-type-item-title {
    font-size: 2rem;
}

.carte-type-item-description {
    font-size: 1.7rem;
    color: #a8b7cc;
    margin-top: -20px;
}

/* GIFT */

#gift {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
}

.gift-content {
    text-align: center;
    width: 100%;
    font-size: 2.7rem;
    padding: 50px;
    background-color: white;
}

/* TRANSFER */

#transfer {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
}

.transfer-content {
    text-align: center;
    width: 100%;
    font-size: 2.7rem;
    padding: 50px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (orientation: portrait) {
    .transfer-content {
        font-size: 4.5rem !important;
    }
}

/* HOTEL */

#hotel {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
}

.hotel-content {
    text-align: center;
    width: 100%;
    font-size: 2.7rem;
    padding: 50px;
    background-color: white;
}

@media (orientation: portrait) {
    .hotel-content, .transfer-content, .gift-content {
        font-size: 4.5rem !important;
    }
}

.hotel-images {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px;
}

.hotel-images > img {
    width: 30%;
}

.hotel-info {
    width: 45%;
    margin-top: 50px;
    text-align: center;
}

.hotel-form-transfer {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 30px;
}

.hotel-transfer-info {
    width: 45%;
    margin-top: 50px;
}

@media only screen and (max-width: 1280px) {
    .hotel-info {
        width: 100%;
        margin-top: 0;
    }

    .hotel-transfer-info {
        width: 100%;
        margin-top: 0;
    }

    .hotel-form-transfer {
        flex-wrap: wrap;
    }
}

/* GFORM */

#gform {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
}

.gform-content {
    text-align: center;
    width: 100%;
    font-size: 2.7rem;
    padding: 50px;
    background-color: white;
}

/* GALLERY */

#gallery {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
}

.gallery-content {
    text-align: center;
    width: 100%;
    font-size: 2.7rem;
    padding: 50px;
    background-color: white;
}

/* FOOTER */

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 50px;
}

.footer-google-maps {
    width: 100%;
}