/* @font-face {
    font-family: 'Brice Semi Expanded';
    src: url('fonts/BriceSemiExpanded-Regular.woff2') format('woff2'),
         url('fonts/BriceSemiExpanded-Regular.woff') format('woff'),
         url('fonts/BriceSemiExpanded-Regular.ttf') format('truetype'),
         url('fonts/Brice-SemiExpanded.woff2') format('woff2'),
         url('fonts/Brice-SemiExpanded.woff') format('woff'),
         url('fonts/Brice-SemiExpanded.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

body {
    font-family: 'Brice Semi Expanded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #fffdee;
    color: #333;
    line-height: 1.6;
    font-weight: bold;
    letter-spacing: 0.3px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #102F76;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: #fffdee;
    border: 1px solid #102F76;
    color: #102F76;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Brice Semi Expanded', sans-serif;
}

.lang-btn:hover {
    background: rgba(16, 47, 118, 0.1);
}

.lang-btn.active {
    background: #102F76;
    color: #fffdee;
    border-color: #102F76;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.6rem 1.2rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: normal;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    border-radius: 8px;
    display: inline-flex;
}

.nav-button::after {
    content: '';
    position: absolute;
    bottom: 0.4rem;
    left: 1.2rem;
    right: 1.2rem;
    transform: scaleX(0);
    height: 2px;
    background-color: #ffffff;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-button:hover::after {
    transform: scaleX(1);
}

.nav-button.active::after {
    transform: scaleX(1);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

main {
    min-height: calc(100vh - 80px);
    height: calc(100vh - 80px);
    padding: 0;
    width: 100%;
    margin: 0;
    background-image: url('landing.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    flex: 1;
}

main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    padding: 10rem 2rem 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-text h1 {
    color: #fffdee;
    font-size: 5rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    font-family: 'Brice Semi Expanded', sans-serif;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #102F76;
    color: #fffdee;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Brice Semi Expanded', sans-serif;
    margin-top: 2rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(16, 47, 118, 0.3);
}

.instagram-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    z-index: 0;
}

.instagram-button > * {
    position: relative;
    z-index: 1;
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 47, 118, 0.5);
    background-color: #0a1f4d;
}

.instagram-button:hover::before {
    animation: shine 1s infinite;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.instagram-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* About page styles */
.about-main {
    background-color: #fffdee;
    background-image: none;
    min-height: calc(100vh - 80px);
    padding: 0;
    margin: 0;
    flex: 1;
}

.about-main::before {
    display: none;
}

.about-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-image-text {
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    padding: 0;
    max-width: 1200px;
    z-index: 2;
}

.about-image-text p {
    color: #fffdee;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Brice Semi Expanded', sans-serif;
    text-align: left;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-content {
    background-color: #fffdee;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    color: #102F76;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    font-family: 'Brice Semi Expanded', sans-serif;
}

.about-content h3 {
    color: #102F76;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    font-family: 'Brice Semi Expanded', sans-serif;
}

.about-content p {
    color: #333;
    font-size: 1.2rem;
    line-height: 2;
    font-weight: normal;
    font-family: 'Brice Semi Expanded', sans-serif;
    margin-bottom: 1.5rem;
}

/* Contact page styles */
.contact-main {
    background-image: none;
    background-color: #fffdee;
    min-height: calc(100vh - 80px);
    padding: 0;
    margin-bottom: 0;
    flex: 1;
}

.contact-main::before {
    display: none;
}

.contact-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-map {
    width: 100%;
    height: 600px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.contact-map .leaflet-container {
    height: 100%;
    width: 100%;
}

.contact-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-address {
    padding: 8rem 2rem;
    background-color: #fffdee;
    border-radius: 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-address h2 {
    color: #102F76;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    font-family: 'Brice Semi Expanded', sans-serif;
}

.address-info {
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.address-info h3 {
    color: #102F76;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    font-family: 'Brice Semi Expanded', sans-serif;
    white-space: nowrap;
}

.contact-address p {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: normal;
    font-family: 'Brice Semi Expanded', sans-serif;
    margin: 0;
}

.contact-email {
    margin-top: 2.5rem;
    color: #333;
}

.contact-email h3 {
    color: #102F76;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 0.8rem 0;
    font-family: 'Brice Semi Expanded', sans-serif;
}

.contact-email p {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: normal;
    font-family: 'Brice Semi Expanded', sans-serif;
    margin: 0;
}

.contact-email a {
    color: #102F76;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-email a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Menu page styles */
.menu-main {
    background-color: #fffdee;
    background-image: none;
    min-height: calc(100vh - 80px);
    padding: 4rem 2rem;
    flex: 1;
}

.menu-main::before {
    display: none;
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
}

.menu-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.menu-title {
    color: #102F76;
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Brice Semi Expanded', sans-serif;
    text-align: left;
    margin: 0;
    flex: 1;
}

.menu-section {
    margin-bottom: 3.5rem;
}

.menu-category {
    color: #102F76;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Brice Semi Expanded', sans-serif;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #102F76;
    padding-bottom: 0.5rem;
}

.menu-note {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
    font-style: italic;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    color: #333;
    font-size: 1.2rem;
    font-family: 'Brice Semi Expanded', sans-serif;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(16, 47, 118, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.menu-items li:has(.menu-subitems) {
    flex-direction: column;
    align-items: flex-start;
}

.menu-items li:last-child {
    border-bottom: none;
}

.menu-item-name {
    flex: 1;
}

.menu-item-with-star {
    position: relative;
}

.menu-item-star {
    color: #102F76;
    font-size: 1.2rem;
    line-height: 1;
}

.menu-item-star.desktop-star {
    display: none;
}

.menu-item-star.mobile-star {
    display: none;
}

@media (min-width: 481px) {
    .menu-item-star.desktop-star {
        display: inline-block;
        position: absolute;
        left: -1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-item-star.mobile-star {
        display: none;
    }
}

.menu-item-tag {
    display: inline-block;
    background-color: #102F76;
    color: #fffdee;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    vertical-align: middle;
    font-family: 'Brice Semi Expanded', sans-serif;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.menu-item-name-with-sub {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
}

.menu-item-allergens {
    display: flex;
    gap: 0.3rem;
    margin-left: auto;
    margin-right: 1.5rem;
    align-items: center;
    width: 80px;
    justify-content: flex-end;
    flex-shrink: 0;
}

.menu-item-allergens:empty {
    display: none;
}

.allergen-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    background-color: #102F76;
    color: #fffdee;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    font-family: 'Brice Semi Expanded', sans-serif;
    cursor: help;
    line-height: 1;
    box-sizing: border-box;
}

.menu-item-price {
    color: #102F76;
    font-weight: bold;
    margin-left: 0;
    white-space: nowrap;
    min-width: 70px;
    text-align: right;
}

.allergen-legend {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(16, 47, 118, 0.2);
}

.allergen-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    max-width: 400px;
}

.allergen-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.allergen-item .allergen-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    flex-basis: 24px;
}

.allergen-name {
    font-size: 1rem;
    color: #333;
    font-family: 'Brice Semi Expanded', sans-serif;
}

.menu-subitems {
    list-style: none;
    padding-left: 2rem;
    margin-top: 0.5rem;
    width: 100%;
}

.menu-subitems li {
    font-size: 1rem;
    color: #555;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(16, 47, 118, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-subitems li:last-child {
    border-bottom: none;
}

.menu-subitems .menu-item-price {
    font-size: 0.95rem;
}

footer {
    background-color: #0a1f4d;
    padding: 3rem 2rem;
    width: 100%;
    min-height: 250px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
}

.footer-container a {
    text-decoration: none;
}

.footer-logo {
    position: absolute;
    top: 1rem;
    left: 0;
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-credit {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.875rem;
    text-align: right;
}

.footer-copyright {
    background-color: #fffdee;
    padding: 0.6rem 2rem;
    width: 100%;
    text-align: center;
}

.footer-copyright small {
    color: #102F76;
    font-size: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.footer-credit small {
    color: #ffffff;
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-weight: normal;
    text-align: right;
}

.footer-credit a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-family: 'Sacramento', cursive;
    font-size: 2.4rem;
    text-align: right;
}

.footer-credit a:hover {
    opacity: 0.8;
}

/* Responsive design */
/* Tablet styles */
@media (max-width: 1024px) {
    .header-container {
        padding: 0;
    }

    .nav-buttons {
        gap: 0.8rem;
    }

    .nav-button {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .hero-text {
        padding: 18rem 2rem 4rem 2rem;
    }

    .hero-text h1 {
        font-size: 5rem;
    }

    .menu-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .contact-container {
        max-width: 100%;
    }

    .contact-map {
        height: 650px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content h3 {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1rem;
    }

    .footer-logo {
        position: relative;
        margin-bottom: 1.5rem;
    }

    .footer-credit {
        position: relative;
        right: auto;
        bottom: auto;
        align-items: center;
        text-align: center;
        margin-top: 3rem;
    }

    .footer-credit small {
        text-align: center;
    }

    .footer-credit a {
        text-align: center;
    }

    .footer-copyright {
        padding: 0.6rem 1rem;
    }

    .footer-copyright small {
        font-size: 0.7rem;
        white-space: nowrap;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .header-container {
        position: relative;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-buttons {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 240px;
        max-height: calc(100vh - 100px);
        background-color: #fffdee;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        overflow-y: auto;
        border-radius: 12px;
    }

    .nav-buttons.active {
        right: 1rem;
    }

    .nav-button {
        width: 100%;
        text-align: left;
        padding: 0.9rem 0;
        font-size: 1rem;
        border-bottom: none;
        border-radius: 0;
        justify-content: flex-start;
        color: #102F76;
    }

    .nav-button::after {
        display: none;
    }

    .nav-button:hover {
        background-color: rgba(16, 47, 118, 0.1);
        padding-left: 1rem;
    }

    .nav-button.active {
        color: #0a1f4d;
        font-weight: bold;
    }

    .logo {
        max-height: 45px;
    }

    main {
        padding: 0;
    }

    .hero-text {
        padding: 18rem 1.5rem 4rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
        line-height: 1.2;
    }

    .contact-main {
        padding: 0;
        margin-bottom: 0;
    }

    .contact-map {
        height: 500px;
        border-radius: 0;
    }

    .contact-address {
        padding: 5rem 1.5rem;
        border-radius: 0;
    }

    .contact-address h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .address-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .address-info h3 {
        font-size: 1.2rem;
        white-space: normal;
    }

    .contact-address p {
        font-size: 1rem;
    }

    .contact-email {
        margin-top: 2rem;
    }

    .contact-email h3 {
        font-size: 1.2rem;
    }

    .contact-email p {
        font-size: 0.95rem;
    }

    .menu-main {
        padding: 2rem 1rem;
    }

    .menu-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .menu-category {
        font-size: 1.4rem;
    }

    .menu-items li {
        font-size: 1rem;
        padding: 0.7rem 0;
    }

    .menu-item-price {
        font-size: 0.95rem;
    }

    .about-image-text {
        left: 1rem;
        padding: 1rem;
    }

    .about-image-text p {
        font-size: 1.1rem;
    }

    .about-content {
        padding: 3rem 1.5rem;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    .about-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .about-content p {
        font-size: 0.85rem;
        line-height: 1.8;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1rem;
    }

    .footer-logo {
        position: relative;
        margin-bottom: 1.5rem;
    }

    .footer-credit {
        position: relative;
        right: auto;
        bottom: auto;
        align-items: center;
        text-align: center;
        margin-top: 3rem;
    }

    .footer-credit small {
        text-align: center;
    }

    .footer-credit a {
        font-size: 2rem;
        text-align: center;
    }

    .footer-copyright {
        padding: 0.6rem 1rem;
    }

    .footer-copyright small {
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .allergen-table {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-text {
        padding: 16rem 1rem 3rem 1rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .instagram-button {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
        margin-top: 1.5rem;
    }

    .instagram-button svg {
        width: 18px;
        height: 18px;
    }

    .menu-title-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        justify-content: space-between;
    }

    .menu-title {
        font-size: 1.8rem;
        flex: 1;
        margin: 0;
    }

    .language-selector {
        align-self: center;
        flex-shrink: 0;
    }

    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .menu-category {
        font-size: 1.2rem;
    }

    .menu-main {
        padding: 2rem 1rem;
    }

    .menu-container {
        max-width: 100%;
        padding: 0;
    }

    .menu-title-wrapper {
        margin-bottom: 2.5rem;
    }

    .menu-section {
        margin-bottom: 2.5rem;
    }

    .menu-category {
        margin-bottom: 1rem;
    }

    .menu-items li {
        font-size: 0.95rem;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 0;
    }

    .menu-item-name {
        flex: 1 1 100%;
        min-width: 0;
        word-break: break-word;
    }

    .menu-item-tag {
        font-size: 0.55rem;
        padding: 0.15rem 0.4rem;
        margin-left: 0.3rem;
    }

    .menu-item-price {
        margin-left: auto;
        font-size: 0.9rem;
        min-width: auto;
        text-align: right;
        flex-shrink: 0;
        order: 3;
    }

    .menu-item-allergens {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        min-width: auto;
        width: auto;
        order: 2;
        flex-shrink: 0;
    }

    .menu-item-star.mobile-star {
        display: inline-block;
        position: static;
        left: auto;
        top: auto;
        transform: none;
        margin-left: 0.3rem;
        font-size: 1rem;
        vertical-align: middle;
    }

    .menu-item-star.desktop-star {
        display: none;
    }

    .menu-note {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }

    .allergen-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        max-width: 20px;
        max-height: 20px;
        font-size: 0.65rem;
    }

    .allergen-table {
        max-width: 100%;
    }

    .contact-address {
        padding: 3rem 1rem;
    }

    .contact-map {
        height: 400px;
    }

    .about-image-text p {
        font-size: 1rem;
    }

    .about-content {
        padding: 2rem 1rem;
    }

    .about-content h2 {
        font-size: 1.4rem;
    }

    .about-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .about-content p {
        font-size: 0.8rem;
        line-height: 1.7;
    }


    footer {
        padding: 1rem;
    }

    .footer-credit {
        right: 1rem;
        bottom: 1rem;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.25rem;
    }
}

