@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");
}
@font-face {
    font-family: "smallertext";
    src: url("fonts/Intervogue/intervoguealt-light.otf");
}

.header {
    width: 100vw;
    height: 5%;
    display: inline-flex;
    align-items: center;
    top: 2em;
    justify-content: space-around;
    justify-items: right;
    z-index: 1;
    position: fixed;
    animation: fade-down 0.5s;
}

#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;
}

#booknow {
    height: 28px;
}

#lang {
    font-size: 2em;
    color: rgb(0, 0, 0);
    font-family: "intervogue";
    text-align: center;
}

#burger {
    display: none;
}

.nav {
    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;
}

.nav li {
    text-decoration: none;
    color: inherit;
    font-size: 1.2em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: "helvetica";
    font-weight: bold;
}

.nav li a {
    color: inherit;
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    cursor: pointer;
    font-family: "helvetica";
    font-weight: bold;
}



/* Reset some defaults */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and base styles */
body {
    
    background-color: rgb(231, 219, 179);
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    line-height: 1.6;
    font-size: 18px;
    padding: 0;
    margin: 0;
}

/* Header styles */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 5vw 16px 5vw;
}

/* Main content */
header {
    max-width: 800px;
    margin: 140px auto 0 auto;
    padding: 0 5vw;
}

section {
    max-width: 800px;
    margin: 40px auto 0 auto;
    padding: 0 5vw;
}

header h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
    border-left: 4px solid #cfb97d;
    padding-left: 12px;
}

section h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 18px 0 8px 0;
    color: #444;
}

section ul {
    margin: 10px 0 20px 24px;
    padding-left: 0;
}

section ul li {
    margin-bottom: 8px;
    list-style: disc inside;
}

section p {
    margin-bottom: 16px;
}

strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Responsive design */
@media (max-width: 900px) {
    
    #logo, #booknow, #lang {
        display: none;
    }
    #logo_mobile, #burger {
        height: 57px;
        display: block;
    }
    #burger{
        height: 28px;
        margin-right: 10px;
        margin-top: 20px;
    }
    .nav {
        display: none;
    }
     section {
        padding: 0 4vw;
        margin-top: 28px;
    }
    body {
        font-size: 16px;
        margin: 0 5vw;
    }
    header h1 {
        font-size: 1.2rem;
    }
    section h2 {
        font-size: 1rem;
    }
    .header {
        padding: 10px 2vw 6px 2vw;
    }
    section {
        padding: 0 2vw;
    }
    .nav {
        display: none;
    }
}