body{
    background-color: rgb(231, 219, 179);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

.room {
    position: relative;
    top: 10%;
    margin-bottom: 10%;
}

.room h2 {
    justify-self: center;
    font-family: "beaufort-title";
    font-size: 3em;
}

.gallery-container {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 90%;
    margin: 0 auto;
    }

.gallery-image {
    width: 600px;         /* Set your desired width */
    height: 400px;        /* Set your desired height */
    max-width: 90vw;      /* Responsive: don't exceed viewport */
    max-height: 60vh;
    object-fit: cover;    /* Crop to fill, or use 'contain' for full image */
    border-radius: 12px;  /* Optional: rounded corners */
    box-shadow: 0 2px 8px rgba(0,0,0,0.12); /* Optional: subtle shadow */
}

.gallery-arrow {
    align-self: center;
    border: none;
    padding: 20px;
    background: none;
    font-family: "impact";
    font-weight: bold;
    color: white;
    font-size: 2.5em;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .left-arrow {
        position: relative;
        left: 5%;
    }

    .right-arrow{
        position: relative;
        right: 5%;
    }

    .gallery-arrow:hover {
        background-color: rgba(0, 0, 0, 0.7);
}

p {
    font-size: 2em;
    color: rgb(0, 0, 0);
    font-family: "calibri";
    text-align: center;
}

.header {
    width: 100vw;
    height: 5%;
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    justify-content: space-around;
    justify-items: right;
    z-index: 1;
    position: fixed;
    animation: fade-down 0.5s;
}

#booknow {
    height: 28px;
}

#logo {
    min-width: none;
    max-width: 80%;
    height: 63px;
    position: absolute;
    left:20px;
    cursor: pointer;
    shape-rendering: crispEdges;
}

#logo_mobile {
    display: none;
    min-width: none;
    max-width: 80%;
    position: absolute;
    left:20px;
    shape-rendering: crispEdges;
}

#menuside {
    height: inherit;
    display:inline-flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    justify-content: space-evenly;
    position: fixed;
    right: 20px;
}

#menuside p, img {
    font-weight: bold;
    margin: 5px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: rgb(0, 0, 0);
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 40%;
    font-family: "helvetica";
    font-weight: bold;
    text-decoration: none;
}

ul li {
    text-decoration: none;
    color: inherit;
    font-size: 1.2em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: "helvetica";
    font-weight: bold;
}

ul li:link, li:visited  {
    color: inherit;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1.2em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: "helvetica";
    font-weight: bold;
}

a {
    color: inherit;
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    cursor: pointer;
    font-family: "helvetica";
    font-weight: bold;
}

#burger{
    display: none;
}

#lang {
    font-size: 2em;
    color: rgb(0, 0, 0);
    font-family: "intervogue";
    text-align: center;
}

@font-face {
    font-family: "beaufort-title";
    src: url("fonts/Beafort/Beaufort-Italic.ttf");
}
@font-face {
    font-family: "intervogue";
    src: url("fonts/Intervogue/intervoguealt-med.otf");
}
@font-face {
    font-family: "smalltext";
    src: url("fonts/Intervogue/regoblique.otf");
}

@keyframes fade-down {
    0%{
        opacity: 0;
        transform: translateY(-30px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fade-up {
    0%{
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100%{
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

#room-container {
    position: relative;
    top: 100px;
    padding-bottom: 100px;
}

@media screen and (max-width: 900px) {
    ul, #booknow, #lang, #logo {
        display: none;
    }
    #logo_mobile, #burger {
        height: 57px;
        display: block;
    }
    #burger{
        height: 28px;
        margin-right: 10px;
        margin-top: 20px;
    }
    p{
        font-size: 14pt;
        margin-left: 5%;
        margin-right: 5%;
    }
    .left-arrow{
        left: 20%;
    }
    .right-arrow{
        right: 20%;
    }
}