/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Urban Color Palette */
    --bg-dark: #1a1a1a;
    --bg-light: #f5f5f5;
    --accent-dark: #2c2c2c;
    --accent-brown: #8B4513;
    --accent-light: #D4A574;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --border-color: #e0e0e0;
    
    /* Spacing */
    --gap-sm: 1rem;
    --gap-md: 2rem;
    --gap-lg: 4rem;
    --gap-xl: 6rem;
    
    /* Typography */
    --font-main: 'Space Grotesk', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-light);
    border-bottom: 2px solid var(--text-dark);
    z-index: 1000;
    padding: 1.5rem 0;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-box {
    width: 60px;
    height: 60px;
    background: var(--text-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    border: 3px solid var(--text-dark);
    position: relative;
}

.logo-text {
    position: relative;
    z-index: 1;
}

.logo-subtitle {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.main-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-item {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-dark);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--text-dark);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SPLIT
   ============================================ */
.hero-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 90px;
}

.hero-left {
    background: var(--text-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    padding: 4rem;
    position: relative;
}

.hero-right {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 500px;
}

.hero-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-big {
    display: block;
    font-size: 7rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -3px;
    font-family: var(--font-main);
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--text-light);
    color: var(--text-dark);
    padding: 1.25rem 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 3px solid var(--text-light);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-light);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    display: block;
}

.visual-decor {
    position: absolute;
    border: 3px solid var(--text-dark);
}

.decor-circle-1 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: -30px;
    right: -30px;
    z-index: 1;
}

.decor-circle-2 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    bottom: -20px;
    left: -20px;
    z-index: 1;
}

.decor-line {
    width: 200px;
    height: 3px;
    top: 50%;
    right: -100px;
    transform: rotate(45deg);
    z-index: 1;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--gap-xl) 0;
    background: var(--bg-light);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--gap-lg);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    aspect-ratio: 3/4;
    background: var(--accent-brown);
    position: relative;
    border: 4px solid var(--text-dark);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--text-light);
    background: var(--accent-brown);
}

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

.about-stat {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--text-dark);
    color: var(--text-light);
    padding: 2rem;
    border: 4px solid var(--text-dark);
    min-width: 200px;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.about-text-content {
    padding: 2rem 0;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 1rem;
    display: block;
}

.section-label-dark {
    color: var(--text-dark);
}

.section-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.section-heading-dark {
    color: var(--text-dark);
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    background: var(--text-dark);
    color: var(--text-light);
    border: 3px solid var(--text-dark);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
}

.feature-title {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    padding: var(--gap-xl) 0;
    background: var(--bg-light);
}

.menu-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
}

.menu-header-left {
    flex: 1;
}

.menu-filter {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--text-dark);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

.filter-btn.active {
    background: var(--text-dark);
    color: var(--text-light);
}

.menu-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: var(--text-light);
    border: 3px solid var(--text-dark);
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: start;
    transition: all 0.3s ease;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0 var(--text-dark);
}

.menu-card-number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-gray);
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.menu-card-content {
    flex: 1;
}

.menu-item-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.menu-item-desc {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-item-price {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.menu-card-img {
    width: 80px;
    height: 80px;
    border: 2px solid var(--text-dark);
    overflow: hidden;
}

.img-placeholder-small {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--accent-light);
    color: var(--text-dark);
}

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

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: var(--gap-xl) 0;
    background: var(--text-dark);
    color: var(--text-light);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-header {
    margin-bottom: 4rem;
}

.gallery-header .section-label {
    color: var(--accent-light);
}

.gallery-header .section-heading {
    color: var(--text-light);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    grid-auto-rows: 250px;
}

.gallery-item {
    overflow: hidden;
    border: 3px solid var(--text-light);
    position: relative;
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
}

.gallery-img .img-placeholder {
    font-size: 4rem;
    background: var(--accent-brown);
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}

.gallery-img img.loaded {
    opacity: 1;
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--gap-xl) 0;
    background: var(--bg-light);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--text-dark);
}

.contact-label {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.contact-value {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.map-container {
    border: 4px solid var(--text-dark);
    aspect-ratio: 4/3;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--accent-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.map-text {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-label {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 0;
    border-top: 2px solid var(--text-light);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-copyright {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-left {
        padding: 3rem 2rem;
    }
    
    .hero-right {
        padding: 3rem 2rem;
        min-height: 50vh;
    }
    
    .title-big {
        font-size: 5rem;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .menu-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-split {
        margin-top: 90px;
    }
    
    .title-big {
        font-size: 3.5rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    
    .gallery-item-large,
    .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .contact-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
