/* =====================================================
   Hero Section - Clean & Elegant
   ===================================================== */
.hero {
    background: var(--gradient-hero);
    color: #fff;
    padding: 60px 20px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

/* Dark mode: warm glow border */
[data-theme="dark"] .hero {
    border-bottom: 1px solid rgba(212, 173, 136, 0.15);
    box-shadow: 0 4px 40px rgba(212, 173, 136, 0.04);
}

/* Decorative orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: float 10s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    animation: float 12s ease-in-out infinite reverse;
}

/* Dark mode: warm golden orbs - أقوى وأوضح */
[data-theme="dark"] .hero::before {
    background: radial-gradient(circle, rgba(212, 173, 136, 0.12) 0%, transparent 65%);
    width: 500px;
    height: 500px;
}
[data-theme="dark"] .hero::after {
    background: radial-gradient(circle, rgba(212, 173, 136, 0.08) 0%, transparent 65%);
    width: 450px;
    height: 450px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content { position: relative; z-index: 2; }

/* ===== Title ===== */
.hero h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

[data-theme="dark"] .hero h1 {
    color: #fff;
    text-shadow: 0 0 40px rgba(212, 173, 136, 0.35), 0 2px 10px rgba(0,0,0,0.5);
}

/* ===== Subtitle ===== */
.hero p {
    font-size: 15px;
    opacity: 0.88;
    animation: fadeInUp 0.8s ease 0.15s both;
    max-width: 400px;
    margin: 0 auto 20px;
    font-weight: 300;
}

[data-theme="dark"] .hero p {
    color: rgba(230, 215, 198, 0.8);
    opacity: 1;
}

/* ===== CTA Button ===== */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--accent-hover);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease 0.3s both;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-decoration: none;
}

[data-theme="dark"] .hero-btn {
    background: rgba(212, 173, 136, 0.08);
    color: var(--accent);
    border: 1.5px solid rgba(212, 173, 136, 0.4);
    box-shadow: 0 0 24px rgba(212, 173, 136, 0.1);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    color: var(--accent-hover);
}

[data-theme="dark"] .hero-btn:hover {
    background: var(--accent);
    color: #1a1510;
    border-color: var(--accent);
    box-shadow: 0 4px 30px rgba(212, 173, 136, 0.3);
}

/* ===== Floating Particles ===== */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

[data-theme="dark"] .particle {
    background: rgba(212, 173, 136, 0.2);
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Hero Mobile ===== */
@media (max-width: 768px) {
    .hero { padding: 40px 20px 35px; }
    .hero h1 { font-size: 26px; }
    .hero p { font-size: 14px; }
}
