* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #FEE8AF;
    --primray-color: #ffc643;
    --text-primary: #0d0c0c;
    --text-secondary: #004aad;
    --button-hover: #FFC700;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    min-height: 100%;
    overflow-x: hidden;
}

.hero-container {
    width: 100%;
    position: relative;
    background-image: url("./img/Inkognito_bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: flex;
    align-items: end;
    min-height: 100dvh;
}

.overlay {
  position: absolute;
  inset: 0;
  background: var(--shadow-medium);
  z-index: 1;
}

.hero-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 10;
    flex-wrap: wrap;
}

.food-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-direction: column;
}

.content {
    text-align: center;
    width: 100%;
    max-width: 700px;
    padding: 30px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.3s forwards;
}

.main-message {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    word-spacing: 0.1em;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--primray-color);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    background-color: var(--button-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.brand-logo {
    width: 35%;
    height: 100%;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.5s forwards;
}

.brand-logo .logo{
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* === Menu === */
.menu-container{
    min-height: 100svh;
    background-color: var(--primray-color);
    display: flex;
    gap: 0;
}

.sidebar {
    width: 260px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: inset -2px 0 4px rgba(0, 0, 0, 0.5);
}

.menulogo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.nav-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.4);
}

.nav-btn.active {
    background: #000;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-btn-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.nav-btn-label {
    font-size: 15px;
}

/* ===== RIGHT CONTENT AREA ===== */
.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.content-header {
    padding: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.content-title {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: #000;
    border-radius: 2px;
}

.menu-grid-container {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    display: none;
    text-align: center;
    padding: 48px 32px;
}

.empty-state.show {
    display: block;
}
.empty-state-text {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 600;
}

/*=== Card === */

.menu-card {
    background: rgba(255, 255, 255, 0.40);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.menu-card:hover .card-image::after {
    background: rgba(0, 0, 0, 0.1);
}
.card-image-emoji {
    font-size: 72px;
    z-index: 1;
    transition: transform 0.3s ease;
    width: 100%;
}

.menu-card:hover .card-image-emoji {
    transform: scale(1.1);
}

.card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-name {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-description {
    font-size: 12px;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    flex: 1;
    /*display: -webkit-box;
    -webkit-line-clamp: 3;*/
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 85px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #1a1c1f;
}

.card-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-secondary);
}

.fade-on-view {
    opacity: 0;
    transform: translateY(20px);
}

.fade-on-view.fade-in {
    animation: fadeInUp 0.6s ease-in forwards;
    animation-delay: calc(var(--stagger-index) * 0.1s);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    
  }
  to {
    opacity: 1;
    }
}

.footer-copyright{
    background-color: var(--primray-color);
    padding: 10px 5px;
}

.footer-copyright .copy-text{
    text-align: center;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 935px) {
    .food-container {
        height: 280px;
    }

    .content{
        padding: 0px;
    } 
            
    .cta-button {
        padding: 12px 36px;
        font-size: 16px;
    }
    
    .brand-logo{
        width: 25%;
    }

    .brand-footer {
        bottom: 20px;
    }

    .menu-container{
        flex-direction: column;
        height: auto;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 16px;
    }

    .nav-menu {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch; /* Smooth momentum scrolling on iOS */
        padding-bottom: 8px;
        cursor:grab;
    }

    .nav-btn {
        padding: 10px 12px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav-btn.active .nav-btn-label {
        display: inline;
    }

    .content-area {
        height: auto;
        min-height: 100vh;
    }

    .content-header {
        padding: 20px 16px;
    }

    .content-title {
        font-size: 30px;
    }

    .menu-grid-container {
        padding: 16px;
        max-height: none;
    }

    
}

@media (max-width: 520px) {
    .hero-container {
        padding: 15px;
        align-items: center;

    }

    .food-container {
        height: 220px;
    }

    .brand-logo {
        width: 40%;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .card-image {
        height: 120px;
    }

    .card-content {
        padding: 13px;
    }

    .card-name {
        font-size: 13px;
    }

    .card-description {
        font-size: 11px;
    }

    .card-price {
        font-size: 16px;
    }

    .card-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

}

/* Accessibility: Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    .cta-button {
        transition: background-color 0.2s ease !important;
    }
}

/* Focus states for keyboard navigation */
    .cta-button:focus-visible {
        outline: 3px solid var(--text-secondary);
        outline-offset: 2px;
    }