/* Fresh N Funky Catering - Variation C (Emotional/Visual Focus) */
/* Aesthetic: Warm, Human, Inviting, Photography-Forward */

:root {
    --color-primary: #1E293B;
    /* Deep Slate (Text) */
    --color-accent: #F97316;
    /* Warm Orange (Joy) */
    --color-accent-soft: #FFEDD5;
    /* Very Soft Orange */
    --color-success: #10B981;
    /* Invite Green */
    --color-bg-warm: #FFFBF7;
    /* Creamy Warm White */
    --color-surface: #FFFFFF;
    --color-border: #E2E8F0;

    --font-heading: 'Lexend', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;

    --shadow-soft: 0 10px 30px -5px rgba(249, 115, 22, 0.1);
    --shadow-deep: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-warm);
    color: var(--color-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    height: 90px;
    background: rgba(255, 251, 247, 0.9);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 52px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Buttons */
.btn-warm {
    background: var(--color-accent);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 100px;
    /* Pillow shape for warmth */
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -5px rgba(249, 115, 22, 0.4);
}

.btn-warm:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px -5px rgba(249, 115, 22, 0.5);
}

/* Section 1: Hero (Full Viewport) */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1543165796-5426273eaec3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 10s linear;
}

.hero:hover .hero-bg {
    transform: scale(1.1);
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    opacity: 0.95;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* Section 2: Visual Statement */
.visual-statement {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.statement-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.statement-overlay {
    background: white;
    padding: 4rem 6rem;
    border-radius: 40px;
    text-align: center;
    box-shadow: var(--shadow-deep);
    max-width: 900px;
}

.statement-overlay h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
}

/* Section 3: The Feeling */
.feeling-section {
    padding: 10rem 0;
}

.feeling-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
}

.feeling-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.feeling-content p {
    font-size: 1.25rem;
    color: var(--color-primary);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.feeling-image {
    width: 100%;
    height: 600px;
    border-radius: 40px;
    object-fit: cover;
    box-shadow: var(--shadow-deep);
}

/* Section 4: Visual Grid */
.visual-grid-section {
    padding: 0 0 10rem;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.grid-item {
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.caption-small {
    text-align: center;
    margin-top: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    font-size: 0.875rem;
}

/* Section 5: Simple Benefits */
.benefits-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
    padding: 5rem 0;
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-primary);
}

/* Section 6: The Numbers (Dark) */
.numbers-section {
    background-color: var(--color-primary);
    color: white;
    padding: 10rem 0;
    text-align: center;
}

.numbers-grid {
    display: flex;
    justify-content: space-around;
    margin-bottom: 4rem;
}

.stat-item span {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.stat-item p {
    font-size: 1.25rem;
    opacity: 0.7;
}

/* Section 8: Form (Soft Background) */
.form-section {
    padding: 10rem 0;
    background-color: #FEF3C7;
    /* Soft yellow for warmth */
    display: flex;
    justify-content: center;
}

.lp-form-card {
    background: white;
    padding: 5rem;
    border-radius: 60px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 40px 100px -20px rgba(249, 115, 22, 0.2);
}

.form-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.form-subtitle {
    text-align: center;
    font-size: 1.25rem;
    opacity: 0.6;
    margin-bottom: 4rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.form-group.full {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.form-input {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    border-radius: 20px;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    background: white;
    border-color: var(--color-accent);
}

/* Responsive */
@media (max-width: 991px) {
    .feeling-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .visual-grid {
        grid-template-columns: 1fr 1fr;
    }

    .numbers-grid {
        flex-direction: column;
        gap: 4rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .visual-grid {
        grid-template-columns: 1fr;
    }

    .btn-warm {
        width: 100%;
        text-align: center;
    }

    .statement-overlay {
        padding: 3rem 1.5rem;
        border-radius: 0;
    }

    .form-section {
        padding: 4rem 1rem;
    }

    .lp-form-card {
        padding: 3rem 1.5rem;
        border-radius: 40px;
    }
}