/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #CC0000;
    --secondary-color: #8B9B8B;
    --accent-color: #2F3B2F;
    --text-color: #E0E0E0;
    --text-color-dark: #1A1A1A;
    --bg-color: #0A0A0A;
    --bg-color-light: #141414;
    --bg-color-lighter: #1E1E1E;
    --light-bg: #1E1E1E;
    --dark-bg: #0A0A0A;
    --transition: all 0.3s ease;
    --shadow-color: rgba(204, 0, 0, 0.2);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin-top: 100px; /* Espacio para el header */
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    height: 60px;
    background: white;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Efecto blur solo para la parte superior */
.main-header::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px; /* Solo la altura del espacio superior */
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
}

.logo-container {
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.logo img {
    width: 100px;
    height: auto;
    filter: none;
    object-fit: contain;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1;
    margin-top: 0;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-calltoaction {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    width: 100%;
    z-index: 1000
}

.hero-calltoaction h2 {
    font-size: 15px;
    font-weight: 600;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Yellowtail', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-calltoaction{
        flex-direction: column;
    }
}

/* Section Styles */
.section {
    position: relative;
    z-index: 1;
    padding: 5rem 1rem;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 4rem;
    width: 100%;
}

.section h2 {
    font-family: 'Yellowtail', cursive;
    text-align: center;
    margin-bottom: 3rem;
    color: #E0E0E0;
    font-size: 3.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--primary-color);
}

/* News Section */
.news-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.news-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Promotions Section */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    width: 100%;
}

.promo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.promo-overlay h3 {
    color: white;
    font-family: 'Yellowtail', cursive;
    font-size: 2rem;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.promo-item:hover img {
    transform: scale(1.05);
}

.promo-item:hover .promo-overlay {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .promo-item {
        aspect-ratio: unset;
        height: auto;
    }

    .promo-item img {
        width: 100%;
        height: auto;
        aspect-ratio: unset;
    }

    .promo-overlay {
        transform: translateY(0);
        padding: 1.5rem;
        background: linear-gradient(transparent, rgba(0,0,0,0.9));
    }

    .promo-overlay h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }

    .section {
        padding: 3rem 1rem;
    }

    .promotions-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .promo-item {
        aspect-ratio: unset;
        height: auto;
    }

    .promo-item img {
        width: 100%;
        height: auto;
        aspect-ratio: unset;
    }

    .promo-overlay {
        padding: 1.2rem;
    }

    .promo-overlay h3 {
        font-size: 1.5rem;
    }

    /* Fix other potential horizontal scroll issues */
    .hero,
    .menu-gallery,
    .location-cards,
    .about-content,
    .contact-info,
    .gallery-grid,
    .main-footer {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    .gallery-grid {
        padding: 0.5rem;
    }

    .menu-gallery {
        margin: 0;
    }

    .location-cards {
        padding: 0;
    }
}

/* Menu Section */
.menu-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.menu-image {
    display: block;
    transition: transform 0.3s ease;
    position: relative;
}

.menu-image::after {
    content: 'Click to view PDF';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(204, 0, 0, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-image:hover::after {
    opacity: 1;
}

.menu-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.menu-image:hover {
    transform: translateY(-5px);
}

.menu-image:hover img {
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.other-menus {
    text-align: center;
    padding: 4rem 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(204, 0, 0, 0.05);
    border: 1px solid rgba(204, 0, 0, 0.1);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 200px;
}

.menu-item:hover {
    transform: translateY(-5px);
    background: rgba(204, 0, 0, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.menu-item h3 {
    font-family: 'Yellowtail', cursive;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
}

.menu-item span {
    color: var(--primary-color);
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.menu-item:hover span {
    opacity: 1;
}

@media (max-width: 768px) {
    .menu-gallery {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .menu-image::after {
        opacity: 1;
        font-size: 0.8rem;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .menu-item {
        padding: 1.5rem;
        min-height: 180px;
    }

    .menu-item h3 {
        font-size: 1.8rem;
    }
}

/* Order Section */
.order-options {
    max-width: 1000px;
    margin: 0 auto;
}

.pickup-option {
    text-align: center;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.location-card {
    background: rgba(204, 0, 0, 0.05);
    border: 1px solid rgba(204, 0, 0, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.location-card h4 {
    font-family: 'Yellowtail', cursive;
    font-size: 2.2rem;
    color: var(--text-color);
    margin: 0;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-wrap: wrap;
}

.phone-number .pickup-text {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-left: 0.5rem;
    font-style: italic;
    font-weight: normal;
}

.pickup-text {
    margin-top: 1rem;
}
.phone-number:hover {
    color: var(--text-color);
}

.phone-number:hover .pickup-text {
    opacity: 1;
}

.order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto;
}

.order-button i {
    font-size: 1.1rem;
}

.order-button:hover {
    background: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.doordash-button {
    display: block;
    transition: all 0.3s ease;
}

.doordash-button img {
    width: 125px;
    height: auto;
}

.doordash-button:hover {
    transform: translateY(-2px);
}

.pickup-note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(204, 0, 0, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pickup-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.pickup-note p {
    margin: 0;
    color: var(--text-color);
    font-style: italic;
}

@media (max-width: 768px) {
    .location-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .location-card {
        padding: 1.5rem;
    }

    .location-card h4 {
        font-size: 1.8rem;
    }

    .phone-number {
        font-size: 1rem;
    }

    .pickup-note {
        flex-direction: column;
        text-align: center;
    }
}

/* About Us Section */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

.about-paragraph.highlight {
    background: rgba(204, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.about-paragraph.highlight a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about-paragraph.highlight a:hover {
    color: #e60000;
    text-decoration: underline;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 0 1rem;
        gap: 2rem;
    }

    .about-paragraph {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-image {
        max-height: 300px;
    }

    .about-paragraph.highlight {
        padding: 1rem;
    }
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.location-wrapper {
    position: relative;
    padding-top: 250px;
}

.location-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
    z-index: -1;
    overflow: hidden;
    border-radius: 20px;
}

.location-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
    pointer-events: none;
}

.location-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.5s ease;
}

.location-wrapper:hover .location-background img {
    transform: scale(1.05);
}

.location-info {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(204, 0, 0, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    margin-top: auto;
    backdrop-filter: blur(5px);
}

.location-info:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.location-info h3 {
    font-family: 'Yellowtail', cursive;
    font-size: 2.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-item p,
.contact-item a {
    margin: 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.view-gallery-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.view-gallery-btn:hover {
    background: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

.view-gallery-btn i {
    color: #E0E0E0;
    font-size: 1.1rem;
}

@media (max-width: 1200px) {
    .contact-info {
        gap: 3rem;
        padding: 2rem;
    }

    .location-wrapper {
        padding-top: 200px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 1rem;
    }

    .location-wrapper {
        padding-top: 180px;
    }

    .location-info {
        padding: 1.5rem;
    }

    .location-info h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        font-size: 1rem;
    }

    .view-gallery-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .location-background {
        height: calc(100% - 30px);
    }
}

/* Gallery Section */
#gallery.section.no-padding {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    padding: 10px;
    margin: 0;
    width: 100%;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

/* Definir tamaños específicos para crear el efecto collage */
.gallery-grid img:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery-grid img:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.gallery-grid img:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.gallery-grid img:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.gallery-grid img:nth-child(5) { grid-column: span 5; grid-row: span 2; }
.gallery-grid img:nth-child(6) { grid-column: span 4; grid-row: span 2; }
.gallery-grid img:nth-child(7) { grid-column: span 6; grid-row: span 2; }
.gallery-grid img:nth-child(8) { grid-column: span 6; grid-row: span 2; }
.gallery-grid img:nth-child(9) { grid-column: span 4; grid-row: span 2; }
.gallery-grid img:nth-child(10) { grid-column: span 4; grid-row: span 2; }
.gallery-grid img:nth-child(11) { grid-column: span 4; grid-row: span 2; }

.gallery-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    
    .gallery-grid img:nth-child(n) {
        grid-column: span 4;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding: 8px;
    }
    
    .gallery-grid img:nth-child(n) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        padding: 5px;
    }
    
    .gallery-grid img:nth-child(n) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 5px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox.active .lightbox-content img {
    opacity: 1;
    transform: scale(1);
}

.lightbox .close,
.lightbox .nav {
    position: absolute;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
}

.lightbox .close {
    top: 20px;
    right: 20px;
    font-size: 24px;
}

.lightbox .nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.lightbox .prev {
    left: 20px;
}

.lightbox .next {
    right: 20px;
}

.lightbox .close:hover,
.lightbox .nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox .nav:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Footer */
.main-footer {
    background: linear-gradient(var(--dark-bg), var(--dark-bg));
    color: white;
    padding: 3rem 5%;
    text-align: center;
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
    background: var(--bg-color-light);
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--text-color);
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 1s ease-out;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .gallery-grid img {
        height: 200px;
    }

    .lightbox .nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .section h2 {
        font-size: 2.8rem;
    }

    .other-menus h3,
    .order-options h3,
    .contact-info h3 {
        font-size: 2rem;
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    body {
        margin-top: 80px;
    }

    .main-header {
        top: 30px;
        height: 50px;
    }

    .logo-container {
        width: 120px;
        height: 120px;
        top: -35px;
        padding: 15px;
    }

    .logo img {
        width: 80px;
    }

    .section {
        padding: 3rem 15px;
        margin-bottom: 2rem;
    }

    .section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    /* Hero adjustments */
    .hero-content {
        padding: 1rem 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    /* News adjustments */
    .news-container {
        padding: 0;
    }

    /* Promotions adjustments */
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }

    .promo-item {
        aspect-ratio: unset;
    }

    .promo-overlay h3 {
        font-size: 1.5rem;
    }

    /* Menu adjustments */
    .menu-gallery {
        padding: 15px;
        gap: 15px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }

    .menu-item {
        padding: 1.5rem 15px;
        min-height: 150px;
    }

    .menu-item h3 {
        font-size: 1.5rem;
    }

    /* Order adjustments */
    .location-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 1rem 0;
    }

    .location-card {
        padding: 1.5rem 15px;
    }

    .location-card h4 {
        font-size: 1.8rem;
    }

    .phone-number {
        font-size: 1rem;
    }

    .order-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .doordash-button img {
        width: 100px;
    }

    /* About adjustments */
    .about-content {
        padding: 0;
    }

    .about-paragraph {
        font-size: 0.95rem;
    }

    /* Contact adjustments */
    .contact-info {
        padding: 15px;
    }

    .location-wrapper {
        padding-top: 150px;
    }

    .location-info {
        padding: 1.2rem 15px;
    }

    .location-info h3 {
        font-size: 1.8rem;
    }

    .contact-item {
        gap: 0.8rem;
    }

    .contact-item i {
        font-size: 1.2rem;
    }

    .contact-item p,
    .contact-item a {
        font-size: 0.95rem;
    }

    /* Gallery adjustments */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px;
    }

    .gallery-grid img {
        height: 200px;
    }

    /* Lightbox adjustments */
    .lightbox .close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .lightbox .nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .lightbox .prev {
        left: 10px;
    }

    .lightbox .next {
        right: 10px;
    }

    /* Footer adjustments */
    .main-footer {
        padding: 2rem 15px;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
} 