html {
    scroll-behavior: smooth;
}
/* ==========================================
   1. GLOBAL STYLES & RESET
   ========================================== */
/* ==========================================
   1. GLOBAL STYLES & RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FDFBF7;
    color: #2D2D2D;
    line-height: 1.6;
}

/* ==========================================
   2. NAVBAR
   ========================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #D3411A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    white-space: nowrap;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #FCECE6;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
}

.nav-links .nav-cta {
    background-color: #FFFFFF;
    color: #D3411A;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links .nav-cta:hover {
    background-color: #FCECE6;
    color: #D3411A;
}

/* ==========================================
   3. HERO SECTION
   ========================================== */
.hero-section {
    background-color: #D3411A;
    color: #FFFFFF;
    padding: 4rem 5% 6rem 5%;
}

.hero-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.tagline {
    font-family: 'Anton', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    color: #FCECE6;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.description {
    font-size: 1.1rem;
    color: #FCECE6;
    margin-bottom: 2rem;
    max-width: 500px;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-order {
    background-color: #1E1E1E;
    color: #FFFFFF;
}

.btn-menu {
    background-color: #FFFFFF;
    color: #D3411A;
}

.operating-note {
    font-size: 0.85rem;
    color: #FCECE6;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
}

.hero-card {
    flex: 1;
    background-color: #1E1E1E;
    border-radius: 24px;
    overflow: hidden;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
}

.card-caption {
    padding: 1.5rem 1rem 1rem 1rem;
    background-color: #F7EAD3;
    color: #1E1E1E;
    border-radius: 16px;
    margin-top: 10px;
}

.card-caption h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.3rem;
}

.card-caption p {
    font-size: 0.85rem;
    opacity: 0.8;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
}

/* ==========================================
   4. MENU SECTION
   ========================================== */
.menu-section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    font-family: 'Anton', sans-serif;
    font-size: 0.8rem;
    color: #D3411A;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.section-subtitle {
    color: #666;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.05rem;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.food-card {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.food-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.food-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1E1E1E;
    letter-spacing: 0.5px;
}

/* ==========================================
   5. HANGOUT SECTION
   ========================================== */
.hangout-section {
    padding: 5rem 5%;
    background-color: #F7EAD3;
}

.hangout-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 4rem;
}

.hangout-image-box {
    flex: 1;
}

.hangout-image-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
}

.hangout-info {
    flex: 1;
}

.hangout-info h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hangout-info p {
    color: #4A4A4A;
    margin-bottom: 2rem;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.05rem;
}

.features-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: #FFFFFF;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* ==========================================
   6. ORDER SECTION
   ========================================== */
.order-section {
    padding: 5rem 5% 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.order-box {
    background-color: #EFE6D5;
    border-radius: 24px;
    padding: 3.5rem;
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
}

.order-left {
    flex: 1.5;
}

.order-left h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.order-left p {
    color: #555;
    margin-bottom: 2rem;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.05rem;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #224229;
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
    background-color: #162C1B;
    transform: scale(1.02);
}

.order-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.info-item {
    font-weight: 600;
    font-size: 1.05rem;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
}

/* ==========================================
   7. FOOTER
   ========================================== */
.main-footer {
    background-color: #1E1E1E;
    color: #FCECE6;
    padding: 3rem 5% 2rem 5%;
    text-align: center;
}

.footer-brand {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #B0B0B0;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #FCECE6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D3411A;
}

.footer-copy {
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
}

/* ==========================================
   8. RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero-container,
    .hangout-container {
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }

    .order-box {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-container,
    .hangout-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-card {
        width: 100%;
    }

    .hero-image {
        height: 250px;
    }

    .food-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .hangout-info h2 {
        font-size: 2.2rem;
    }

    .features-row {
        flex-direction: column;
        align-items: center;
    }

    .order-left h2 {
        font-size: 2.2rem;
    }

    .order-box {
        padding: 2rem;
        text-align: center;
    }

    .order-right {
        align-items: center;
    }

    .main-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 2rem 5% 4rem 5%;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }

    .order-box {
        padding: 1.5rem;
    }

    .whatsapp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .food-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .food-card {
        padding: 0.8rem;
    }

    .food-card h3 {
        font-size: 1rem;
    }

    .food-card img {
        height: 130px;
    }
}

/* ==========================================
   9. DESKTOP OPTIMIZATION (1200px and above)
   ========================================== */
@media (min-width: 1200px) {
    .hero-container {
        gap: 5rem;
    }
    
    .hero-text h1 {
        font-size: 4.5rem;
    }
    
    .hero-card {
        max-width: 500px;
        margin-left: auto;
    }
    
    .food-grid {
        gap: 2.5rem;
    }
    
    .food-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .food-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }
    
    .main-footer {
        padding: 3rem 10% 2rem 10%;
    }
}

@media (min-width: 1400px) {
    .hero-container,
    .hangout-container {
        max-width: 1300px;
    }
    
    .hero-text h1 {
        font-size: 5rem;
    }
}