/* ============================================================================
   NIKKI'S KITCHEN - MOBILE-FIRST CSS
   Base styles are for mobile (320px-480px)
   Then tablet (481px-768px)
   Then desktop (769px+)
============================================================================ */

/* ============================================================================
   CSS VARIABLES
============================================================================ */
:root {
    --primary: #8B4513;
    --accent: #800020;
    --gold: #B8860B;
    --text-dark: #2c1810;
    --text-light: #666;
    --bg-light: #FAF9F6;
    --white: #ffffff;
}

/* ============================================================================
   RESET & BASE STYLES (MOBILE FIRST)
============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ============================================================================
   NAVIGATION (MOBILE FIRST)
============================================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Logo - Mobile */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Mobile Menu - Hidden by default */
.nav-menu {
    position: fixed;
    left: -100%;
    top: 56px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    list-style: none;
    z-index: 999;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: 0.5rem 0;
    display: block;
}

.nav-link {
    display: block;
    padding: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

/* Hamburger - Mobile Only */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ============================================================================
   HERO SECTION (MOBILE FIRST)
============================================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    max-height: 100vh;
    overflow: hidden;
    background: var(--text-dark);
    margin-top: 56px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a0f08;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(128, 0, 32, 0.3) 100%);
}

/* Hero Content - Mobile */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: var(--white);
    width: 90%;
    max-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.hero-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 300;
    line-height: 1.5;
}

.hero-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.3);
}

.hero-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

/* Slider Navigation - Mobile */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-nav.prev {
    left: 5px;
}

.slider-nav.next {
    right: 5px;
}

.slider-nav svg {
    width: 20px;
    height: 20px;
}

/* Slider Indicators - Mobile */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 100;
    padding: 0 10px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background: var(--white);
    width: 24px;
    border-radius: 10px;
}

/* ============================================================================
   ABOUT SECTION (MOBILE FIRST)
============================================================================ */
.about {
    padding: 3rem 0;
    background: var(--white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    width: 100%;
}

.section-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item svg {
    margin: 0 auto 1rem;
    stroke: var(--accent);
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================================================
   MENU SECTION (MOBILE FIRST)
============================================================================ */
.menu {
    padding: 3rem 0;
    background: var(--bg-light);
}

.menu .section-title {
    text-align: center;
}

.menu .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.menu .section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.menu-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
    display: block;
}

.menu-item:hover .menu-image img {
    transform: scale(1.08);
}

.menu-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.menu-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1rem;
    flex: 1;
}

.menu-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
}

.menu-btn:hover {
    background: var(--gold);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
    transition: all 0.3s ease;
}

    

.menu-btn:hover {
    background: var(--gold);
    transform: translateX(5px);
}

.view-all-container {
  text-align: center;
  margin: 40px 0;
}

.view-all-btn {
  display: inline-block;
  background-color: #800020;
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.view-all-btn:hover {
  background-color: #c0392b;
  box-shadow: 0 6px 8px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* ============================================================================
   DAILY SPECIALS (MOBILE FIRST)
============================================================================ */
.specials {
    padding: 3rem 0;
    background: var(--white);
}

.specials .section-title {
    text-align: center;
}

.specials .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.specials .section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
}

.specials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.special-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--gold);
}

.special-day {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.special-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.special-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================================================
   HOW IT WORKS (MOBILE FIRST)
============================================================================ */
.how-it-works {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.how-it-works .section-title {
    text-align: center;
}

.how-it-works .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.how-it-works .section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-50px);
}

.step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Fade animations */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================================
   CONTACT SECTION (MOBILE FIRST)
============================================================================ */
.contact {
    padding: 3rem 0;
    background: var(--bg-light);
}

.contact .section-title {
    text-align: center;
}

.contact .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact .section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-card svg {
    margin: 0 auto 1rem;
    stroke: var(--accent);
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--accent);
}

/* ============================================================================
   FOOTER (MOBILE FIRST)
============================================================================ */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-col p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.btn_position{
    position: relative;
    left: 30%;
}

.txt_center{
    text-align: center;
}

/* ============================================================================
   TABLET STYLES (481px - 768px)
============================================================================ */
@media (min-width: 481px) {
    .container {
        padding: 0 2rem;
    }

    

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .menu-image {
        height: 320px;
    }

    .specials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================================
   DESKTOP STYLES (769px+)
============================================================================ */
@media (min-width: 769px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }

    /* Desktop Navigation */
    .hamburger {
        display: none;
    }

    .nav-container {
        padding: 1rem 2rem;
    }

    .logo img {
        height: 50px;
    }

    .nav-menu {
        position: static !important;
        flex-direction: row !important;
        width: auto !important;
        padding: 0 !important;
        box-shadow: none !important;
        gap: 2rem;
        display: flex !important;
        align-items: center;
        z-index: auto;
        top: auto;
        left: auto !important;
        background: transparent !important;
        transition: none;
    }

    .nav-menu li {
        margin: 0 !important;
        display: inline-block !important;
        width: auto !important;
    }

    .nav-link {
        padding: 0.5rem 0 !important;
        font-size: 1rem !important;
        display: inline-block;
        width: auto !important;
    }

    /* Desktop Hero */
    .hero {
        margin-top: 70px;
    }

    .hero-slide img {
        transform: scale(0.9);
        transform-origin: center center;
    }

    .slide-overlay {
        background: linear-gradient(135deg, rgba(139, 69, 19, 0.25) 0%, rgba(128, 0, 32, 0.25) 100%);
    }

    .hero-content {
        max-width: 900px;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    .slider-nav {
        width: 50px;
        height: 50px;
    }

    .slider-nav.prev {
        left: 30px;
    }

    .slider-nav.next {
        right: 30px;
    }

    .slider-indicators {
        bottom: 50px;
        gap: 12px;
    }

    .indicator {
        width: 12px;
        height: 12px;
    }

    .indicator.active {
        width: 40px;
    }

    /* Desktop About */
    .about {
        padding: 5rem 0;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-image {
        width: 45%;
    }

    .about-text {
        width: 55%;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-title::after {
        left: 0;
        transform: none;
    }

    /* Desktop Menu */
    .menu {
        padding: 5rem 0;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .menu-image {
        height: 300px;
    }

    .menu-content h3 {
        font-size: 1.6rem;
    }

    .menu-content p {
        font-size: 1.05rem;
    }

    /* Desktop Specials */
    .specials {
        padding: 5rem 0;
    }

    .specials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Desktop How It Works */
    .how-it-works {
        padding: 5rem 0;
    }

    .steps-container {
        gap: 3rem;
    }

    /* Desktop Contact */
    .contact {
        padding: 5rem 0;
    }

    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Desktop Footer */
    .footer {
        padding: 4rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}