@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #b2d234;
    --primary-dark: #8cad29;
    --secondary: #1e293b;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-body: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    height: 65px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo img {
    height: 120px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-btn {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(178, 210, 52, 0.3);
    transition: all 0.3s;
    display: inline-block;
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(178, 210, 52, 0.4);
}

.cta-btn-outline {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), url('../assets/landing/hero-food.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    max-width: 750px;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-logo {
    height: 250px;
    /* margin-bottom: 20px; */
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--primary);
    text-shadow: none;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Sections General */
section {
    padding: 100px 10% 50px;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 18px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.service-img {
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.service-info p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

/* App Section */
.app-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #334155 100%);
    padding: 100px 10%;
    color: white;
    overflow: hidden;
}

.app-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.app-text {
    flex: 1;
}

.app-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-text p {
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 30px;
}

.app-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-badge {
    background: white;
    color: var(--secondary);
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.app-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.app-badge i {
    font-size: 22px;
}

.app-mockup {
    flex: 0 0 auto;
}

.app-mockup img {
    max-height: 500px;
    border-radius: 30px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 2;
}

/* Policies Section */
.policies {
    background: #f1f5f9;
    padding: 80px 10%;
}

.policy-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.policy-card {
    background: white;
    padding: 25px 40px;
    border-radius: 15px;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.policy-card:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.policy-card i {
    font-size: 20px;
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 80px 10% 30px;
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.bottom-footer span {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2) {
        grid-column: span 1;
        grid-row: auto;
    }

    .app-container {
        flex-direction: column;
        text-align: center;
    }

    .app-badges {
        justify-content: center;
    }

    .app-mockup img {
        max-height: 400px;
    }

    .app-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 0 20px;
        text-align: center;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .gallery-item {
        height: 180px;
    }

    .policy-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .app-mockup img {
        max-height: 320px;
    }

    .app-section {
        padding: 80px 20px;
    }
}