@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");
}

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    background-color: rgb(231, 219, 179);
}

.header {
    width: 100vw;
    height: 5%;
    display: inline-flex;
    align-items: center;
    margin-top: 2em;
    justify-content: space-around;
    justify-items: right;
    z-index: 1;
    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: fixed;
    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;
}

#burger {
    display: none;
}

#booknow {
    height: 28px;
}

.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: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;
}

li a {
    color: inherit;
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    cursor: pointer;
    font-family: "helvetica";
    font-weight: bold;
}

#lang {
    font-size: 2em;
    color: rgb(0, 0, 0);
    font-family: "helvetica";
    text-align: center;
}

main {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 1em;
      }
      .contact-container {
        display: flex;
        gap: 2em;
        margin-top: 120px;
        background: rgba(255,255,255,0.7);
        border-radius: 18px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        padding: 2em 1.5em;
      }
      .contact-left, .contact-right {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        gap: 1.2em;
        justify-content: flex-start;
      }
      .contact-title {
        font-family: "beaufort-title", serif;
        font-size: 2em;
        margin-bottom: 0.5em;
        color: #222;
        letter-spacing: 1px;
      }
      .contact-info, .contact-location {
        display: flex;
        flex-direction: column;
        gap: 1em;
      }
      .contact-item {
        display: flex;
        align-items: center;
        gap: 0.8em;
        font-size: 1.1em;
      }
      .contact-item a {
        color: #222;
        text-decoration: none;
        font-family: "roboto", sans-serif;
        font-weight: bold;
        transition: color 0.2s;
        word-break: break-all;
      }
      .contact-item a:hover, .contact-item a:focus {
        color: #8d7b4c;
      }
      .contact-item i {
        color: #8d7b4c;
        font-size: 1.2em;
        min-width: 22px;
        text-align: center;
      }
      .map-img {
        width: 100%;
        max-width: 340px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        margin-top: 1em;
      }
      h1 {
        font-size: 2.1em;
        color: #222;
        font-family: "beaufort-title", 'Roboto', serif;
        text-align: center;
        margin-top: 110px;
        margin-bottom: 30px;
        letter-spacing: 1px;
        line-height: 1.2;
      }
      span {
        font-family: "roboto", sans-serif;
        font-weight: bold;
        color: #8d7b4c;
      }

@media screen and (max-width: 900px) {
    .nav, #booknow, #lang, #logo {
        display: none;
    }
    #logo_mobile, #burger {
        height: 57px;
        display: block;
    }
    #burger{
        height: 28px;
        margin-right: 10px;
        margin-top: 20px;
    }
    .contact-container {
          flex-direction: column;
          gap: 1.5em;
          margin-top: 90px;
          padding: 1.2em 0.5em;
        }
        .contact-left, .contact-right {
          gap: 1em;
        }
        .map-img {
          max-width: 100%;
        }
    
}
@media (max-width: 600px) {
        h1 {
          font-size: 1.3em;
          margin-top: 80px;
          margin-bottom: 18px;
        }
      }