/* Colors */
:root {
    --dark-blue: #003153;
    --light-blue: #0B99E5;
    --grey: #595959;
}

/* Fonts */
@font-face {
    font-family: "Louis-Georges-Cafe";
    src: url(../fonts/louis-george-cafe/Louis\ George\ Cafe.ttf);
    font-weight: normal;
}

@font-face {
    font-family: "Louis-Georges-Cafe-Bold";
    src: url(../fonts/louis-george-cafe/Louis\ George\ Cafe\ Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: "Louis-Georges-Cafe-Light";
    src: url(../fonts/louis-george-cafe/Louis\ George\ Cafe\ Light.ttf);
    font-weight: lighter;
}

@font-face {
    font-family: "Louis-Georges-Cafe-Italic";
    src: url(../fonts/louis-george-cafe/Louis\ George\ Cafe\ Italic.ttf);
    font-weight: lighter;
}

@font-face {
    font-family: "Figtree";
    src: url(../fonts/Figtree/Figtree-VariableFont_wght.ttf);
}

/* general elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--dark-blue);
    font-family: Louis-Georges-Cafe, sans-serif;
    font-size: 1.2rem;
}

section {
    width: 100vw;
    overflow: hidden;
}

h2 {
    text-transform: uppercase;
    font-family: Figtree, Arial;
    font-size: 3.6rem;
    padding-bottom: .5rem;
}

h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

p {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

ul {
    list-style-type: none;
}

li {
    margin-bottom: .5rem;
    margin-top: .5rem;
}

/* elements */

.hidden {
    display: none;
}

.padding-top-5 {
    padding-top: 2.5rem;
}

.padding-bottom-5 {
    padding-bottom: 2.5rem;
}

.scroll-animation {
    opacity: 0;
    transition: 500ms;
}

.scroll-animation-long {
    transition: 1000ms;
}

.appear-from-left {
    transform: translateX(-100px);
}

.appear-from-right {
    transform: translateX(100px);
}

.appear-from-bottom {
    transform: translateY(75px);
}

.scroll-animation.show {
    transform: translateX(0);
    transform: translateY(0);
    opacity: 1;
}

.wrapper {
    margin: 0;
    padding: 2rem;
    height: 100%;
}

.full-height {
    height: 100%;
}

.half-height {
    height: 50%;
}

.full-width {
    width: 100%;
}

.y-center {
    display: flex;
    align-items: center;
}

.justify-center {
    text-align: center;
}

.x-center {
    margin: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.blur {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: white;
    opacity: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    justify-content: space-evenly;
}

.nav-links li {
    display: inline-block;
}

.nav-link {
    text-decoration: none;
    color: var(--grey);
}

.nav-current {
    color: var(--light-blue) !important;
}

a.button {
    text-decoration: none;
    display: inline;
    color: var(--dark-blue);
    padding: .7rem;
    border: .2rem solid var(--dark-blue);
    border-radius: .5rem;
    font-family: Louis-Georges-Cafe-Bold;
    font-size: 1.7rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

a.button:focus, a.button:hover {
    background-color: var(--dark-blue);
    color: white;
}

.dark {
    background-color: var(--dark-blue);
    color: white;
}

.quotation {
    text-transform: uppercase;
    font-family: Figtree;
    font-size: 3rem;
    padding: .5rem;
}

.quote {
    font-size: 1.5rem;
}

.quote-author {
    text-transform: uppercase;
    font-family: Figtree;
    font-weight: bold;
    font-size: 1.7rem;
    opacity: .3;
}

.carousel {
    position: relative;
    margin: 1rem 0;
}

.carousel-scroller {
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    height: 60vh;
    -webkit-overflow-scrolling: touch;
}

.carousel-item {
    scroll-snap-align: center;
    flex:none;
    position: relative;
}

.carousel .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-position: 50% 50%;
    z-index: 1;
    color: white;
    font-size: 5rem;
}

.carousel .carousel-button.previous {
    left: 1rem;
}

.carousel .carousel-button.next {
    right: 1rem;
}

.contact-form {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.contact-form input, .contact-form textarea {
    margin-top: .5rem;
    margin-bottom: .5rem;
    background-color: rgba(00, 49, 83, .2);
    border: none;
    padding: 1rem;
    border-radius: .5rem;
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-family: Louis-Georges-Cafe-Italic;
}

.contact-form input::placeholder {
    color: var(--dark-blue);
    opacity: 1;
}

.contact-form .button {
    color: var(--dark-blue);
    background-color: white;
    padding: .7rem;
    border: .2rem solid var(--dark-blue);
    border-radius: .5rem;
    font-family: Louis-Georges-Cafe-Bold;
    font-size: 1.7rem;
    padding-left: 3rem;
    padding-right: 3rem;
    margin: 1rem 0rem;
}

.contact-form .button:focus, .contact-form .button:hover {
    color: white;
    background-color: var(--dark-blue);
}

.footer-icons {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding-bottom: 3rem;
}

.footer-icons a{
    text-decoration: none;
    color: white;
}

/* Specific sections */
#intro {
    height: 90vh;
}

#menu {
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    padding-top: 1vh;
    padding-bottom: 1vh;
    background-color: white;
    opacity: 0;
}

#progression-bar {
    margin: 0;
    height: 4px;
    background-color: var(--light-blue);
    border: none;
    transform: translateY(1vh);
    width: 0;
}

#intro {
    font-family: Louis-Georges-Cafe-Light;
    font-weight: 100;
}

#intro h1 {
    font-size: 3.5rem;
    text-align: center;
}

.footer-section {
    width: 100%;
    position: relative;
    scroll-snap-align: start;
}

/* responsive */

@media screen and (min-width: 1200px) {
    .wrapper {
        padding-left: 25vw;
        padding-right: 25vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition-delay: 0ms !important;
    }
}