/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    /* Subtle light gradient blending slate with cyan tint */
    background: linear-gradient(
        135deg,
        #f8fafc 0%,           /* slate-50 */
        #f0f9ff 15%,          /* hint of cyan-50 */
        #f1f5f9 50%,          /* slate-100 */
        #e0f2fe 85%,          /* hint of cyan-100 */
        #e2e8f0 100%          /* slate-200 */
    );
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Add subtle border for depth */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(203, 213, 225, 0.5) 50%,
        transparent 100%
    );
}

/* Hero title styling */
.hero-section h1 {
    color: var(--slate-900, #0f172a);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Hero description text */
.hero-description {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: var(--slate-600, #475569);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Button styling */
.hero-section .btn {
    min-width: 160px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 2rem;
}

.hero-section .btn-dark {
    background-color: var(--slate-900, #0f172a);
    border-color: var(--slate-900, #0f172a);
}

.hero-section .btn-dark:hover {
    background-color: var(--slate-800, #1e293b);
    border-color: var(--slate-800, #1e293b);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.2);
}

.hero-section .btn-outline-dark {
    border-color: var(--slate-900, #0f172a);
    color: var(--slate-900, #0f172a);
}

.hero-section .btn-outline-dark:hover {
    background-color: var(--slate-900, #0f172a);
    border-color: var(--slate-900, #0f172a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        padding: 3rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-section .btn {
        min-width: 140px;
        padding: 0.65rem 1.5rem;
    }
}
