body
{
    margin: 0;
    padding: 0;
    background-color: #E8E8E8;
}

body, html {
    height: 100%;
}

p
{
    font-family: "Saira Condensed", sans-serif;
}

header
{
    display: flex;
    background-color: #F0BB33;
    padding: 10px;
}

header .horizontal
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-grow: 1;
}

header p, header a
{
    color: white;
    font-size: 20pt;
    font-family: "Saira Condensed", sans-serif;
    font-weight: 600;
    font-style: normal;
    margin-left: 50px;
    text-decoration: none;
}

.noMargin
{
    margin: 0px;
}

#Selected
{
    text-decoration: underline;
}

.bouton
{
    background-color: #CFA22F;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 5px;
}

header img
{
    padding-left: 10px;
}

.banner
{
    background-image: url("gear-bg.png");

    height: 50%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner img
{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
}


.banner-room
{
    background-image: url("ClockImage.jpg");

    height: 50%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner-room img
{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
}

.banner-secret
{
    background-image: url("typewriter.jpg");

    height: 50%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner-secret img
{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
}


h1
{
    font-family: magicRetro;
    color: #F0BB33;
    font-size: 70pt;
    text-align: center;
}

h2
{
    font-family: "Saira Condensed", sans-serif;
    font-weight: bold;
}

h2::before {
    content: "";
    display: inline-block;
    width: 6px; /* Width of the yellow line */
    height: 25px; /* Height of the yellow line */
    background-color: #f4ae3a; /* Yellow color */
    margin-right: 10px; /* Space between the line and text */
    margin-bottom: -5px;
}


.centered
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    display: flex;
    background-color: white;
    justify-content: flex-end;
    width: 700px;
    height: 80%;
    /*border-radius: 10px;*/
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.image-container {
    width: 400px;
    margin-right: -240px;
    z-index: 0;
}

.image-container img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.content {
    padding: 20px;
    width: 60%;
}

h3 {
    color: #222;
    margin-bottom: 10px;
}

.details {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 0 0;
}

.icon-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 14px;
}

.icon-text p
{
    font-family: "Saira Condensed", sans-serif;
    font-weight: 700;
}

.icon-text img {
    margin-right: 5px;
    padding-bottom: 5px;
}

.buttons {
    margin-top: 15px;
}

button {
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.reserve {
    background-color: #f4ae3a;
    color: white;
}

.learn-more {
    background-color: #fff;
    color: #f4ae3a;
    border: 2px solid #f4ae3a;
}



footer
{
    background-color: #F0BB33;
    padding: 20px;
    margin-top: 100px;
    padding-bottom: 0px;
}


.horizontal
{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.horizontal p
{
    padding-left: 10px;
    color: white;
    font-family: "Saira Condensed", sans-serif;
    font-size: 12pt;
}

footer .centered
{
    flex-direction: column;
    margin-top: 50px;
}

#roomDescriptionPhone
{
    display: none;
}

.synopsis
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.synopsis p
{
    width: 60%;
    font-size: 20pt;
}

.centeredList
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#BigButon
{
    font-size: 20pt;
    font-weight: bold;
}

footer .horizontal img
{
    width: 24px;
}



@font-face {
    font-family: magicRetro;
    src: url(MagicRetro.ttf);
}

#BoutonReservation
{
    display: none;
}


@media only screen and (max-width: 768px) {

    header, header .horizontal
    {
        flex-direction: column;
        align-items: center;
    }

    header img
    {
        margin-bottom: 50px;
        width: 100%;
        margin-left: -10px;
    }

    header a
    {
        margin-bottom: 20px;
    }

    header p, header a
    {
        margin-left: 0px;
    }


    .banner img
    {
        width: 350px;
    }

    .banner-room img
    {
        width: 350px;
    }

    .banner-secret img
    {
        width: 350px;
    }

    .card
    {
        display: none;
    }

    .centered
    {
        flex-direction: column;
    }

    .centeredList h2, .centeredList h3
    {
        padding-left: 10px;
    }

    .image-container {
        width: 80%;
        margin-right: 0px;
        z-index: 0;
    }

    #roomDescriptionPhone
    {
        display: block;
        padding-left: 10px;
    }

    .details {
        justify-content: space-around;
    }

    .buttons
    {
        display: flex;
        justify-content: center;
    }

    #FooterLogo
    {
        width: 250px;
    }

    h1
    {
        font-size: 40pt;
    }

    .synopsis p
    {
        display: flex;
        justify-content: center;
        font-size: 18pt;
    }

    #iframe
    {
        display: none;
    }
    #BoutonReservation
    {
        display: block;
    }

}