/* === LANDING-SPECIFIC STYLES === */

html,
body {
    min-height: 100%;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 36%),
        radial-gradient(circle at 18% 82%, rgba(186, 230, 253, 0.18), transparent 38%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 52%, #eff8ff 100%);
    background-attachment: fixed;
}

/* Carousel wrapper (hides overflow) */
.carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Carousel track */
.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

/* Food visual card */
.food-visual-card {
    min-width: 220px;
    height: 260px;
    background: white;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    user-select: none;
}

.food-visual-card p {
    overflow-wrap: break-word;
}

/* Navigation buttons */
.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    color: #0f172a;
    transition: all 0.2s;
}

.nav-btn:hover {
    background: #f8fafc;
    color: #3b82f6;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-prev {
    left: 10px;
}

.nav-next {
    right: 10px;
}
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;

    padding-top: 2rem;
    padding-bottom: 4rem;

    background: transparent;
}

@media (min-width: 768px) {
    .hero-section > .container {
        transform: translateY(-2.5rem);
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        display: block;

        padding-top: 3.5rem;
        padding-bottom: 3rem;
    }

    .hero-section > .container {
        transform: translateY(-1.3rem);
    }
}

.landing-main-cta {
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.22) !important;
}

.landing-action-card {
    cursor: pointer;
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 14px 34px rgba(59, 130, 246, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.landing-action-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 20px 45px rgba(59, 130, 246, 0.2);
    color: #0f172a;
}

.landing-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.landing-action-card:hover .landing-card-button {
    background: #0b5ed7;
}

.landing-title-link {
    color: inherit;
    text-decoration: none;
}

.landing-title-link:hover {
    color: inherit;
    text-decoration: none;
}

.food-visual-card,
.food-visual-card:hover {
    color: inherit;
    text-decoration: none;
}