@font-face {
    font-family: "Champagne & Limousines";
    src: url("fonts/Champagne & Limousines.ttf");
}

@font-face {
    font-family: "Champagne & Limousines";
    src: url("fonts/Champagne & Limousines Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: "Playfair Display";
    src: url("fonts/PlayfairDisplay-Regular.ttf");
}

@font-face {
    font-family: "Playfair Display";
    src: url("fonts/PlayfairDisplay-Bold.ttf");
    font-weight: bold;
}


body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    color: #373463;
    font-family: "Champagne & Limousines", sans-serif;
    font-size: 1.1em;
    background-color: #f4c29f;
    /*background-image: url('flowers.jpg');*/
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
}

.topbar {
    background-color: #f4c29f;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 50px;
    padding: 5px 0;
    z-index: 1000;
}

.topbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
}

.topbar ul li {
    padding: 15px;
}

.topbar ul li a {
    text-decoration: none;
    color: #ed4d2d;
    display: block;
    font-size: 1.1em;
    font-weight: bold;
}

.topbar ul li a:hover {
    text-decoration: underline;
}

.topbar ul li a:hover {
    /*background-color: #575757;*/
}

.burger {
    display: none;
    font-size: 30px;
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

.banner {
    position: relative;
    background-image: url('img/camclem2.jpg');
    background-size: cover;
    background-position: 0 -400px;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Playfair Display", sans-serif;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.banner h1 {
    color: white;
    font-size: 4em;
    padding: 10px;
    margin: 0;
    margin-top: 50px;
    animation: fadeIn 3s;
}

.banner .subtitle {
    color: white;
    font-size: 2.5em;
    margin-top: 10px;
    padding: 10px;
    animation: fadeIn 3s;
}

.banner a {
    color: white;
    text-decoration: none;
    margin-top: 400px;
    font-size: 2em;
    animation: fadeIn 3s;
}

main {
    flex: 1;
    padding: 20px;
    width: 50%;
    margin: auto;
    background-color: #f4c29f;
    min-height: 100%;
}

main h1, main h2, main h3 {
    color: #ed4d2d;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Playfair Display", sans-serif;
}

.section {
    margin-bottom: 50px;
}

iframe {
    width: 640px;
}

@media (max-width: 768px) {
    .banner {
        background-position: unset;
        background-position-x: 50%;
    }

    .banner h1 {
        font-size: 2.5em;
    }

    .banner .subtitle {
        font-size: 1.5em;
    }

    .topbar ul {
        display: none;
        flex-direction: column;
        background-color: #f4c29f;
        width: 100%;
        position: absolute;
        top: 30px;
        left: 0;
    }

    .topbar ul.show {
        display: flex;
    }

    .topbar ul li {
        text-align: center;
        padding: 10px;
    }

    .burger {
        display: block;
    }

    main {
        width: 90%;
    }

    iframe {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 2em;
    }

    .banner .subtitle {
        font-size: 1.3em;
    }
}

.temoins {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.person {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portrait {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
}

.portrait img {
    width: 100%;
    height: auto;
}

.map {
    width: 100%;
}

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

footer {
    height: 20px;
    background-image: url('img/flowers.jpg');
}

.tourisme li {
    margin: 10px 0;
}

.contact {
    display: none;
}
