* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    line-height: inherit;
    box-sizing: border-box;
}

body {
    background: #001982;
    width: auto;
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: "Grandstander", sans-serif;
    color: rgb(255, 255, 255);
  	padding-top: 80px;
}


.main-header {
    position: fixed;
    left: 0;
    top: 0;
    padding: 0;
    height: 90px;
    min-height: 40px;
    width: 100%;
    z-index: 999;
    display: block;
    background: #001982;
  	border-bottom: 0.1px solid rgba(255, 255, 255, 0.025);
}

.auto-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 20px;
    margin: 0 auto;

}

.logo-box {
    position: relative;
    display: block;
    padding: 20px 0px;
    z-index: 5;
    order: 1;
}

.logo {
    position: relative;
    display: block;
}

.logo img {
    position: relative;
    display: block;
    height: 60px;
    z-index: 1;
}

/* img {
    max-width: 100%;
    height: auto;
} */

.nav-box {
    display: flex;
    align-items: center;
    position: static;
    order: 2;
    white-space: nowrap;
    gap: 20vw;
}

.navbox-out {
    display: flex;
    align-items: center;
    gap: 10px;
    position: static;
}

.main-menu {
    position: static;
    display: block;
    padding: 0px 0px;
}

.main-menu a {
    text-shadow: 1px 1px black;
    font-size: 16px;
    font-weight: 800;
    padding-right: 30px;
}

a:hover {
    color: rgb(16, 13, 228);
}

a.active {
    text-decoration: underline wavy;
}

a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 600;
}

.links-box {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    order: 3;
}

.btn {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 25px;
    font-size: clamp(12px, 2vw, 15px);
    background: #FFCE00;
    color: #001982;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #ffffff;
    transform: scale(1.05);
}

.info-btn {
    position: relative;
    cursor: pointer;
    background: none;
    color: white;
}

.hamburger {
    display: flex;
    align-self: center;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    order: 4;
}

.hamburger span {
    align-self: flex-end;
    height: 3px;
    width: 25px;
    background-color: white;
    border-radius: 5px;
    transition: all 400ms ease-in-out;
}

.top-bun {
    animation: burger-hover 2s infinite ease-in-out alternate forwards 200ms;
}

.meat {
    animation: burger-hover 2s infinite ease-in-out alternate forwards 400ms;
}

.bottom-bun {
    animation: burger-hover 2s infinite ease-in-out alternate forwards 600ms;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}


.btn-about {
    background: #FFCE00;
    color: #001982;
    margin-top: 40px;
}

.swiper {
    width: 100%;
    height: 68vh;
    margin: 0;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.veggie {
    width: 30px;
    vertical-align: middle;
    height: auto;
    display: inline-block;
    margin: 0 3px;
}

.veggie-small {
    width: 25px;
    vertical-align: middle;
    height: auto;
    display: inline-block;
    margin: 0 2px;
}

/* Media queries for responsive veggie icons */
@media screen and (max-width: 1024px) {
    .veggie {
        width: 25px;
    }

    .veggie-small {
        width: 22px;
    }
}

@media screen and (max-width: 768px) {
    .veggie {
        width: 22px;
    }

    .veggie-small {
        width: 20px;
    }
}

@media screen and (max-width: 480px) {
    .veggie {
        width: 18px;
    }

    .veggie-small {
        width: 16px;
    }

    .navbox-out {
        gap: 5px;
    }
}

@media screen and (max-width: 360px) {
    .veggie {
        width: 16px;
    }

    .veggie-small {
        width: 14px;
    }
}

.middle-title {
    color: #FFCE00;
    font-size: clamp(26px, 4vw, 34px);
    font-family: "Grandstander", sans-serif;
    font-weight: 700;
    text-align: center;
    margin: 0;
    letter-spacing: 2px;
    font-style: thin;
}

/* Navigation sidebar for mobile */
.nav-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(350px, 65vw);
    height: 100vh;
    background-color: #FFCE00;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.5s ease;
    z-index: 9999;
    padding: 20px 0px 0px 0px;
    overflow-y: auto;
}

.nav-sidebar.show {
    right: 0;
}

.nav-sidebar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.btn-side {
    width: 100%;
    align-self: center;
    background: #001982;
    color: #FFCE00;
    padding: 12px 0;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(12px, 2vw, 16px);
    max-width: 100%;
    width: 100% !important;
}

.btn-side:hover {
    background: rgba(180, 171, 171, 0.774);
    color: #001982;
    transform: scale(1.05);
}

.nav-sidebar-content img {

    padding-bottom: 50px;
}

.nav-sidebar-content a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: clamp(18px, 3vw, 22px);
    padding: 30px 0;
    transition: color 0.3s ease;
    font-family: "Grandstander", sans-serif;
    text-shadow: 2px 1px black;
}

.nav-sidebar-content a:hover {
    color: #FFCE00;
}

.nav-sidebar-content a.active {
    color: #FFCE00;
    text-decoration: underline wavy;
}

/* Close button for nav sidebar */
.close-nav-sidebar {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 38px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

.info-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(400px, 90vw);
    height: 100vh;
    background-color: #FFCE00;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 9999;
    padding: 20px 0px;
    overflow-y: auto;
}

.info-sidebar.show {
    right: 0;
}

.close-sidebar {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

.sidebar-content h2,
.sidebar-content h3 {
    margin-bottom: 10px;
    color: rgb(47, 19, 173);
}

.sidebar-content h3 {
    margin-top: 40px;
}

.sidebar-content p,
.sidebar-content ul {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.sidebar-content ul {
    list-style: none;
    padding: 0;
}

.sidebar-content li {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.social-links {
    display: flex;
    justify-content: center;
    width: 100%;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: rgb(47, 19, 173);
    text-decoration: none;
    font-weight: bold;
    font-size: 32px;
}

.sidebar-content {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.sidebar-content p {
    font-size: 18px;
}

.sidebar-content ul {
    font-size: 18px;
}

.sidebar-content a {
    color: rgb(47, 19, 173);
    text-decoration: none;
}

.latin-kitchen {
    box-shadow: 2px 2px rgb(58, 59, 61);
    width: 60%;
    height: 300px;
    max-width: 600px;
    object-fit: cover;
    align-self: center;
    /* aspect-ratio: 1 / 0.85; */
    border-radius: 300px 300px 0 0;
}

.logo-mixtura {
    align-self: center;
    padding-top: 20px;
    width: 40%;
    max-width: 200px;
}

.social-links a {
    left: -5px;
    padding-left: 20px;
}

.hero-text {
    font-family: "Raleway", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    letter-spacing: 1.4px;
    margin-top: 40px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 2s ease, transform 2s ease;
}

.hero-text.animated {
    opacity: 1;
    transform: translateY(0);
}

.hero-text p {
    font-size: clamp(14px, 3vw, 22px);
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin-top: 25px;
}

.menu-container {
    font-family: "Grandstander", sans-serif;
    width: 90%;
    max-width: 1200px;
    margin: 60px auto 0;
    background: #28A300;
    background-image: url(media/menu-bg.png);
    background-size: 100%;
    padding: 20px;
    border-radius: 40px;
}

.menu-items {
    background-color: #29a300a4;
}

.menu-title {
    font-size: clamp(22px, 3vw, 28px);
    font-family: "Grandstander", sans-serif;
    text-align: center;
    color: white;
    text-decoration: overline underline 2px wavy;
    text-underline-offset: 10px;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

.menu-title:first-of-type {
    margin-top: 20px;
}

.menu-content {
    font-family: "Grandstander", sans-serif;
    margin-top: 0;
    padding: 40px 20px;
}

.menu-items {
    font-family: "Grandstander", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

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

.menu-image-preview {
    max-width: 360px;
    width: 100%;
    flex-shrink: 0;
}

.menu-image-preview img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease-in-out;
    border-radius: 15%;
}

.menu-food {
    margin-bottom: 30px;
    cursor: pointer;
}

.menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-container.mirrored {
    flex-direction: row-reverse;
}

.menu-items.mirrored {
    flex-direction: row-reverse;
}

.menu-header h3 {
    font-weight: bolder;
    font-size: clamp(18px, 2.5vw, 28px);
    margin: 0;
    color: white
}

.menu-line {
    flex-grow: 1;
    border-bottom: 1px dashed white;
    margin: 0 10px;
    height: 1px;
}

.menu-price {
    font-size: clamp(15px, 2vw, 19px);
    white-space: nowrap;
    color: white;
    font-weight: bold;
}

.menu-description {
    font-family: "Raleway", sans-serif;
    margin-top: 5px;
    font-size: clamp(13px, 2vw, 17px);
    color: #ffffff;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

#menu-preview-img,
#menu-preview-img-main,
#menu-preview-img-dess {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3/4;
}


.image-overlay-text {
    font-family: "Grandstander", sans-serif;
    margin-bottom: 5px;
    text-align: center;
    color: white;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: bold;
    border-radius: 5px;
    pointer-events: none;
    max-width: 100%;
    line-height: 1.2;
    animation: textGlow 2s ease-in-out infinite;
    transform-origin: center;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info,
.contact-form {
    flex: 1;
    max-width: calc(50% - 25px);
    background: rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

#message {
    font-family: "Raleway", sans-serif !important;
}

.contact-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.contact-details h2,
.contact-form h2 {
    color: #FFCE00;
    margin-bottom: 20px;
}

.contact-form p {
    font-family: "Raleway", sans-serif;
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: 30px;
}

.required {
    text-align: left;
    font-size: 12px;
}

.contact-form button {
    background: #FFCE00;
    color: #001982;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(10px, 2vw, 14px);
    margin-top: 30px;
    width: 50%;
}

.contact-form button:hover {
    background: white;
    color: #001982;
    transform: scale(1.05);
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.contact-details p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    font-size: clamp(14px, 2vw, 16px);
    width: 100%;
}

.contact-details i {
    width: 25px;
    margin-right: 10px;
    color: #FFCE00;
    text-align: center;
}

.contact-details ul {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: clamp(14px, 2vw, 16px);
    white-space: nowrap;

}

.contact-details h3 {
    margin-top: 20px;
    color: #FFCE00;
}

.contact-details p,
.contact-details li {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: clamp(14px, 2vw, 16px);
}

.sidebar-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.contact-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.contact-social a {
    font-size: 1.7em;
    margin: 0;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.contact-social a:hover {
    color: #EA0000;
    transform: scale(1.2);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.map-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-group input.error,
.form-group textarea.error {
    border: 1px solid #ff0000;
}

.error-message {
    color: #ff0000;
    font-size: 0.9em;
    margin-top: 5px;
}

.success-message {
    font-size: 0.9em;
    margin-top: 5px;
}

.success-message h4 {
    color: #FFCE00;
}

.success-message p {
    color: white;
}

.weekday {
    font-weight: bold;
    min-width: 160px;
    margin-right: auto;
    text-align: left;
}

.venue-section {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.venue-hero .venue-content {
    display: flex;
    flex: 1;
    max-width: calc(50% - 25px);
    border-radius: 15px;
    align-items: center;
    justify-content: center;
}

.venue-content {
    display: flex;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.venue-info {
    flex: 1;
    padding: 0px;
    text-align: center;
}

.venue-info h2 {
    color: #FFCE00;
    font-size: clamp(24px, 4vw, 28px);
    margin-bottom: 20px;
}

.venue-hero img {
    width: 700px;
    border-radius: 15px;
}

.venue-info p {
    font-family: "Raleway", sans-serif;
    font-size: clamp(13px, 2vw, 15px);
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: justify;
}

/* .events-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.events-grid {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 20px;
}

.events-grid::-webkit-scrollbar {
    width: 8px;
}

.events-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.events-grid::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 4px;
}

.event-card {
    background: #102d18;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.event-link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.event-image {
    width: 170px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.event-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-date {
    color: white;
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 5px;
}

.event-title {
    color: white;
    margin-bottom: 4px;
    font-size: 1.1em;
}

.event-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
    line-height: 1.4;
} */

.btn-events {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFCE00;
    color: #001982;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(12px, 2vw, 16px);
    margin-top: 100px;
}


.main-footer {
    background: #001982;
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer-content {
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.newsletter-section {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.newsletter-section h3 {
    color: #FFCE00;
    font-size: clamp(20px, 3vw, 24px);
    font-family: "Grandstander", sans-serif;
    margin-bottom: 15px;
}

.newsletter-section p {
    font-family: "Raleway", sans-serif;
    margin-bottom: 20px;
}

.label {
    font-family: "Raleway", sans-serif;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    /* Set a maximum width */
    margin: 0 auto;
    /* Center the form */
}

.newsletter-form input[type="email"] {
    margin-top: -5px;
    padding: 12px;
    border-radius: 25px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.consent-checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    margin: 30px 0;
    font-size: clamp(14px, 3vw, 18px);
}

.btn-newsletter {
    background: #FFCE00;
    color: #001982;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: white;
    transform: translateY(-2px);
}

.footer-social-center {
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.footer-social-center h4 {
    color: #FFCE00;
    font-size: clamp(18px, 3vw, 22px);
    font-family: "Grandstander", sans-serif;
    margin-bottom: 20px;
}

.footer-social-center .social-links a {
    font-size: 2em;
    color: #FFCE00;
    /* margin: 0 15px; */
    transition: all 0.3s ease;
}

.footer-social-center .social-links a:hover {
    color: white;
    transform: scale(1.1);
}

.footer-copyright p {
    font-family: "Raleway", sans-serif;
    text-align: center;
    color: white;
    font-size: clamp(12px, 2vw, 14px);
}

.footer-legal {
    font-family: "Raleway", sans-serif;
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: clamp(12px, 2vw, 14px);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #FFCE00;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    display: block;
    align-items: center;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1500px;
    gap: 50px;
    font-family: "Raleway", sans-serif;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-first {
    margin-top: 100px;
}

.about-image {
    width: auto;
    max-width: 500px;
    vertical-align: middle;
    height: auto;
    display: flex;
    justify-content: center;
    margin: 0 3px;
    border-radius: 50px;
}

.about-text {
    flex: 1;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.2;
    text-align: justify;
}

.about-text h2 {
    color: #FFCE00;
    font-family: "Grandstander", sans-serif;
    text-decoration: wavy underline 2px;
    text-underline-offset: 6px;
    margin-bottom: 20px;
    font-size: clamp(24px, 4vw, 30px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 60px;
    margin-top: -15px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    /* Faster with reasonable delay */
}

.about-text p {
    margin-bottom: 20px;
    text-align: center;
    font-size: clamp(14px, 2vw, 18px);
    opacity: 0;
    line-height: 1.4;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
    /* Faster with reasonable delay */
}

.about.animated {
    opacity: 1;
    transform: translateY(0);
}

.about.animated .about-text h2 {
    opacity: 1;
    transform: translateY(0);
}

.about.animated .about-text p {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries for Responsive Design */

/* Large tablets and small laptops */
@media screen and (max-width: 1024px) {
    .auto-container {
        padding: 0 20px;
    }

    .main-menu a {
        padding-right: 20px;
        font-size: 14px;
    }

    .menu-container {
        width: 95%;
        padding: 15px;
    }

    .menu-content {
        padding: 30px 15px;
    }

    .menu-items {
        gap: 30px;
    }

    .contact-details {
        font-size: clamp(15px, 2vw, 17px);

    }

    .venue-content {
        padding: 0;
    }

    .venue-info {
        font-size: clamp(12px, 2vw, 10px);

        padding: 0px;
    }

    .contact-social {
        gap: 20px;
    }

}

@media screen and (max-width: 950px) and (min-width: 770px) {
    .contact-details li {
        font-size: clamp(11px, 1vw, 12px);
    }

    .weekday {
        min-width: 110px;
    }

    .contact-info {
        padding: 30px 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contact-social {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        font-weight: 700;

    }

    .contact-social a {
        font-size: clamp(1.5em, 3vw, 2em);
    }

    .venue-section {
        flex-direction: column;
        padding: 20px 20px 0px 20px;
        gap: 30px;
    }

    .venue-section .venue-hero img {
        width: 100%;
        max-width: auto;
    }

    .nav-box {
        gap: 0;
    }
}

/* Update your existing mobile styles */
@media screen and (max-width: 769px) {
    .contact-details li {
        font-size: clamp(10px, 2vw, 12px);
    }

    .weekday {
        min-width: 120px;
    }
}

/* Tablets and below - Hide nav-box and show hamburger */
@media screen and (max-width: 768px) {
    body {
        padding-top: 80px;
        /* Adjust based on header height */
    }

    .main-header {
        position: fixed;
        width: 100%;
        height: auto;
        min-height: 60px;
        z-index: 1000;
        top: 0;
        left: 0;
    }

    .auto-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        background: #001982;
        position: relative;
        width: 100%;
    }

    .logo-box {
        flex: 0 0 auto;
        padding: 10px 0;
    }

    .hamburger {
        margin-left: auto;
    }

    .logo img {
        height: 50px;
    }

    .nav-box {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
    }

    .navbox-out {
        display: none !important;
    }

    .main-menu {
        display: none !important;
    }

    .links-box {
        display: flex !important;
        gap: 0;
        padding: 0;
    }

    .link-btn {
        display: none !important;
    }

    .burger {
        display: block !important;
    }

    .hamburger {
        display: flex !important;
        flex: 0 0 auto;
    }



    .middle-title {
        padding-top: 30px;
        letter-spacing: 1px;
    }

    .hero-text {
        margin-top: 20px;
        margin-bottom: 40px;
        padding: 0 10px;
        line-height: 1.4;
    }

    .hero-text p {
        margin-top: 0px;
    }


    .menu-items {
        flex-direction: column;
        gap: 20px;
    }

    .menu-items.mirrored {
        flex-direction: column;
    }

    .menu-image-preview {

        max-width: 70%;
        align-self: center;
        order: -1;
        width: 60%;
    }

    .menu-content {
        padding: 20px 10px;
    }


    .social-small {
        margin-top: 70px;
        display: flex;
        justify-content: center;
        font-weight: 700;
    }

    .social-small a {
        font-size: 1.5em;
        margin: 0 10px;
        text-shadow: 1px 1px black;
    }


    .contact-info,
    .contact-form {
        width: 100%;
        max-width: 100%;
    }

    .contact-form button {
        margin-top: 0;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 20px;
        width: 100%;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
    }

    .map-container {
        padding: 20px;
        width: 100%;
    }

    .map-container iframe {
        width: 100%;
        height: 300px;
    }

    .contact-social a {
        font-size: 2.2em;
        margin: 0 10px;
    }

    .contact-details p,
    .contact-details li {
        font-size: clamp(12px, 4vw, 14px);
    }

    .weekday {
        min-width: 140px;

    }

    .venue-section {
        flex-direction: column;
        padding: 20px 20px 0px 20px;
        gap: 0px;
    }



    .venue-hero img {
        width: 100%;
        max-width: auto;
    }

    .venue-info {
        width: 100%;
        padding-top: 0;
        padding: 20px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-social-center {
        order: 1;
        margin-top: 20px;
    }

    .swiper {
        height: 50vh;
    }

    #menu-preview-img,
    #menu-preview-img-main,
    #menu-preview-img-dess {
        max-width: 280px;
    }
}


/* Above 768px - Show info button */
@media screen and (min-width: 769px) {
    .nav-sidebar {
        display: none;
    }
}

/* Mobile phones */
@media screen and (max-width: 480px) {
    .auto-container {
        padding: 0 10px;
    }

    .logo img {
        height: 40px;
    }

    .middle-title {
        padding-top: 20px;
    }

    .hero-text p {
        margin-top: 0px;
    }

    .menu-container {
        width: 98%;
        padding: 10px;
        border-radius: 20px;
    }

    .menu-content {
        padding: 15px 5px;
    }

    .menu-food {
        margin-bottom: 20px;
    }

    .menu-header {
        gap: 5px;
    }

    .menu-line {
        margin: 0 5px;
    }

    /* .nav-sidebar {
        width: 85vw;
    } */

    .latin-kitchen {
        width: 80%;
        max-width: 300px;
    }

    .logo-mixtura {
        width: 60%;
        max-width: 150px;
    }

    .image-overlay-text {
        font-size: clamp(10px, 3vw, 15px);
        left: -20px;
    }

    .btn-side {
        margin-bottom: 20px;
        width: 100%;
        align-self: center;
    }

    .name-fields {
        flex-direction: column;
        gap: 15px;
    }

    .consent-checkbox {
        white-space: normal;
    }

    .main-header {
        padding: 5px 0;
        height: auto;
        min-height: 50px;

    }

    .contact-social {
        gap: 15px;
    }

    .contact-social a {
        font-size: 1.8em;
        margin: 0 8px;
    }

    #menu-preview-img,
    #menu-preview-img-main,
    #menu-preview-img-dess {
        max-width: 240px;
    }
}

@media screen and (max-width: 440px) {
    .event-card {
        flex-direction: column;
        position: relative;
        padding-top: 60px;
    }

    .event-image {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
    }

    .event-content {
        text-align: center;
    }

    .event-date {
        font-size: 0.8em;
    }

    .event-title {
        font-size: 0.9em;
    }

    .event-description {
        font-size: 0.75em;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .newsletter-section {
        order: 1;
        text-align: center;
    }

    .footer-social-center {
        order: 2;
        margin-top: 20px;
    }

    .footer-bottom {
        text-align: center;
        flex-direction: column;
        gap: 15px;
    }

    .footer-legal {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-copyright {
        margin-bottom: 10px;
    }

    .footer-legal a {
        font-size: 0.8em;
    }

    .contact-details a {
        font-size: clamp(14px, 4vw, 16px);
    }

    .social-links {
        text-align: center;
        margin: 0 auto;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        padding-left: 0px;
        width: 100%;
    }

    .social-small a {
        font-size: clamp(20px, 4vw, 28px);
    }

    .social-links {
        width: 100%;
        left: 50%;
    }

    .social-links i {
        font-size: clamp(24px, 4vw, 32px);
        gap: 0;
    }

    .social-links a {
        margin: 0 10px;
        padding: 0%;
    }

    .contact-details li {
        font-size: clamp(11px, 2vw, 13px);
    }

    .contact-details ul {
        width: auto;
    }

    .menu-image-preview {
        max-width: 90%;
        margin: 20px auto;
    }

    .menu-image-preview img {
        width: 100%;
        /* max-height: 160px; */
        height: auto;
        object-fit: cover;
    }

    .image-wrapper {
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .menu-items {
        flex-direction: column;
        align-items: center;
    }

    .menu-container h3 {
        font-size: clamp(14.6px, 4vw, 26px);
    }

    .footer-social-center h4 {
        font-size: clamp(16px, 3.5vw, 20px);
        white-space: wrap !important;
    }

    .contact-social {
        gap: 10px;
        width: 100%;
    }

    .contact-social a {
        font-size: clamp(18px, 3.5vw, 24px);
        margin: 0 5px;

    }
}

/* Extra small screens */
@media screen and (max-width: 360px) {
    .auto-container {
        padding: 0 5px;
    }

    .menu-container {
        width: 100%;
        margin: 40px auto 0;
        border-radius: 15px;
    }

    .nav-sidebar {
        width: 80vw;
        height: 100%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    }

    .menu-container h3 {
        font-size: clamp(12.4px, 3.5vw, 24px);
    }

    #menu-preview-img,
    #menu-preview-img-main,
    #menu-preview-img-dess {
        max-width: 200px;
    }

}

@media screen and (max-width: 320px) {
    .menu-header h3 {
        font-size: clamp(11px, 3vw, 20px);
    }

    .menu-price {
        font-size: clamp(12px, 2.5vw, 16px);
    }

    .menu-description {
        font-size: clamp(11px, 2.5vw, 15px);
    }

    .contact-social {
        gap: 5px;
        width: 100%;
        left: 50%;
    }

    .contact-social a {
        font-size: clamp(16px, 3vw, 20px);
        margin: 0 3px;
    }

    #menu-preview-img,
    #menu-preview-img-main,
    #menu-preview-img-dess {
        max-width: 180px;
    }

}

/* Animations */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px) translateX(-50%);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    0% {
        text-shadow:
            0 0 7px #EA0000,
            0 0 10px #EA0000,
            0 0 15px #EA0000;
        transform: scale(1);
    }

    50% {
        text-shadow:
            0 0 10px #EA0000,
            0 0 20px #EA0000,
            0 0 30px #EA0000,
            0 0 40px #EA0000;
        transform: scale(1.03);
    }

    100% {
        text-shadow:
            0 0 7px #EA0000,
            0 0 10px #EA0000,
            0 0 15px #EA0000;
        transform: scale(1);
    }
}

@keyframes burger-hover {
    0% {
        width: 100%;
    }

    50% {
        width: 50%;
    }

    100% {
        width: 100%;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.name-fields {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
}

.name-fields input {
    flex: 1;
    min-width: 0;
    /* This prevents flex items from overflowing */
    padding: 12px;
    border-radius: 25px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    color: white;
}

.form-success {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    height: 100%;
    min-height: 400px;
}

.form-success h3 {
    color: #FFCE00;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-family: "Grandstander", sans-serif;
}

.form-success p {
    color: white;
    font-family: "Raleway", sans-serif;
    font-size: 1.1em;
    line-height: 1.5;
}

.spam-note {
    font-size: 0.9em;
    margin-top: 15px;
    opacity: 0.8;
}

/* Show success message when #success is targeted */
#success:target {
    display: flex;
}

/* Hide form when #success is targeted */
#success:target~form,
#success:target~h2,
#success:target~p:not(.form-success p) {
    display: none;
}

/* Improved about section responsive design */
@media screen and (max-width: 768px) {
    .about {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
        margin-bottom: 40px;
    }

    .about-image {
        max-width: 100%;
        margin: 0 auto;
        order: -1;
    }

    .about-text h2 {
        min-height: unset;
        text-align: center;
    }

    .about-first {
        margin-top: 40px;
    }
}

@media screen and (max-width: 480px) {
    .about {
        gap: 20px;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .about-image {
        width: 100%;
        border-radius: 25px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .about-text h2 {
        font-size: clamp(20px, 6vw, 26px);
        padding: 0 5px;
        text-decoration-thickness: 2px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: clamp(13px, 4vw, 16px);
        line-height: 1.5;
        padding: 0 5px;
        text-align: center;
    }

    .about-first {
        margin-top: 30px;
    }
}

@media screen and (max-width: 360px) {
    .about {
        gap: 15px;
        padding: 0 8px;
        margin-bottom: 15px;
    }

    .about-image {
        width: 100%;
        border-radius: 15px;
    }

    .about-text h2 {
        font-size: clamp(18px, 5.5vw, 22px);
        margin-top: 10px;
        margin-bottom: 12px;
    }

    .about-text p {
        font-size: clamp(12px, 3.8vw, 14px);
        line-height: 1.4;
    }

    /* Simplify animations for better performance on small devices */
    .about,
    .about-text h2,
    .about-text p {
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    max-width: 500px;
    margin: auto;
    z-index: 9999;
    font-family: "Raleway", sans-serif;
    text-align: left;
    display: none;
    flex-direction: column;
    gap: 10px;
    animation: slideUp 0.5s ease-out;
    height: auto;
    max-width: fit-content;
}

.cookie-banner p {
    font-size: clamp(12px, 2vw, 14px);
    color: #333;
    margin-bottom: 10px;
}

.cookie-banner a {
    color: #001982;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn {
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: clamp(12px, 2vw, 14px);
    cursor: pointer;
}

.cookie-btn.accept {
    background-color: #3E4857;
    color: #fff;
}

.cookie-btn.decline {
    background-color: #E0E0E0;
    color: #333;
}

/* Privacy Policy Styles */
.wrap {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 15px;
}

.wrap header {
    text-align: center;
    margin-bottom: 40px;
}

.wrap h1 {
    color: #FFCE00;
    font-size: clamp(28px, 4vw, 36px);
    font-family: "Grandstander", sans-serif;
    margin-bottom: 10px;
}

.wrap .small {
    font-family: "Raleway", sans-serif;
    font-size: clamp(12px, 2vw, 14px);
    color: rgba(255, 255, 255, 0.8);
}

.wrap section {
    margin-bottom: 40px;
}

.wrap h2 {
    color: #FFCE00;
    font-family: "Grandstander", sans-serif;
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 15px;
}

.wrap p,
.wrap ul {
    font-family: "Raleway", sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    margin-bottom: 15px;
}

.wrap ul {
    padding-left: 20px;
    list-style-type: disc;
}

.wrap li {
    margin-bottom: 8px;
}

.wrap a {
    color: #FFCE00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wrap a:hover {
    color: white;
}

.company {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.wrap strong {
    color: #FFCE00;
    font-weight: bold;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .wrap {
        margin: 20px auto;
        padding: 15px;
    }

    .wrap section {
        margin-bottom: 30px;
    }

    .company {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .wrap {
        margin: 10px;
        padding: 12px;
    }

    .wrap h1 {
        font-size: clamp(24px, 6vw, 28px);
    }

    .wrap h2 {
        font-size: clamp(18px, 4vw, 20px);
    }

    .wrap p,
    .wrap ul {
        font-size: clamp(13px, 3vw, 15px);
    }

    .company {
        padding: 12px;
        font-size: clamp(12px, 3vw, 14px);
    }
}

@media screen and (max-width: 360px) {
    .wrap {
        margin: 5px;
        padding: 10px;
    }

    .wrap section {
        margin-bottom: 25px;
    }

    .wrap h1 {
        font-size: clamp(22px, 5.5vw, 26px);
    }

    .wrap h2 {
        font-size: clamp(16px, 3.5vw, 18px);
    }

    .wrap p,
    .wrap ul {
        font-size: clamp(12px, 2.8vw, 14px);
    }
}

@media screen and (max-width: 770px) and (min-width: 440px) {
    .menu-container {
        width: 95%;
        margin: 40px auto;
    }

    .menu-title {
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .menu-items {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .menu-image-preview {
        width: 70%;
        max-width: 400px;
        margin: 0 auto;
        order: -1;
    }

    .menu-image-preview img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .menu-items ul {
        width: 100%;
        text-align: left;
    }

    .menu-items.mirrored {
        flex-direction: column;
    }

    .image-wrapper {
        width: 100%;
        text-align: center;
    }

    .image-overlay-text {
        position: relative;
        text-align: center;
        width: 100%;
        left: 0;
    }

    .menu-header {
        align-items: center;
        gap: 5px;
    }

    .consent-checkbox {
        gap: 10px;
        font-size: clamp(12.5px, 2.5vw, 18px);
        margin: 20px 0;
        /* white-space: normal; */
        text-align: left;
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;

    }
}

.impressum-main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 15px;
}

.impressum {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
}

.impressum-title {
    color: #FFCE00;
    font-size: clamp(28px, 4vw, 36px);
    font-family: "Grandstander", sans-serif;
    margin-bottom: 10px;
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: transparent;
    border: 1px solid #FFCE00;
    color: #FFCE00;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Grandstander", sans-serif;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #FFCE00;
    color: #001982;
}

.lang-btn i {
    font-size: 16px;
}

.current-lang {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 600;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #001982;
    border: 1px solid #FFCE00;
    border-radius: 4px;
    margin-top: 5px;
    display: none;
    z-index: 1000;
    width: auto;
    white-space: nowrap;
}

.lang-dropdown.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #001982;
    border: 1px solid #FFCE00;
    border-radius: 4px;
    margin-top: 5px;
    z-index: 1000;
    width: max-content;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 5px;
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: top center;
}

.lang-dropdown img {
    width: 80px;
    height: auto;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-dropdown a {
    display: flex;
    margin-top: 2px;
    margin-bottom: 2px;
    padding: 6px 8px;
    transition: all 0.3s ease;
    align-items: center;
    text-decoration: solid;
}

.lang-dropdown a:hover {
    background: rgba(255, 204, 0, 0.658);
}

.lang-dropdown a.active {
    background: rgba(255, 204, 0, 0.719);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .language-selector {
        margin-right: 20px;
    }

    .lang-btn {
        padding: 6px 10px;
    }

    .lang-dropdown a {
        padding: 6px 10px;
        font-size: 11px;
    }

    .lang-dropdown img {
        width: 50px;
        height: auto;
    }

}

@media screen and (max-width: 480px) {

    .lang-dropdown a {
        padding: 8px 12px;
    }

    .lang-dropdown img {
        width: 50px;
        height: auto;
    }
}

/* Add after existing code */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 15px;
    position: relative;
    animation: zoomIn 0.3s ease;
    overflow: hidden;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 15px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #FFCE00;
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.1);
}


@keyframes zoomIn {
    from {
        transform: scale(0.3);
    }

    to {
        transform: scale(1);
    }
}