/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Map Section */
.where-to-find {
    background: radial-gradient(circle at center, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
}

.map-container {
    height: 500px;
    width: 100%;
    border-radius: 14px;
    margin: 40px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(46, 204, 113, 0.32);
    z-index: 1;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    color: #e0e0e0;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 7px 14px;
}

.where-to-find .section-subtitle {
    margin-bottom: 12px;
}

.where-to-find .section-description {
    max-width: 700px;
    color: #cfcfcf;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid white;
}

.dot.rep {
    background-color: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
}

.dot.loj {
    background-color: var(--color-accent-alt);
    box-shadow: 0 0 10px var(--color-accent-alt);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: linear-gradient(135deg, #000000 0%, #0b0b0b 55%, #131313 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(46, 204, 113, 0.25);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Navigation */
.desktop-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: #0d0d0d;
    padding: 80px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
    color: var(--color-accent);
    padding-left: 10px;
}

/* Hero Section */
.hero {
    padding: 0 0 24px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
}

.hero .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.hero-banner {
    width: 100%;
    max-width: none;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.section-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Product Section */
.product .container {
    max-width: 1180px;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: #9be7bb;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.product .section-title {
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.product .section-subtitle {
    margin-bottom: 16px;
    font-size: 1.55rem;
    color: #f0f0f0;
}

.product .section-description {
    max-width: 760px;
    margin-bottom: 34px;
    color: #d1d1d1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin: 26px 0 34px;
}

.feature-card {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(46, 204, 113, 0.22);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 204, 113, 0.6);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.25);
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.25;
}

.feature-copy {
    font-size: 0.86rem;
    color: #bdbdbd;
    line-height: 1.45;
}

.formats-section {
    text-align: center;
    margin-top: 14px;
}

.formats-section h4 {
    font-size: 1.05rem;
    color: #e9e9e9;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.formats-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.format-item {
    background: rgba(46, 204, 113, 0.14);
    border: 1px solid rgba(46, 204, 113, 0.35);
    color: #eafbf1;
    padding: 10px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: none;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    aspect-ratio: 2/3;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Distribution Section */
.distribution .section-title {
    margin-bottom: 12px;
}

.distribution .section-subtitle {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.distribution .section-description {
    max-width: 760px;
    margin-bottom: 30px;
    color: #d0d0d0;
}

.benefits-list {
    max-width: 760px;
    margin: 22px auto 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 14px 15px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.benefit-item:hover {
    border-color: rgba(46, 204, 113, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.16);
}

.benefit-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    margin-right: 12px;
    background: rgba(46, 204, 113, 0.18);
    border: 1px solid rgba(46, 204, 113, 0.45);
    color: #8df0b6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.benefit-item span {
    font-size: 0.98rem;
    color: #e6e6e6;
    line-height: 1.45;
}

/* Contact Section */
.contact {
    background: radial-gradient(circle at center, rgba(198, 40, 40, 0.07) 0%, transparent 70%);
}

.contact .section-subtitle {
    margin-bottom: 24px;
}

.chef-card {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    align-items: center;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(46, 204, 113, 0.22);
    border-radius: 14px;
    padding: 16px;
}

.chef-photo {
    width: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.chef-tag {
    font-size: 0.9rem;
    color: #9be7bb;
    font-weight: 700;
    margin-bottom: 10px;
}

.chef-text {
    color: #ececec;
    line-height: 1.65;
    font-size: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 26px;
}

.cta-button {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-alt));
    color: #ffffff;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(198, 40, 40, 0.45);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(46, 204, 113, 0.35);
}

.footer-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 22px;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.footer-card {
    text-align: left;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 12px;
    padding: 14px;
}

.footer-card h4 {
    color: #9be7bb;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-card p {
    color: #e8e8e8;
    line-height: 1.55;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.footer-card a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-card a:hover {
    color: #9be7bb;
    border-bottom-color: rgba(155, 231, 187, 0.5);
}

.footer-hours {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.92rem;
    color: #f0f0f0;
    padding: 5px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.09);
}

.footer-hours li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 18px 0 24px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }

    .section-kicker {
        font-size: 0.72rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .formats-list {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        flex-direction: row;
        text-align: left;
        padding: 12px;
    }
    
    .benefit-icon {
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 15px 30px;
    }

    .chef-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px;
        text-align: center;
    }

    .chef-photo {
        max-width: 220px;
        margin: 0 auto;
    }

    .chef-text {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 15px;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-card {
        text-align: left;
    }

    .map-container {
        height: 420px;
        margin: 28px 0;
    }

    .map-legend {
        flex-wrap: wrap;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 14px 0 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo {
        height: 45px;
    }
    
    .feature-card {
        padding: 20px;
    }

    .map-container {
        height: 360px;
    }
    
    .format-item {
        font-size: 0.88rem;
        padding: 9px 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .footer-hours li {
        font-size: 0.88rem;
    }

    .chef-text {
        font-size: 0.92rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-banner {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll animations */
.feature-card,
.benefit-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.animate,
.benefit-item.animate {
    opacity: 1;
    transform: translateY(0);
}

:root {
    --color-bg: #050505;
    --color-bg-soft: #111111;
    --color-text: #ffffff;
    --color-text-muted: #d9d9d9;
    --color-accent: #2ecc71;
    --color-accent-strong: #27ae60;
    --color-accent-alt: #c62828;
}
