/* ===============================
   CSS Reset & Base Styles
   =============================== */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1.5;
    background: #fafbfe;
    color: #192440;
    font-family: 'Roboto', Arial, sans-serif;
    min-height: 100vh;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

/* Fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

img {
    max-width: 100%;
    display: block;
}

ul, ol {
    margin-left: 32px;
    margin-bottom: 16px;
    padding-left: 0;
}
li {
    margin-bottom: 8px;
    list-style-position: outside;
}
strong {
    font-weight: 700;
}
a {
    color: #f3a712;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #23395d;
    text-decoration: underline;
}

input, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border-radius: 6px;
}

/* ===============================
   Layout Containers & Spacing
   =============================== */
.container {
    width: 100%;
    max-width: 1220px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 3px 24px 0 rgba(35, 57, 93, 0.06);
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(35,57,93,0.08);
    margin-bottom: 20px;
    position: relative;
    padding: 28px 24px;
}
.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;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(35,57,93,0.10);
    margin-bottom: 20px;
    max-width: 420px;
    min-width: 0;
    border-left: 6px solid #f3a712;
    word-break: break-word;
}
.testimonial-card p {
    color: #1d2339;
    font-size: 18px;
    font-weight: 500;
}
.testimonial-author span {
    color: #23395d;
    font-weight: 700;
    font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-author {
    font-size: 15px;
    color: #555;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    flex: 1 1 220px;
    background: #fafbfe;
    border-radius: 14px;
    box-shadow: 0 1px 6px 0 rgba(35,57,93,0.08);
    padding: 22px 18px 20px 18px;
    min-width: 220px;
    max-width: 320px;
    margin-bottom: 20px;
}
.feature-item img {
    width: 38px;
    height: 38px;
}
.feature-item h3 {
    font-size: 20px;
    color: #23395d;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
}
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.menu-dish-list {
    margin-left: 12px;
}
.menu-categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
    margin-top: 4px;
}
.menu-categories ul li {
    background: #f3a712;
    color: #23395d;
    padding: 6px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
}
.menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 12px;
    margin-bottom: 20px;
}
.menu-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 12px 0 rgba(35,57,93,0.06);
    padding: 22px 20px 20px 20px;
    flex: 1 1 220px;
    max-width: 320px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 12px;
}
.menu-item h4 {
    font-size: 18px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: #23395d;
}
.menu-item p {
    font-size: 16px;
}
.statistics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 20px 0 24px 0;
}
.statistics-grid > div {
    background: #f3a712;
    color: #23395d;
    border-radius: 10px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 22px;
    padding: 18px 24px;
    box-shadow: 0 2px 8px 0 rgba(35,57,93,0.10);
    flex: 1 1 210px;
    text-align: center;
    margin-bottom: 12px;
}
.star-ratings span {
    color: #f3a712;
    font-size: 28px;
    letter-spacing: 2px;
    display: block;
}
.faq-list > h2 {
    margin-top: 24px;
    color: #23395d;
    font-size: 22px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
}
.faq-list h3 {
    color: #f3a712;
    font-size: 18px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    margin-top: 6px;
    margin-bottom: 2px;
}
.faq-list div {
    margin-bottom: 16px;
}
.faq-search {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-search input[type='search'] {
    border: 1.5px solid #23395d;
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 7px;
    transition: box-shadow 0.18s;
    outline: none;
}
.faq-search input[type='search']:focus {
    box-shadow: 0 0 0 2px #f3a712;
}

/***** Contact Details *****/
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 16px;
    margin-top: 10px;
}
.contact-details img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 9px;
    position: relative;
    top: 2px;
}

/***** Ratings Summary *****/
.ratings-summary {
    font-size: 16px;
    color: #23395d;
    font-family: 'Montserrat',Arial,sans-serif;
    font-weight: 600;
    background: #fffbe8;
    border-radius: 12px;
    padding: 10px 20px;
    margin: 18px 0 0 0;
    display: inline-block;
}

/***** Button Styles *****/
.btn-primary {
    background: #f3a712;
    color: #23395d;
    border: none;
    padding: 14px 36px;
    border-radius: 32px;
    font-size: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    box-shadow: 0 2px 10px 0 rgba(243,167,18,0.17);
    cursor: pointer;
    transition: background 0.18s, transform 0.13s, box-shadow 0.14s;
}
.btn-primary:hover, .btn-primary:focus {
    background: #23395d;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 2px 16px 0 rgba(35,57,93,0.13);
}
.btn-secondary {
    background: #23395d;
    color: #f3a712;
    border: none;
    padding: 12px 26px;
    border-radius: 26px;
    font-size: 17px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 7px 0 rgba(35,57,93,0.14);
    transition: background 0.18s, color 0.18s, transform 0.13s;
}
.btn-secondary:hover, .btn-secondary:focus {
    background: #f3a712;
    color: #23395d;
    transform: translateY(-2px) scale(1.04);
}
.menu-item .btn-secondary {
    margin-top: 10px;
    font-size: 15px;
    padding: 10px 18px;
}

/***** General Typography & Headings *****/
h1, h2, h3, h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    color: #23395d;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    line-height: 1.16;
}
h1 {
    font-size: 42px;
    color: #23395d;
    margin-top: 0px;
    font-weight: 900;
}
h2 {
    font-size: 32px;
    font-weight: 800;
    margin-top: 20px;
}
h3 {
    font-size: 22px;
    font-weight: 700;
}
h4 {
    font-size: 18px;
    font-weight: 700;
}
p {
    font-size: 17px;
    color: #192440;
    font-family: 'Roboto', Arial, sans-serif;
    margin-bottom: 8px;
}

/***** Header & Nav *****/
header {
    background: #23395d;
    color: #fff;
    width: 100%;
    box-shadow: 0 2px 11px 0 rgba(35,57,93,0.13);
    position: sticky;
    top: 0;
    z-index: 100;
}
header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 14px 20px;
}
header a img {
    height: 44px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-family: 'Montserrat',Arial,sans-serif;
    font-size: 16px;
}
.main-nav a {
    color: #fff;
    padding: 4px 10px;
    border-radius: 7px;
    font-weight: 600;
    transition: background 0.14s, color 0.14s;
    position: relative;
}
.main-nav a.btn-primary {
    margin-left: 22px;
    background: #f3a712;
    color: #23395d;
    font-size: 17px;
    border-radius: 22px;
    padding: 9px 22px;
    box-shadow: 0 2px 7px 0 rgba(243,167,18,0.18);
}
.main-nav a:hover, .main-nav a:focus {
    background: #fff;
    color: #23395d;
}
.main-nav a.btn-primary:hover, .main-nav a.btn-primary:focus {
    background: #23395d;
    color: #f3a712;
    box-shadow: 0 2px 14px 0 rgba(35,57,93,0.14);
}
.mobile-menu-toggle {
    display: none;
    font-size: 2.4rem;
    background: none;
    border: none;
    color: #f3a712;
    cursor: pointer;
    z-index: 110;
    padding: 0 10px;
    transition: color 0.15s, transform 0.17s;
}
.mobile-menu-toggle:focus {
    color: #fff;
}

/***** Footer *****/
footer {
    background: #23395d;
    color: #fff;
    width: 100%;
    margin-top: 60px;
    font-family: 'Roboto',Arial,sans-serif;
    font-size: 15px;
    letter-spacing: 0.01em;
}
footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 24px 20px;
}
.footer-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-menu a {
    color: #f3a712;
    font-weight: 600;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 15px;
    transition: color 0.15s;
    border-radius: 6px;
    padding: 4px 8px;
}
.footer-menu a:hover, .footer-menu a:focus {
    background: #f3a712;
    color: #23395d;
}
.footer-contact > div {
    margin-bottom: 1px;
    opacity: 0.87;
}
footer a img {
    height: 43px;
    margin-right: 20px;
}

/* ===============================
   Mobile Navigation Menu
   =============================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(35,57,93,0.99);
    box-shadow: 0 8px 32px 0 rgba(35,57,93,0.19);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transform: translateX(-100vw);
    transition: transform 0.29s cubic-bezier(.72,.02,.39,1.02);
    backdrop-filter: blur(4px);
    overflow-y: auto;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    font-size: 2.5rem;
    background: none;
    color: #f3a712;
    border: none;
    padding: 18px 18px 0 18px;
    cursor: pointer;
    align-self: flex-end;
    transition: color 0.13s, transform 0.13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
    color: #fffbe8;
    transform: scale(1.07);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    padding: 14px 32px;
    margin-top: 12px;
    align-items: flex-start;
}
.mobile-nav a {
    color: #fff;
    font-family: 'Montserrat',Arial,sans-serif;
    font-size: 23px;
    font-weight: 700;
    padding: 8px 0;
    border-radius: 10px;
    transition: background 0.13s, color 0.13s;
    width: 100%;
    display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #f3a712;
    color: #23395d;
}

/***** Hide Main Nav on Mobile, Show Burger *****/
@media (max-width: 1020px) {
    .main-nav {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: inline-block;
    }
}
@media (min-width: 1021px) {
    .mobile-menu {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* ===============================
   Cookie Consent Banner & Modal
   =============================== */
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: #23395d;
    color: #fff;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 18px;
    gap: 20px;
    box-shadow: 0 -2px 18px 0 rgba(35,57,93,0.10);
    transition: transform 0.25s cubic-bezier(.89,0,.18,1);
    transform: translateY(0);
}
.cookie-banner.hidden {
    transform: translateY(120%);
}
.cookie-banner .cookie-text {
    max-width: 520px;
    font-size: 16px;
    font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .btn-accept, .cookie-banner .btn-reject, .cookie-banner .btn-settings {
    margin: 0 3px;
    border-radius: 20px;
    padding: 10px 23px;
    font-size: 15px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.16s, color 0.16s;
}
.cookie-banner .btn-accept {
    background: #f3a712;
    color: #23395d;
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
    background: #fffbe8;
    color: #23395d;
}
.cookie-banner .btn-reject {
    background: #fff;
    color: #f22e7c;
    border: 1.2px solid #f22e7c;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
    background: #f22e7c;
    color: #fff;
}
.cookie-banner .btn-settings {
    background: #23395d;
    color: #fffbe8;
    border: 1.2px solid #f3a712;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
    background: #f3a712;
    color: #23395d;
    border-color: #f3a712;
}

/* Cookie Modal */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(35,57,93,0.68);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn .25s;
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
.cookie-modal {
    background: #fff;
    color: #23395d;
    border-radius: 18px;
    box-shadow: 0 5px 32px 0 rgba(35,57,93,0.19);
    width: 95vw;
    max-width: 450px;
    padding: 36px 30px 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    animation: slideUpModal .38s cubic-bezier(.61,0,.24,1.04);
    position: relative;
}
@keyframes slideUpModal {
    from {transform: translateY(120px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}
.cookie-modal .modal-close {
    position: absolute;
    right: 16px;
    top: 12px;
    font-size: 1.9rem;
    background: none;
    border: none;
    color: #f3a712;
    cursor: pointer;
    transition: color 0.14s, transform 0.12s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {color:#23395d;transform: scale(1.08);}
.cookie-modal h3 {
    font-family: 'Montserrat',Arial,sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: #23395d;
}
.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 12px 0;
}
.cookie-category label {
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}
.cookie-toggle {
    width: 44px;
    height: 26px;
    background: #e7eaf3;
    border-radius: 20px;
    position: relative;
    margin-left: 16px;
    display: flex;
    align-items: center;
    transition: background 0.18s;
}
.cookie-toggle input[type=checkbox] {
    opacity: 0;
    width: 0; height: 0;
    position: absolute;
}
.cookie-toggle span {
    position: absolute;
    left: 3px;
    top: 3px;
    width: 20px;
    height: 20px;
    background: #23395d;
    border-radius: 50%;
    transition: left 0.18s, background 0.18s;
}
.cookie-toggle input[type=checkbox]:checked + span {
    left: 21px;
    background: #f3a712;
}
.cookie-modal .modal-actions {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/***** Animations & Microinteractions *****/
.card:hover, .feature-item:hover, .menu-item:hover, .testimonial-card:hover {
    box-shadow: 0 4px 20px 2px rgba(35,57,93,0.18);
    transform: translateY(-3px) scale(1.017);
    transition: box-shadow 0.19s, transform 0.19s;
}
.card, .feature-item, .menu-item, .testimonial-card {
    transition: box-shadow 0.14s, transform 0.16s;
}

/***** Hero & Callouts *****/
section:first-child {
    background: #23395d;
    color: #fff;
    box-shadow: 0 5px 40px 0 rgba(35,57,93,0.10);
    border-radius: 0 0 28px 28px;
    margin-bottom: 48px;
    padding: 55px 0 60px 0;
}
section:first-child .container .content-wrapper > h1,
section:first-child .container .content-wrapper > p {
    color: #fff;
}
section:first-child .btn-primary {
    background: #fff;
    color: #23395d;
    box-shadow: 0 2px 10px 0 rgba(255,255,255,0.11);
}
section:first-child .btn-primary:hover, 
section:first-child .btn-primary:focus {
    background: #f3a712;
    color: #23395d;
}

/***** Responsive Layouts *****
Mobile-first: column direction, then row on large screens.
All spacing rules honored!
*****/
@media (max-width: 900px) {
    .container { max-width: 99vw; }
    .feature-grid, .statistics-grid, .menu-list, .card-container, .content-grid {
        flex-direction: column;
        gap: 18px !important;
    }
    .feature-item, .menu-item, .card, .testimonial-card { max-width: 100%; }
}
@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .content-wrapper {
        padding: 0 !important;
        gap: 18px !important;
    }
    .section {
        padding: 32px 6px;
        margin-bottom: 35px;
        border-radius: 12px;
    }
    h1 { font-size: 30px; }
    h2 { font-size: 22px; margin-top: 10px;}
    .statistics-grid > div, .feature-item, .menu-item { font-size: 17px; }
    .faq-list h3 { font-size: 16px; }
    .menu-categories ul li { font-size: 13px; }
    .testimonial-card { padding: 14px 9px; }
    .faq-search {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .ratings-summary { font-size: 14px; padding: 7px 12px; }
    .btn-primary, .btn-secondary {
        font-size: 16px;
        padding: 11px 12px;
    }
}
@media (max-width: 610px) {
    h1 { font-size: 21px; }
    h2 { font-size: 16px; }
    .footer-menu { gap: 10px; }
    .cookie-banner .cookie-text { font-size: 13px; }
    .cookie-modal { padding: 17px 8px 14px 10px; }
    .statistics-grid > div, .feature-item, .menu-item {
        font-size: 15px;
        padding: 13px 6px;
    }
    .testimonial-card {
        padding: 6px 3px;
        font-size: 15px;
        min-width: 0;
    }
    .section { padding: 12px 3px; }
    .main-nav a.btn-primary { font-size: 14px; padding: 7px 12px; }
}

/* ===============================
   Micro-Vibrant Brand Touches
   =============================== */
::-webkit-scrollbar {width:7px;background:#f3a712;}
::-webkit-scrollbar-thumb {background:#23395d;border-radius:12px;}
::-webkit-selection {background: #f3a712; color: #192440;}
::selection {background: #f3a712; color: #192440;}

/***** Utility Classes *****/
.d-none { display: none !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/***** Miscellaneous Styles *****/
.menu-filters-sorting p {
    color: #23395d;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 15px;
}

/***** Ensure No Overlaps & Adequate Spacing *****/
.section:not(:last-child) { margin-bottom: 60px; }
.card-container > *, .feature-grid > *, .content-grid > *, .menu-list > *, .statistics-grid > * {
    margin-bottom: 20px;
}
.menu-list { margin-bottom: 18px; }

/***** Print Support *****/
@media print {
    header, footer, .cookie-banner, .mobile-menu { display: none !important; }
    body, .container, .content-wrapper, .section { background: #fff !important; color: #000 !important; }
}
