/* تنظیمات کانتینر اصلی بنر (بدون حاشیه و تمام صفحه) */
.sepehrno-hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url('http://sephernew.ir/wp-content/uploads/2026/07/Gemini_Generated_Image_7epx197epx197epx-copy-1-scaled.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 calc(-50vw + 50%); /* این ترفند باعث میشه در هر قالبی فول‌ویت (تمام عرض) بشه */
    padding: 0;
    font-family: inherit;
}

/* لایه تاریک و گرادیانت ملایم روی عکس */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(35, 26, 71, 0.8) 0%, rgba(10, 10, 25, 0.4) 100%);
    z-index: 1;
}

/* نگهدارنده محتوا */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    color: #ffffff;
}

/* استایل متون */
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #A39BFA;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-title span {
    color: #00d2ff;
    background: linear-gradient(45deg, #00d2ff, #7F00FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* استایل دکمه فوق خاص */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}

.hero-btn:hover {
    background: #5E53E5;
    border-color: #5E53E5;
    box-shadow: 0 15px 40px rgba(94, 83, 229, 0.5);
    transform: translateY(-5px);
}

.hero-btn:hover svg {
    transform: translateX(-8px);
}

/* ----------------------------------- */
/* انیمیشن‌های ورود (Fade و Slide-up)  */
/* ----------------------------------- */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-load {
    opacity: 0;
    animation: slideUpFade 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* زمان‌بندی دقیق برای نمایش پله‌پله */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.8s; }
.delay-4 { animation-delay: 1.1s; }

/* رسپانسیو برای موبایل */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-description {
        font-size: 1rem;
    }
}