/*
Theme Name: The Deli
Description: Original, dynamic design - no boring containers
Version: 2.0.0
Author: The Deli Team
*/

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2D2D2D;
    overflow-x: hidden;
}

/* Colors */
:root {
    --deli-sage: #8B9A7A;
    --deli-forest: #5D6B4D;
    --deli-warm-brown: #8B6F47;
    --deli-cream: #F7F3E9;
    --deli-warm-white: #FEFEFE;
    --deli-soft-gray: #7A7A7A;
    --deli-charcoal: #3A3A3A;
    --deli-dark-brown: #3D2914;
    --deli-warm-beige: #E8DCC6;
}

/* HEADER - Keep existing but minimal */
.site-header {
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--deli-warm-beige);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
}

.admin-bar .site-header {
    top: 32px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deli-forest);
    text-decoration: none;
}

.site-tagline {
    font-size: 0.8rem;
    color: var(--deli-sage);
    font-style: italic;
    margin-top: -0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--deli-charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--deli-warm-brown);
}

/* DIAGONAL HERO - Completely Original */
.diagonal-hero {
    height: 100vh;
    position: relative;
    display: flex;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
}

.hero-image-left {
    width: 60%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 85% 0, 70% 100%, 0 100%);
    position: relative;
}

.hero-content-right {
    width: 40%;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--deli-cream) 0%, var(--deli-warm-white) 100%);
    display: flex;
    align-items: center;
    position: relative;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--deli-forest);
    margin-bottom: 1rem;
    line-height: 0.9;
    letter-spacing: -2px;
}

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

.tagline-part {
    display: block;
    font-size: 1.3rem;
    color: var(--deli-warm-brown);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--deli-charcoal);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-coming-soon {
    background: var(--deli-soft-gray);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-learn-more {
    background: transparent;
    color: var(--deli-forest);
    border: 2px solid var(--deli-forest);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: var(--deli-forest);
    color: white;
    transform: translateY(-2px);
}

.floating-badge {
    position: absolute;
    top: 50%;
    right: -50px;
    background: var(--deli-sage);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    transform: rotate(90deg);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 10;
}

/* ZIGZAG STORY SECTION */
.zigzag-section {
    padding: 8rem 0;
    background: var(--deli-warm-white);
}

.zigzag-item {
        display: flex;
        align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 6rem;
}

.zigzag-item.left .zigzag-image {
    order: 1;
}

.zigzag-item.left .zigzag-content {
    order: 2;
}

.zigzag-image {
    flex: 1;
    position: relative;
}

.zigzag-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transform: rotate(-2deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.zigzag-content {
    flex: 1;
    padding: 2rem;
}

.zigzag-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--deli-forest);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.zigzag-content p {
    font-size: 1.2rem;
    color: var(--deli-charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-highlight {
    background: var(--deli-sage);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 600;
    margin-top: 2rem;
    transform: rotate(1deg);
}

/* OVERLAPPING CARDS */
.overlapping-cards {
    padding: 8rem 0;
    background: linear-gradient(45deg, var(--deli-cream) 0%, var(--deli-warm-beige) 100%);
    position: relative;
    overflow: hidden;
}

.cards-container {
    position: relative;
    height: 600px;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.card {
    position: absolute;
    width: 350px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-20px) rotate(0deg) !important;
}

.card-1 {
    top: 50px;
    left: 100px;
    transform: rotate(-5deg);
    z-index: 3;
}

.card-2 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    z-index: 2;
}

.card-3 {
    top: 50px;
    right: 100px;
    transform: rotate(5deg);
    z-index: 1;
}

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

.card-content {
    padding: 1.5rem;
    background: white;
    height: 30%;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deli-forest);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--deli-charcoal);
    font-size: 0.95rem;
}

.cards-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cards-text h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--deli-forest);
    margin-bottom: 1.5rem;
}

.cards-text p {
    font-size: 1.3rem;
    color: var(--deli-charcoal);
    line-height: 1.7;
}

/* FLOWING PROCESS */
.flowing-process {
    padding: 8rem 0;
    background: var(--deli-warm-white);
}

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

.process-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--deli-forest);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: var(--deli-warm-brown);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1rem;
    position: relative;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deli-forest);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--deli-charcoal);
    font-size: 1rem;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--deli-sage);
    font-weight: 900;
}

/* ASYMMETRIC FOOTER */
.asymmetric-footer {
    background: var(--deli-cream);
    padding: 6rem 0;
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.footer-left {
    flex: 1.5;
    padding: 4rem;
    background: var(--deli-forest);
    color: white;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.footer-left h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.footer-left p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.timeline-simple {
    margin-top: 3rem;
}

.timeline-point {
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deli-forest);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--deli-charcoal);
    margin-bottom: 1rem;
}

.contact-note {
    color: var(--deli-soft-gray) !important;
    font-style: italic;
}

.neighborhood-love {
    background: var(--deli-sage);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    transform: rotate(-1deg);
}

.neighborhood-love p {
    margin: 0;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--deli-dark-brown) !important;
    color: var(--deli-warm-white) !important;
    text-align: center !important;
    padding: 2rem !important;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .cards-container {
        height: 500px;
    }
    
    .card {
        width: 300px;
        height: 400px;
    }
    
    .card-1 {
        left: 50px;
    }
    
    .card-3 {
        right: 50px;
    }
}

@media (max-width: 968px) {
    .diagonal-hero {
        flex-direction: column;
        height: auto;
    }
    
    .hero-image-left {
        width: 100%;
        height: 300px;
        clip-path: none;
    }
    
    .hero-content-right {
        width: 100%;
        padding: 3rem 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .floating-badge {
        display: none;
    }
    
    .zigzag-item {
        flex-direction: column;
        gap: 3rem;
    }
    
    .zigzag-item.left .zigzag-image,
    .zigzag-item.left .zigzag-content {
        order: initial;
    }
    
    .zigzag-content h2 {
        font-size: 2.5rem;
    }
    
    .cards-container {
        height: 400px;
        margin-bottom: 2rem;
    }
    
    .card {
        width: 250px;
        height: 320px;
        position: relative !important;
        transform: none !important;
        margin: 1rem auto;
        display: block;
    }
    
    .card-1, .card-2, .card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .asymmetric-footer {
        flex-direction: column;
    }
    
    .footer-left {
        clip-path: none;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem;
    }

    .hero-content-right {
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .tagline-part {
        font-size: 1.1rem;
    }

    .zigzag-content {
        padding: 1rem;
    }
    
    .zigzag-content h2 {
        font-size: 2rem;
    }

    .cards-text h2 {
        font-size: 2rem;
    }
    
    .cards-text p {
        font-size: 1.1rem;
    }
    
    .process-header h2 {
        font-size: 2rem;
    }
    
    .footer-left, .footer-right {
        padding: 2rem 1rem;
    }
    
    .footer-left h2 {
        font-size: 2rem;
    }
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.3rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deli-charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--deli-warm-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Coming Soon Page Styles (keep existing) */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--deli-warm-white);
    padding: 2rem;
    text-align: center;
}

.coming-soon-logo h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--deli-forest);
    margin-bottom: 0.5rem;
}

.coming-soon-logo .tagline {
    font-size: 1.2rem;
    color: var(--deli-sage);
    font-style: italic;
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    color: var(--deli-charcoal);
    margin-bottom: 1.5rem;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: var(--deli-soft-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info {
    background: var(--deli-cream);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.contact-info h3 {
    color: var(--deli-forest);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}