* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal: #00D9C0;
    --navy: #0A1828;
    --orange: #FF6B35;
    --pink: #FF006E;
    --lime: #8AC926;
    --cream: #FFF8F0;
    --charcoal: #2D2D2D;
}

body {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--cream);
    direction: rtl;
    overflow-x: hidden;
}

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

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, var(--teal), var(--pink));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 217, 192, 0.4);
    z-index: 9999;
    animation: float-pulse 3s infinite;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

@keyframes float-pulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

/* HERO - MAXIMALIST */
.hero-max {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--teal) 0%, var(--pink) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: rotate(-2deg);
    margin: -2rem -2rem 4rem -2rem;
    padding: 4rem 2rem;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--orange);
    top: -200px;
    right: -100px;
    animation: float-shape 20s infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--lime);
    bottom: -100px;
    left: 10%;
    animation: float-shape 15s infinite reverse;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--navy);
    top: 30%;
    left: -150px;
    animation: float-shape 25s infinite;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 50px) rotate(180deg); }
}

.hero-content-max {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

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

.nori-logo-main {
    max-width: 300px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: logo-bounce 2s ease-out;
}

@keyframes logo-bounce {
    0% { transform: scale(0) rotate(-10deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1) rotate(-3deg); }
}

.hero-mega-title {
    font-family: 'Heebo', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 12vw, 8rem);
    line-height: 0.9;
    color: white;
    text-shadow: 5px 5px 0 var(--navy);
    margin-bottom: 1.5rem;
    transform: rotate(-2deg);
}

.hero-mega-title .line-1,
.hero-mega-title .line-2 {
    display: block;
}

.hero-mega-title .line-2 {
    color: var(--orange);
}

.hero-punch {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.hero-ctas {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Heebo', sans-serif;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.btn-primary:hover {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.7);
}

.btn-secondary {
    background: white;
    color: var(--navy);
    border: 3px solid var(--navy);
}

.btn-secondary:hover {
    transform: scale(1.1) rotate(3deg);
    background: var(--lime);
}

.scroll-bounce {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: white;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-20px); }
}

/* Fresh Badge */
.fresh-badge {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 9998;
    animation: badge-spin 10s linear infinite;
}

@keyframes badge-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.badge-inner {
    background: var(--lime);
    border: 4px solid var(--navy);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(138, 201, 38, 0.5);
}

.badge-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    transform: rotate(-10deg);
}

.badge-emoji {
    font-size: 2rem;
}

/* Section Titles */
.section-title-big {
    text-align: center;
    margin-bottom: 4rem;
}

.title-main {
    display: block;
    font-family: 'Heebo', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--navy);
    line-height: 1;
    transform: rotate(-2deg);
    display: inline-block;
}

.title-sub {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--teal);
    letter-spacing: 3px;
    margin-top: 0.5rem;
}

.section-title-big.light .title-main {
    color: white;
}

.section-title-big.light .title-sub {
    color: var(--orange);
}

/* Story Section - CHAOTIC */
.story-chaos {
    padding: 6rem 0;
    background: var(--cream);
}

.story-grid-chaos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-rotate-left {
    transform: rotate(-2deg);
}

.card-rotate-right {
    transform: rotate(2deg);
}

.story-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.card-stamp {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    transform: rotate(10deg);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.story-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.card-big {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    color: white;
}

.chef-placeholder {
    background: var(--lime);
    border: 5px dashed var(--navy);
    border-radius: 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(1deg);
}

.placeholder-sticker {
    text-align: center;
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    color: var(--navy);
}

.placeholder-sticker small {
    display: block;
    font-size: 1rem;
}

/* Menu Section - STICKER BOMB */
.menu-sticker {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, #FFE8D6 100%);
}

.menu-grid-sticker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.menu-sticker-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 5px solid var(--navy);
}

.rotate-1 { transform: rotate(-2deg); }
.rotate-2 { transform: rotate(1deg); }
.rotate-3 { transform: rotate(-3deg); }
.rotate-4 { transform: rotate(2deg); }
.rotate-5 { transform: rotate(-1deg); }
.rotate-6 { transform: rotate(3deg); }

.menu-sticker-card:hover {
    transform: rotate(0deg) scale(1.08) translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    z-index: 10;
}

.sticker-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.sticker-content {
    padding: 2rem;
    position: relative;
}

.sticker-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    background: var(--navy);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.sticker-badge.hot {
    background: var(--orange);
}

.sticker-badge.spicy {
    background: var(--pink);
}

.sticker-badge.vegan {
    background: var(--lime);
}

.sticker-content h3 {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.sticker-content p {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.price-tag {
    display: inline-block;
    background: var(--teal);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
}

.menu-note-stamp {
    text-align: center;
    padding: 2rem;
    background: var(--orange);
    color: white;
    border-radius: 20px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    transform: rotate(-1deg);
}

/* Location - COLOR BLOCK */
.location-block {
    padding: 6rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.color-block-bg {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    background: var(--pink);
    opacity: 0.3;
    transform: skewX(-10deg);
}

.location-grid-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.info-block {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.info-block:hover {
    transform: rotate(0deg) scale(1.05);
}

.info-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.info-block h3 {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.info-block a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
}

/* Reviews - BUBBLES */
.reviews-bubbles {
    padding: 6rem 0;
    background: var(--cream);
}

.bubbles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.bubble {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    transform: rotate(-1deg);
}

.bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid white;
}

.bubble:hover {
    transform: rotate(0deg) scale(1.05);
}

.bubble-stars {
    color: var(--orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bubble p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.bubble-author {
    font-weight: 600;
    color: var(--navy);
}

.reviews-note {
    text-align: center;
    color: var(--charcoal);
    font-size: 0.95rem;
}

/* Footer */
.footer-nori {
    background: var(--navy);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.nori-pattern {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(0, 217, 192, 0.05) 35px,
        rgba(0, 217, 192, 0.05) 70px
    );
}

.footer-content-max {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-logo-section img {
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--teal);
}

.footer-links-section h4,
.footer-social-section h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--orange);
}

.footer-links-section a,
.footer-social-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links-section a:hover,
.footer-social-section a:hover {
    color: var(--teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-max {
        margin: 0;
        transform: rotate(0deg);
    }
    
    .floating-cta {
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .fresh-badge {
        top: 1rem;
        left: 1rem;
        transform: scale(0.8);
    }
    
    .menu-grid-sticker,
    .bubbles-grid {
        grid-template-columns: 1fr;
    }
    
    .card-big {
        grid-column: span 1;
    }
}