/* ================= GLOBAL ================= */
body {
    background: #f7f4ef;
    color: #2c2a28;
    font-family: 'Inter', sans-serif;
}

/* ================= LENS SECTION ================= */
.lens-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.lens-header h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 16px;
}

.lens-header p {
    max-width: 650px;
    margin: auto;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Tabs */
.lens-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.lens-tabs button {
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    background: #e7e5e4;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.lens-tabs button:hover {
    background: #d6d3d1;
}

.lens-tabs .active {
    background: #c2410c;
    color: white;
}

/* Grid */
.lens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lens-card {
    overflow: hidden;
    border-radius: 12px;
}

.lens-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.4s ease;
}

.lens-card:hover img {
    transform: scale(1.06);
}

/* ================= CAPTURED ================= */
.captured-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.kicker {
    font-size: 12px;
    color: #c2410c;
    letter-spacing: 2px;
}

.captured-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}

.captured-header h2 {
    font-size: 42px;
    margin: 10px 0;
}

.captured-header p {
    max-width: 600px;
    color: #6b7280;
}

.upload-link {
    color: #c2410c;
    text-decoration: none;
    font-weight: 500;
}

.upload-link:hover {
    text-decoration: underline;
}

/* Grid */
.captured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.captured-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.captured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 12px;
}

/* ================= NEWSLETTER ================= */
.newsletter-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.newsletter-box {
    background: linear-gradient(rgba(20,20,20,.65), rgba(20,20,20,.65)),
                url('/images/hero.jpg') center/cover;
    border-radius: 16px;
    padding: 70px 20px;
    text-align: center;
    color: white;
}

.newsletter-box h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.newsletter-box p {
    max-width: 600px;
    margin: auto;
    color: #e5e7eb;
}

/* FORM FIX FINAL */
.newsletter-form {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    padding: 14px;
    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.2);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form button {
    padding: 14px 22px;
    background: #f97316;
    border: none;
    color: white;
    border-radius: 6px;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-box button {
    width: 25%;
}

.newsletter-box button:hover {
    background: #ea580c;
}

.newsletter-form button:hover {
    background: #ea580c;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .lens-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .captured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .captured-header {
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .lens-header h1 {
        font-size: 36px;
    }

    .captured-header h2 {
        font-size: 30px;
    }

    .lens-grid,
    .captured-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }
}