/**
 * Layout 6: Starter — شريط ترحيبي بسيط بدون هيرو كبير
 */

.layout6-topbar {
    padding: 140px 60px 60px;
    background: var(--cream);
    border-bottom: 1px solid var(--border-light);
}

.layout6-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.layout6-topbar h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease both;
}

.layout6-topbar p {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 500px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.layout6-topbar .hero-buttons {
    flex-shrink: 0;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@media (max-width: 768px) {
    .layout6-topbar { padding: 100px 25px 40px; }
    .layout6-topbar-inner { flex-direction: column; text-align: center; }
    .layout6-topbar h1 { font-size: 2rem; }
    .layout6-topbar .hero-buttons { justify-content: center; }
}
