body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: black;
}

.page {
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: rgb(100, 45, 10);
    position: relative;
}

.navbar a {
    float: left;
    display: block;
    color: white;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 20px;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: white;
    color: rgb(100, 45, 10);
}

.navbar .right {
    float: right;
}

.navbar .menu-icon {
    display: none;
    float: right;
    font-size: 20px;
    color: white;
    cursor: pointer;
    padding: 14px 16px;
}

@media (max-width: 1024px) {
    .navbar .right {
        display: none;    
    }

    .navbar .menu-icon {
        display: block;
    }

    .navbar .right.show {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: absolute;
        top: 59px;
        right: 0;
        width: auto;
        background-color: rgb(100, 45, 10);
        text-align: center;
        z-index: 999999;
        animation: slideDown 0.15s ease-out forwards;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-15%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.main {
    display: flex;
    flex-direction: column;
}

.banner {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.banner-left {
    display: flex;
    flex-direction: column;
    flex: 25%;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.top-left {
    height: 50%;
    position: relative;
    background-color: #d8b192;
    z-index: 1;
}

.top-left h1 {
    display: none;
}

.bottom-left {
    height: 50%;
    position: relative;
    background-color: white;
    z-index: 2;
}

.bottom-left h1 {
    display: none;
}

.photo-container {
    position: absolute;
    margin-top: 23px;
    margin-left: 40px;
    width: 90%;
    height: auto;
    z-index: 3;
    /* border-style: dashed; */
}

.photo {
    padding-top: 7px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeIn 3s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}

.banner-right {
    display: flex;
    flex-direction: column;
    flex: 75%;
    position: relative;
    overflow: hidden;
}

.top {
    height: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 27%;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #d8b192;
}

.new-photo-container {
    display: none;
    margin-top: 15%;
    width: 100%;
    height: auto;
    /* border-style: dashed; */
}

.new-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeIn 2s ease-in-out forwards;
}

.text-container-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-left: 13%;
    /* border-style: dashed; */
}

.text-container-top h1 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: lighter;
    font-size: 350%;
    margin-top: 0;
    margin-bottom: 0;
    color: white;
    object-fit: cover;
}

.text-container-top h2 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-style: italic;
    font-weight: lighter;
    font-size: 180%;
    margin-top: 0;
    margin-bottom: 0;
    color: white;
    object-fit: cover;
}

.logo-container {
    width: 14%;
    height: auto;
    /* border-style: dashed; */
}

.logo {
    padding-top: 7px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeIn 3s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}

@media (max-width: 1366px) {
    .top-left {
        height: 43.5%;
    }

    .top {
        gap: 24%;
    }

    .logo-container {
        margin-right: 15px;
    }
}

@media (max-width: 1024px) {
    .top {
        flex-direction: column;
        justify-content: center;
        align-items: center;    
        gap: 3%;
        padding-bottom: 15%;
    }

    .banner-left {
        display: none;
    }

    .top-left {
        display: none;
    }

    .bottom-left {
        display: none;
    }

    .new-photo-container {
        display: flex;
        width: 40%;
        margin-bottom: 0;
    }

    .text-container-top {
        margin-top: 0;
        margin-left: 6px;
        margin-right: 6px;
    }

    .text-container-top h1 {
        font-size: 250%;
    }

    .text-container-top h2 {
        font-size: 140%;
    }

    .logo-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .top {
        flex-direction: column;
        justify-content: center;
        align-items: center;    
        gap: 3%;
        padding-bottom: 20%;
    }

    .banner-left {
        display: none;
    }

    .top-left {
        display: none;
    }

    .bottom-left {
        display: none;
    }

    .new-photo-container {
        display: flex;
        width: 60%;
        margin-bottom: 0;
    }

    .text-container-top {
        margin-top: 0;
        margin-left: 6px;
        margin-right: 6px;
    }

    .text-container-top h1 {
        font-size: 240%;
    }

    .text-container-top h2 {
        font-size: 135%;
    }

    .logo-container {
        display: none;
    }
}

.bottom {
    height: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding-top: 89px;
    padding-bottom: 89px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.text-container-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-right: 33%;
    /* border-style: dashed; */
}

.text-container-bottom h1 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', monospace;
    font-style: italic;
    font-weight: lighter;
    font-size: 180%;
    margin-top: 0;
    margin-bottom: 0;
    object-fit: cover;
    color: #875c50;
    animation: typewriter 3s steps(50) forwards;
}

.text-container-bottom h2 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', monospace;
    font-weight: lighter;
    font-size: 120%;
    margin-top: 0;
    margin-bottom: 0;
    object-fit: cover;
    color: #666;
    animation: typewriter 6s steps(50) forwards;
}

@media (max-width: 1024px) {
    .bottom {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .text-container-bottom {
        padding-left: 0;
        padding-right: 0;
        margin-left: 33px;
        margin-right: 33px;
    }

    .text-container-bottom h1 {
        font-size: 150%;
    }

    .text-container-bottom h2 {
        font-size: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .bottom {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .text-container-bottom {
        padding-left: 0;
        padding-right: 0;
        margin-left: 33px;
        margin-right: 33px;
    }

    .text-container-bottom h1 {
        font-size: 140%;
    }

    .text-container-bottom h2 {
        font-size: 100%;
        margin-top: 10px;
    }
}

@keyframes typewriter {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.section h3 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 150%;
    margin-bottom: 15px;
    color: #875c50;
}

.section p {
    max-width: 800px;
    margin: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 100%;
    color: #666;
    line-height: 1.8;
}

.section a {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}

.contacts-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1%;
}

.map{
    width: 40%;
    padding-bottom: 25%;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    /* border-style: dashed; */
}

.map iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-container {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #f9f9f9;
    color: #666;
    width: 25%;
    padding: 20px;
    padding-top: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.booking-container h3 {
    font-size: 150%;
    margin-bottom: 15px;
    color: #875c50;
}

label {
    display: block;
    margin-bottom: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 2px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.hidden {
  display: none;
}

@media (max-width: 1024px) {
    .contacts-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0%;
    }

    .map {
        width: 90%;
        padding-bottom: 75%;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .booking-container {
        width: 82%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .contacts-container {
        flex-direction: column;
        gap: 0%;
    }

    .map {
        width: 90%;
        padding-bottom: 75%;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .booking-container {
        width: 82%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.faq-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 20px;
    margin-bottom: 20px;
    /* border-style: dashed; */
}

@media (max-width: 1024px) {
    .faq-container {
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .faq-container {
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.faq-item {
    background-color: #f9f9f9;
    color: #666;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.faq-question {
    background-color: #f9f9f9;
    color: #875c50;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 100%;
    border: none;
    padding: 15px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-weight: bold;
}

.faq-answer {
    background-color: white;
    color: #666;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    padding: 15px;
    display: none;
}

.faq-answer.show {
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
    z-index: 1000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-banner p {
    padding-left: 10px;
    padding-right: 20px;
}

#js_widget {
    background-color: #ffffff;
    color: initial;
    font-family: initial;
}
  
#js_widget a {
    all: revert;
    color: #149c97;
}
  
#js_widget a:hover {
    color: #0f7f7a;
}
  
#js_widget div {
    background-color: transparent;
}

.footer {
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 100%;
    background-color: #d8b192;
    padding: 20px;
    color: white;
}

.footer p {
    margin: 1px 0;
}