/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', 'Courier New', 'Courier', monospace;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    letter-spacing: -0.02em;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    font-weight: 500;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

.nav-brand h1 {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-left: -10rem;
}

.social-link {
    color: #000;
    font-size: 1.2rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

.nav-social {
    display: inline-flex;
    align-items: center;
}

.nav-social img {
    width: auto;
    height: 60px;
    margin-top: -25px;
    display: block;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #000;
    z-index: 1101;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-overlay .nav-link {
    font-size: 2rem;
    margin: 1rem 0;
    color: #000;
    text-align: center;
}

/* Seções */
.section {
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.8;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    margin-top: 2rem;
}

.hero-image img {
    width: auto;
    height: auto;
    border-radius: 8px;
}

/* Hours Section */
.hours {
    padding: 4rem 2rem;
}

.hours-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.hours-text {
    text-align: center;
}

.hours-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hours-text h4 {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
}

.contact-info {
    text-align: center;
    padding-bottom: 1rem;
}

.nav-links-bottom {
    margin-bottom: 1rem;
}

.nav-links-bottom a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    margin: 0 0.5rem;
    transition: opacity 0.3s ease;
}

.nav-links-bottom a:hover {
    opacity: 0.7;
}

.dot {
    color: #000;
    margin: 0 0.5rem;
}

.phone {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.phone a {
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Menu Section */
.menu {
    background: #fafafa;
}

.menu-header {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.menu-categories {
    display: grid;
    gap: 4rem;
}

.menu-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.menu-items {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.menu-item > div:not(.menu-item-img) {
    width: 100%;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    width: 100%;
}

.item-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: underline;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

.description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.menu-item-img {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    background: #f3f3f3;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Chef Section */
.chef {
    background: #fff;
}

.chef-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-direction: column;
}

.chef-text p {
    font-size: 1.7rem;
    line-height: 1.7;
    color: #000;
    font-weight: 900;
    width: 70%;
    text-align: left;
    margin-left: 15%;
    margin-right: auto;
    margin-bottom: 8rem;
}

.chef-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 6rem;
}

.chef-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.chef-story {
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding-left: 5%;
    padding-right: 5%;
}

.story-header {
    text-align: center;
}

.story-header h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 1rem;
}

.story-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.year {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
}

.story-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 700;
    color: #000;
}

.story-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 6rem;
}

.story-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.story-images img:hover {
    transform: scale(1.05);
}



/* Location Section */
.location {
    text-align: center;
}

.location-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.location-info {
    max-width: 600px;
    margin: 0 auto;
}

.location-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.location-info a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.location-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        justify-content: flex-start;
        position: relative;
    }
    
    .nav-links,
    .nav-social {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-brand {
    margin: 0;
    }

    .nav-brand h1{
    margin: 0;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hours-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chef-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chef-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-images {
        grid-template-columns: 1fr;
    }
    
    .name-fields {
        grid-template-columns: 1fr;
    }
    
    .reservation-form {
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section {
        padding: 4rem 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .menu-item {
        padding: 1.5rem;
    }
    
    .reservation-form {
        padding: 1.5rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item,
.chef-story,
.reservation-form {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
