/**
 * Hero Section - Nike-Level Power & Elegance
 * World-Class Investment Banking Design
 */

/* Import Power Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800;900&family=Raleway:wght@300;400;500;600;700;800;900&display=swap');

/* Hero Section - Institutional Background with Gentle Edge Blending */
.hero-section {
    background: 
        linear-gradient(to right, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.85) 10%, rgba(255,255,255,0.5) 20%, rgba(255,255,255,0.2) 30%, transparent 40%, transparent 60%, rgba(255,255,255,0.2) 70%, rgba(255,255,255,0.5) 80%, rgba(255,255,255,0.85) 90%, rgba(255,255,255,0.98) 100%),
        linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 10%, transparent 20%, transparent 80%, rgba(255,255,255,0.4) 90%, rgba(255,255,255,0.9) 100%),
        url('../images/hero-background.png') center center / cover no-repeat fixed;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background-color: #fafafa;
}

/* Additional soft vignette for institutional feel */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at center, transparent 50%, rgba(255,255,255,0.1) 70%, rgba(255,255,255,0.3) 85%, rgba(255,255,255,0.5) 100%),
        linear-gradient(to bottom, transparent 0%, transparent 70%, rgba(0,0,0,0.02) 100%);
    pointer-events: none;
}

/* Container */
.hero-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Content - Institutional Grid */
.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Text - Left Aligned Power */
.hero-text {
    position: relative;
    text-align: left;
}

/* Remove accent line for institutional clean look */
.hero-text::before {
    display: none;
}

/* Badge - Minimal & Powerful */
.hero-badge {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.hero-badge-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #C9A961;
    text-transform: uppercase;
    position: relative;
    padding-right: 30px;
}

/* Nike-Style Swoosh After Badge */
.hero-badge-title::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #C9A961;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.hero-badge-inner {
    display: none; /* Hide for cleaner look */
}

/* Hero Title - Institutional Typography */
.hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 54px;
    font-weight: 300;
    line-height: 1.2;
    color: #000000 !important;
    margin: 0 0 25px 0;
    letter-spacing: -0.03em;
    text-transform: none;
    animation: titleReveal 0.8s ease-out 0.2s both;
    text-align: left;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* All text in hero title is black */
.hero-title,
.hero-title * {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

.hero-title strong {
    font-weight: 600;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    display: block;
    font-size: 54px;
    margin-bottom: 5px;
    text-transform: none;
}

/* Ensure second line is visible */
.hero-title br + span,
.hero-title span,
.hero-title div {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    display: block !important;
    font-weight: 500;
    opacity: 1 !important;
    visibility: visible !important;
    text-transform: none !important;
}

/* Hero Subtitle - Institutional Power */
.hero-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    color: #333 !important;
    margin: 0 0 40px 0;
    max-width: 650px;
    letter-spacing: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    padding-left: 0;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: left;
}

/* Remove accent line for cleaner look */
.hero-subtitle::before {
    display: none;
}

/* CTA Buttons - Centered Institutional Style */
.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    justify-content: center;
}

.btn-elite {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 20px 45px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-elite--primary {
    background: #000000;
    color: #FFFFFF;
    border: none;
}

.btn-elite--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #C9A961;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-elite--primary:hover {
    color: #000000;
    transform: translateX(5px);
}

.btn-elite--primary:hover::before {
    left: 0;
}

.btn-elite--managing-director {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    font-weight: 600;
}

.btn-elite--managing-director:hover {
    background: #000000;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Visual - BIGGER Bull */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: visualReveal 1.2s ease-out 0.7s both;
}

@keyframes visualReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

/* Bull Image - Compact Size */
.bull-accent {
    width: 100%;
    max-width: 480px !important;
    height: auto;
    display: block;
    filter: 
        drop-shadow(0 30px 60px rgba(0, 0, 0, 0.1))
        drop-shadow(0 15px 30px rgba(201, 169, 97, 0.12))
        contrast(1.08)
        brightness(1.02);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(1);
}

/* Bull Glow Effect */
.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
    filter: blur(100px);
    animation: glowPulse 4s ease-in-out infinite;
}

/* Floating Animation */
.hero-visual {
    animation: floatBull 8s ease-in-out infinite;
}

@keyframes floatBull {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

/* Responsive Power */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 44px;
    }
    
    .hero-title strong {
        font-size: 48px;
    }
    
    .bull-accent {
        max-width: 500px !important;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-title strong {
        font-size: 46px;
    }
    
    .bull-accent {
        max-width: 450px !important;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text::before {
        display: none;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        margin-bottom: 40px;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }
    
    .hero-subtitle::before {
        display: none;
    }
    
    .bull-accent {
        max-width: 400px !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-section .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-title strong {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .btn-elite {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .bull-accent {
        max-width: 350px !important;
    }
}
/* Hero Visual - Bull Power */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bull-accent {
    width: 100%;
    max-width: 450px;
    height: auto;
    opacity: 0.9;
    position: relative;
}

/* Blend edges with gradient overlay */
.hero-visual {
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(255,255,255,0.6) 70%, rgba(255,255,255,0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.8) 0%, transparent 20%, transparent 80%, rgba(255,255,255,0.8) 100%);
    pointer-events: none;
    z-index: 2;
}
