* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #B8941E;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --black-lighter: #2A2A2A;
    --white: #FFFFFF;
    --gray: #8B8B8B;
    --gray-light: #E5E5E5;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    animation: slideDown 0.5s ease-out;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav a:hover {
    color: var(--gold);
}

.nav a:hover::after {
    width: 100%;
}

.btn-reservation {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-reservation:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-reservation-mobile {
    display: none;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 70px;
        min-height: 80vh;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 60px;
        min-height: 70vh;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    animation: fadeInUp 1s ease-out;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 1rem;
    }
}

.hero-label {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* Special Menu Section */
.special-menu {
    padding: 6rem 0;
    background: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .special-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .special-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.special-card {
    background: var(--black-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.special-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.special-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

@media (min-width: 1025px) {
    .special-card {
        border-radius: 20px;
    }
}

.special-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1025px) {
    .special-image {
        height: 320px;
    }
}

.sushi-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .sushi-image {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .sushi-image {
        min-height: 180px;
    }
}

.special-image:hover .sushi-image,
.speciality-image:hover .sushi-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.special-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (min-width: 1025px) {
    .special-content {
        padding: 2.5rem;
    }
}

.special-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

@media (min-width: 1025px) {
    .special-name {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
}

.special-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.star {
    width: 18px;
    height: 18px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.btn-order {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.8rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 0.85rem;
}

.btn-order:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* Specialities Section */
.specialities-section {
    padding: 6rem 0;
    background: var(--black-light);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.filter-btn {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 0.8rem 2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.specialities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .specialities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .specialities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.speciality-item {
    background: var(--black);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.speciality-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.speciality-item:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

@media (min-width: 1025px) {
    .speciality-item {
        border-radius: 20px;
    }
}

.speciality-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1025px) {
    .speciality-image {
        height: 260px;
    }
}

.speciality-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (min-width: 1025px) {
    .speciality-content {
        padding: 2rem;
    }
}

.speciality-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

@media (min-width: 1025px) {
    .speciality-name {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
}

.speciality-ingredients {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

@media (min-width: 1025px) {
    .speciality-ingredients {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }
}

.speciality-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

@media (min-width: 1025px) {
    .speciality-footer {
        gap: 1.5rem;
    }
}

.speciality-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
}

@media (min-width: 1025px) {
    .speciality-price {
        font-size: 2rem;
    }
}

.btn-add {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 1025px) {
    .btn-add {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

.btn-add:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Dining Events Section */
.dining-events {
    position: relative;
    padding: 6rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.events-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.events-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.7);
}

.dining-events .section-header {
    position: relative;
    z-index: 1;
}

.events-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.btn-event {
    padding: 1rem 3rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--gold);
}

.btn-event-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-event-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-event-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-event-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* Marketing Section */
.marketing-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: var(--black);
}

.marketing-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.marketing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.7);
}

.marketing-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.marketing-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.marketing-label {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.marketing-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.marketing-description {
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.marketing-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.marketing-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-marketing {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 1.2rem 3.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    text-decoration: none;
    display: inline-block;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.btn-marketing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-marketing:hover::before {
    width: 300px;
    height: 300px;
}

.btn-marketing:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

/* Responsive Marketing Section */
@media (max-width: 768px) {
    .marketing-section {
        padding: 4rem 0;
    }

    .marketing-title {
        font-size: 2.5rem;
    }

    .marketing-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .marketing-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .btn-marketing {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .marketing-section {
        padding: 3rem 0;
    }

    .marketing-title {
        font-size: 2rem;
    }

    .marketing-description {
        font-size: 0.95rem;
    }

    .marketing-feature {
        font-size: 0.9rem;
    }

    .btn-marketing {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Footer */
.footer {
    background: var(--black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.footer-column p {
    color: var(--gray);
    margin-bottom: 0.8rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-column a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366 !important;
    background: rgba(37, 211, 102, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    transition: all 0.3s;
    font-weight: 500;
}

.whatsapp-link span {
    font-size: 1.2rem;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366 !important;
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-icon {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.social-icon:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
    order: 3;
    margin-left: auto;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */

/* Tablets and smaller desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .special-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav {
        gap: 1.5rem;
    }

    .nav a {
        font-size: 0.85rem;
    }

    .footer {
        padding: 3.5rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-column h4 {
        font-size: 1.15rem;
    }
}

/* Medium tablets */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .header .container {
        position: relative;
    }

    .menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .header-actions {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        gap: 2.5rem;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        box-shadow: none;
        overflow-y: auto;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: -1;
    }

    .nav a {
        font-size: 1.2rem;
        width: auto;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    .btn-reservation-mobile {
        display: block;
        margin-top: 2rem;
        width: 100%;
        max-width: 300px;
    }

    .nav a::after {
        display: none;
    }

    .hero {
        margin-top: 70px;
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .special-menu,
    .specialities-section,
    .dining-events {
        padding: 4rem 0;
    }

    .special-grid,
    .specialities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    .events-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-event {
        width: 100%;
        max-width: 300px;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .footer-column p,
    .footer-column a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-links {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 0.8rem 0;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .btn-reservation {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .hero {
        margin-top: 60px;
        min-height: 70vh;
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-label {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .special-menu,
    .specialities-section,
    .dining-events {
        padding: 3rem 0;
    }

    .special-content,
    .speciality-content {
        padding: 1.5rem;
    }

    .special-name,
    .speciality-name {
        font-size: 1.5rem;
    }

    .special-description,
    .speciality-ingredients {
        font-size: 0.85rem;
    }

    .speciality-price {
        font-size: 1.5rem;
    }

    .filter-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        position: relative;
        padding-bottom: 0.8rem;
    }

    .footer-column h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: var(--gold);
    }

    .footer-column p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .footer-column a {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .social-icons {
        align-items: center;
        gap: 1rem;
    }

    .social-icon {
        font-size: 0.95rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        order: 2;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        order: 1;
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-order,
    .btn-add {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .special-name,
    .speciality-name {
        font-size: 1.3rem;
    }
}
