/* Hero Section - Centered Design with Dark Background */
.hero {
    min-height: 100vh;
    background-color: var(--color-black);
    background-image: url('https://img.freepik.com/free-vector/gradient-black-background-with-wavy-lines_23-2149151738.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Hero Content - Centered */
.hero-content {
    color: var(--color-white);
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    color: var(--color-gray-light);
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-cta .cta-primary {
    background: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-white);
    font-size: 1.25rem;
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta .cta-primary:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-cta .cta-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    font-size: 1.125rem;
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
}

.hero-cta .cta-secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Right Column - Hero Image */
.hero-image {
    position: relative;
    height: 600px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(100%) contrast(1.2);
}

.hero-image:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.1);
}

/* Image overlay for additional styling */
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
    transition: opacity 0.3s ease;
}

.hero-image:hover::after {
    opacity: 0.5;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--color-white);
    text-align: center;
    cursor: pointer;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(45deg);
    margin: 0 auto var(--spacing-xs);
    animation: scrollBounce 2s infinite;
}

.scroll-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Animations */
@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
        padding: var(--spacing-md);
    }
    
    .hero-content {
        order: 2;
        padding: var(--spacing-sm) 0;
    }
    
    .hero-image {
        order: 1;
        height: 300px;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-md);
        max-width: none;
    }
    
    .hero-cta {
        max-width: none;
        align-items: center;
    }
    
    .hero-cta .cta-primary,
    .hero-cta .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .hero-image {
        height: 250px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta .cta-primary {
        font-size: 1.125rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .hero-cta .cta-secondary {
        font-size: 1rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

/* High contrast mode adjustments */
@media (prefers-contrast: high) {
    .hero::before {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .hero-title,
    .hero-subtitle {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-image img {
        transition: none;
    }
    
    .hero-image:hover img {
        transform: none;
    }
    
    .scroll-arrow {
        animation: none;
    }
}

/* Print styles */
@media print {
    .hero {
        background: white;
        color: black;
        min-height: auto;
        page-break-inside: avoid;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .hero-title,
    .hero-subtitle {
        color: black;
        text-shadow: none;
    }
    
    .hero-cta,
    .scroll-indicator {
        display: none;
    }
}