/* CSS Reset and Normalize */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    box-sizing: border-box;
    font-size: 16px;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #F4F1EC 0%, #E1B87E 100%);
    color: #3C2213;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: #823D0F;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #B76307;
    outline: none;
}
ul, ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
li + li {
    margin-top: 8px;
}

/* Typography */
@font-face {
    font-family: 'Fraktur';
    src: local('Fraktur'), local('Old English'), local('Blackletter');
    font-weight: 700;
}

h1, h2, h3, h4 {
    font-family: 'Fraktur', 'Roboto', Arial, Helvetica, sans-serif;
    color: #823D0F;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 14px;
}
h1 {
    font-size: 2.75rem;
    line-height: 1.1;
    margin-bottom: 16px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}
h3 {
    font-size: 1.25rem;
    color: #A65B16;
    margin-bottom: 8px;
}
h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.subheadline {
    font-size: 1.25rem;
    color: #865017;
    margin-bottom: 24px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
p {
    font-size: 1rem;
    color: #3C2213;
    margin-bottom: 16px;
}
strong, b {
    font-weight: 700;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
section {
    margin-bottom: 60px;
    padding: 40px 0 0 0;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}
.text-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Feature Grid & Cards */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}
.feature-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(182, 142, 104, 0.08);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    min-width: 250px;
    flex: 1 0 280px;
    min-height: 220px;
    transition: box-shadow .25s;
    margin-bottom: 20px;
    position: relative;
}
.feature-item:hover {
    box-shadow: 0 8px 28px 0 rgba(182, 142, 104, 0.17);
    z-index: 2;
}

/* Main Hero Section */
.hero {
    background: linear-gradient(90deg, #E1B87E 0%, #F4F1EC 100%);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 6px 24px 0 rgba(113,61,15,0.10);
    padding-top: 48px;
    padding-bottom: 56px;
    margin-bottom: 60px;
}
.hero .content-wrapper {
    text-align: center;
    align-items: center;
    gap: 12px;
}
.hero h1 {
    color: #823D0F;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

/* Testimonials */
.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 12px;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 24px 20px 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px 0 rgba(182, 142, 104, 0.11);
    flex: 1 1 320px;
    margin-bottom: 20px;
    min-width: 260px;
    max-width: 380px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
    box-shadow: 0 6px 32px 0 rgba(182, 142, 104, 0.23);
    transform: translateY(-2px) scale(1.025);
}
.testimonial-card blockquote {
    color: #3C2213;
    font-size: 1.09rem;
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
}
.testimonial-info {
    display: flex;
    gap: 8px;
    font-size: 0.98rem;
    color: #823D0F;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
}
.testimonial-info .location {
    color: #A65B16;
}

/* Footer */
footer {
    background: linear-gradient(90deg, #E1B87E 0%, #F4F1EC 90%);
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -2px 24px 0 rgba(113,61,15,0.05);
    margin-top: 48px;
    padding: 36px 0 20px 0;
    font-size: 0.98rem;
    color: #3C2213;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}
.footer-nav a {
    color: #823D0F;
    font-weight: 500;
    font-size: 1rem;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.footer-contact img {
    width: 18px;
    vertical-align: middle;
    margin-right: 6px;
}
.brand-signature {
    margin-top: 16px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.97rem;
    color: #A65B16;
}

/* Buttons */
.btn-primary,
.btn-primary:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 36px;
    background: linear-gradient(90deg, #823D0F 60%, #E1B87E 100%);
    border: none;
    border-radius: 30px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 1.07rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 16px 0 rgba(182, 142, 104, 0.10);
    cursor: pointer;
    transition: background 0.25s, transform 0.15s, box-shadow 0.18s;
    text-decoration: none;
    margin-top: 10px;
}
.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(90deg, #A65B16 40%, #E1B87E 100%);
    color: #fff;
    transform: translateY(-1px) scale(1.037);
    box-shadow: 0 6px 20px 0 rgba(182, 142, 104, 0.18);
}

/* Navigation (Desktop) */
header {
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(113,61,15,0.08);
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    z-index: 30;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px 18px 20px;
}
.logo {
    display: flex;
    align-items: center;
    margin-right: 24px;
}
.logo img {
    height: 48px;
    width: auto;
}
nav {
    display: flex;
    align-items: center;
    gap: 18px;
}
nav a {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: #823D0F;
    font-size: 1.07rem;
    padding: 8px 14px;
    border-radius: 20px;
    transition: background 0.16s, color 0.18s;
    font-weight: 500;
    margin-right: 6px;
}
nav a:hover, nav a:focus, .footer-nav a:hover {
    background: #fbeee3;
    color: #A65B16;
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.1rem;
    color: #823D0F;
    cursor: pointer;
    z-index: 120;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}
/* MOBILE NAVIGATION */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(120deg, #E1B87E 45%, #823D0F 100%);
    box-shadow: 0 2px 24px 0 rgba(182, 142, 104, 0.24);
    z-index: 1800;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 24px 24px 24px 34px;
    transform: translateX(-100vw);
    transition: transform 0.35s cubic-bezier(0.63, 0.04, 0.09, 1.02);
    opacity: 0;
    pointer-events: none;
}
.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2.3rem;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 26px;
    right: 28px;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    margin-top: 32px;
}
.mobile-nav a {
    color: #fff;
    font-size: 1.3rem;
    padding: 12px 8px 12px 0;
    border-radius: 0 18px 18px 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: 500;
    transition: background 0.23s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: rgba(250,240,225,0.30);
    color: #E1B87E;
}

@media (max-width: 1023px) {
    header .container {
        flex-wrap: wrap;
        gap: 12px;
    }
    nav {
        gap: 10px;
    }
    .btn-primary {
        padding: 11px 26px;
        font-size: 1rem;
    }
}
@media (max-width: 820px) {
    nav {
      display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .footer-nav {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 0.97rem;
    }
}
@media (max-width: 540px) {
    .container {
        max-width: 100vw;
        padding: 0 8px;
    }
    .hero {
        padding-top: 16px;
        padding-bottom: 28px;
    }
    section {
        padding: 26px 0 0 0;
        margin-bottom: 44px;
    }
    .feature-grid {
        gap: 18px;
    }
    .testimonial-list {
        gap: 9px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 9px;
    }
    .content-wrapper, .text-section {
        gap: 12px;
    }
    .feature-grid {
        flex-direction: column;
        gap: 18px;
    }
    .testimonial-list {
        flex-direction: column;
        gap: 18px;
    }
    .footer-contact {
        font-size: 0.98rem;
        gap: 3px;
    }
    .hero .content-wrapper {
        text-align: left;
        align-items: flex-start;
    }
}

/* Content/Utility Flex Patterns */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 14px 0 rgba(182, 142, 104, 0.10);
    padding: 20px 18px;
    transition: box-shadow .2s;
}
.card:hover {
    box-shadow: 0 10px 40px 0 rgba(182, 142, 104, 0.17);
    z-index: 3;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

/* Menu Block */
.menu-block {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 14px 0 rgba(182,142,104, 0.09);
    padding: 28px 24px 18px 24px;
    margin: 18px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.menu-block h3 {
    font-size: 1.13rem;
    color: #A65B16;
    margin-bottom: 6px;
}
.menu-block ul li {
    margin-bottom: 6px;
}

/* Highlights */
.highlight {
    color: #823D0F;
    background: #fde7cb;
    border-radius: 7px;
    padding: 2px 7px;
}

/* Reservation Policy Notice */
.reservation-policy {
    color: #823D0F;
    font-size: 1rem;
    font-style: italic;
    padding: 8px 0;
}

/* General Table and Form Styles */
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 24px;
}
th, td {
    border: 1px solid #E1B87E;
    padding: 12px 10px;
}
th {
    background: #F4F1EC;
    color: #823D0F;
    font-weight: 700;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    color: #3C2213;
    box-shadow: 0 -2px 24px 0 rgba(182,142,104,0.18);
    z-index: 3000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    gap: 18px;
    font-size: 1rem;
    transition: transform 0.37s;
}
.cookie-banner.hide {
    transform: translateY(200%);
    pointer-events: none;
    opacity: 0;
}
.cookie-banner .cookie-btns {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
    align-items: center;
}
.cookie-banner button {
    padding: 8px 20px;
    border-radius: 24px;
    background: #E1B87E;
    color: #823D0F;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.01rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin: 0 2px;
    transition: background 0.18s, color 0.14s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
    background: #823D0F;
    color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 3050;
    background: rgba(50,27,14,0.54);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
    pointer-events: none;
    opacity: 0;
}
.cookie-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.cookie-modal-content {
    background: #fff;
    min-width: 280px;
    max-width: 430px;
    border-radius: 18px;
    box-shadow: 0 8px 40px 0 rgba(182,142,104,0.23);
    padding: 36px 28px 24px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: fadeInUp 0.4s;
}
@keyframes fadeInUp {
    from { transform: translateY(32px); opacity: 0; } 
    to { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
    color: #823D0F;
    margin-bottom: 8px;
    font-size: 1.13rem;
    font-family: 'Fraktur', "Roboto", Arial, Helvetica, sans-serif;
}
.cookie-modal-content .cookie-category {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.cookie-modal-content .cookie-category label {
    flex: 1 0 50px;
    color: #3C2213;
    font-size: 1.04rem;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-modal-content .cookie-toggle {
    width: 38px;
    height: 22px;
    border-radius: 16px;
    background: #E1B87E;
    position: relative;
    outline: none;
    border: none;
    appearance: none;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-modal-content .cookie-toggle:checked {
    background: #823D0F;
}
.cookie-modal-content .cookie-toggle:before {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    transition: left 0.2s;
}
.cookie-modal-content .cookie-toggle:checked:before {
    left: 19px;
}
.cookie-modal-content .cookie-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    justify-content: flex-end;
}
.cookie-modal-content button {
    padding: 8px 22px;
    border-radius: 20px;
    border: none;
    font-size: 1.02rem;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.16s, color 0.18s;
    background: #E1B87E;
    color: #823D0F;
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
    background: #823D0F;
    color: #fff;
}
.cookie-modal-close {
    position: absolute;
    right: 22px;
    top: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #823D0F;
    cursor: pointer;
}

@media (max-width: 580px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 14px 10px;
        font-size: 0.99rem;
    }
    .cookie-modal-content {
        padding: 26px 9px 17px 9px;
        min-width: 0;
        width: 97vw;
        max-width: 97vw;
    }
}

/* Accessibility: Focus Outline for Keyboard Nav */
a:focus, button:focus, .btn-primary:focus {
    outline: 2px solid #A65B16;
    outline-offset: 1px;
}

/* Utility */
.hide { display: none !important; }
.visible { display: block !important; }

/* Easing Class for JS Animation (for mobile menu/cookie) */
.ease {
    transition: all 0.28s cubic-bezier(0.63, 0.04, 0.09, 1.02);
}

/* Misc Spacing: always at least 20px between flex items */
.card-container > * + *, .feature-grid > * + *, .testimonial-list > * + *, .content-grid > * + *, .footer-nav > * + *, .menu-block > * + * {
    margin-left: 0;
    margin-top: 0;
}

/* Remove absolute positioning from content cards (abs. only decorative allowed) */
/* No additional rules needed; all cards are already relative/positioned per layout */

/**** End of Main Styles ****/
