/* =========================================================
   HOMEPAGE LAYOUT
   ========================================================= */

.home-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: calc(100vh - 60px);
    padding: 80px 16px 64px;
}

.home-hero {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.home-title {
    margin: 0 0 10px;

    color: #111827;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.home-tagline {
    margin: 0 0 32px;

    color: #94a3b8;
    font-size: 16px;
    font-weight: 400;
}

/* =========================================================
   SEARCH FORM
   ========================================================= */

.search-form {
    margin-bottom: 14px;
}

.search-row {
    display: flex;
    gap: 8px;
}

.search-input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;

    font-size: 17px;
    font-family: inherit;
    color: #111827;

    transition: border-color 0.15s, box-shadow 0.15s;
}

.search-input:focus {
    outline: none;
    border-color: #1f2937;
    box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.08);
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-btn {
    padding: 14px 24px;

    background: #111827;
    border: none;
    border-radius: 12px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    white-space: nowrap;
    cursor: pointer;

    transition: background 0.15s;
}

.search-btn:hover {
    background: #1f2937;
}

/* =========================================================
   HINT LINE
   ========================================================= */

.search-hint {
    margin: 0;

    color: #94a3b8;
    font-size: 13px;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
    .home-container {
        padding: 40px 16px 32px;
        min-height: calc(100vh - 80px);
    }

    .home-title {
        font-size: 36px;
    }

    .home-tagline {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .search-row {
        flex-direction: column;
        gap: 10px;
    }

    .search-input {
        font-size: 16px;
        padding: 14px 16px;
    }

    .search-btn {
        width: 100%;
        padding: 14px;
    }

    .search-hint {
        font-size: 12px;
    }
}

[dir="rtl"] .search-row {
    direction: ltr;
}

[dir="rtl"] .search-input {
    direction: rtl;
    text-align: right;
}