:root {
    --genti-coral: #FF5E4D;
    --genti-navy: #262647;
    --genti-light: #f5f5f7;
}

body {
    background-color: var(--genti-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--genti-navy);
}

#mainNav {
    background-color: var(--genti-navy);
}

.nav-scrolled {
    background-color: var(--genti-navy);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 64px;
    width: auto;
    margin-left: -12px;
}

.appear {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.appear.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery.appear {
    opacity: 1;
    transform: none;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    background: #f5f5f5;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.hover-link {
    transition: all 0.3s ease;
    position: relative;
}

.hover-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--genti-coral);
    transition: width 0.3s ease;
}

.hover-link:hover::after {
    width: 100%;
}

.btn {
    padding: 12px 24px;
    border: 2px solid var(--genti-coral);
    color: var(--genti-coral);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--genti-coral);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--genti-navy);
}

.btn:hover::before {
    left: 0;
}

.hours-grid {
    display: grid;
    gap: 0.5rem;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.day-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.day-row:last-child {
    border-bottom: none;
}

.current-day {
    color: var(--genti-coral);
    font-weight: bold;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--genti-coral);
}

.contact-info {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

section {
    background-color: var(--genti-light);
}

section#hours,
section#contact {
    background-color: var(--genti-navy);
    color: var(--genti-light);
    padding: 3rem 0;
}

.text-genti-navy {
    color: var(--genti-navy);
}

.bg-genti-navy {
    background-color: var(--genti-navy);
}

.info-sections-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Menu Styles */
.menu-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.menu-category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--genti-navy);
    color: var(--genti-navy);
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menu-category-btn:hover,
.menu-category-btn.active {
    background-color: var(--genti-navy);
    color: white;
}

.menu-category {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.menu-category.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .menu-categories {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-category-btn {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .info-sections-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.menu-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--genti-coral);
    border-radius: 0.5rem;
    background: transparent;
    color: var(--genti-coral);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-tab:hover {
    background: rgba(255, 94, 77, 0.1);
}

.menu-tab.active {
    background: var(--genti-coral);
    color: white;
}

.menu-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.menu-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-item {
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (max-width: 640px) {
    .menu-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-tab {
        width: 100%;
        text-align: center;
    }
}

.hero-section {
    min-height: 60vh;
    padding-top: 64px;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(38, 38, 71, 0.95), rgba(38, 38, 71, 0.95)), url('../images/IMG_1066.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    padding: 2rem 0;
}

.hero-subtitle {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.floating-btn {
    position: fixed;
    bottom: 2rem;
    z-index: 40;
    height: 60px;
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.floating-btn.reserve {
    right: 2rem;
    background-color: var(--genti-coral);
    width: 60px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
}

.floating-btn.takeaway {
    right: 7rem;
    background-color: var(--genti-navy);
    border-radius: 30px;
    padding: 0 24px;
}

.floating-btn:hover {
    transform: translateY(-2px) rotate(2deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.nav-link {
    color: white;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--genti-coral);
}

.nav-scrolled .nav-link {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--genti-coral);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active::after {
    width: 80%;
}

.desktop-menu {
    display: flex;
    gap: 2rem;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-menu-button {
        display: none;
    }
}

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

.lightbox.visible {
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.lightbox-content img.loading {
    position: relative;
}

.lightbox-content img.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
    color: var(--genti-coral);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    padding: 20px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    color: var(--genti-coral);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        padding: 30px 20px;
        background: rgba(0, 0, 0, 0.8);
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

.hidden {
    display: none;
}