/* ══════════════════════════════════════════
   Home Page (index.html) — Holding/Landing Page
   ══════════════════════════════════════════ */

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f7f3ee 0%, #e8d5b5 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.landing-container {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.landing-logo {
    max-width: 680px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    transform: translateX(-65px);
}

.landing-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.landing-subtitle {
    font-size: 1.2rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.landing-btn {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.landing-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

footer {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 2rem;
    background-color: #2c3e50;
    color: #ecf0f1;
    font-size: 0.95rem;
    flex-shrink: 0;
}

footer a {
    color: #3498db;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .landing-logo {
        max-width: 350px;
        transform: translateX(-30px);
    }

    .landing-title {
        font-size: 1.8rem;
    }

    .landing-subtitle {
        font-size: 1rem;
    }

    .landing-btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}
