/* Bridge Page Styles */

.bridge-container {
    min-height: 100vh;
    background: #F5F5F5 !important;
    color: #333333;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Override base template background */
html, body, #page-content {
    background-color: #F5F5F5 !important;
}

/* Override navigation CSS that adds padding to main */
.bridge-container main {
    padding-top: 0 !important;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    padding-top: 1rem; /* Reduced from 2rem to bring desktop content even higher */
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem; /* Reduced from 1rem to bring desktop content even higher */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Remove slow animation - content appears immediately */
}

.highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #059669 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block; /* Ensure proper underline positioning for multi-word highlights */
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b6b 0%, #059669 50%, #1e40af 100%);
    transform: scaleX(0);
    transform-origin: left;
    animation: slideIn 1.5s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    color: #444444;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    /* Remove slow animation - content appears immediately */
}

.hero-cta-button-large {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    /* Remove slow animation - content appears immediately */
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.hero-cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-cta-button-large:hover::before {
    left: 100%;
}

.hero-cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.hero-cta-button-large:active {
    transform: translateY(0);
}

.hero-cta-button-large:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.hero-cta-button-large:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-section {
        padding: 1rem;
        min-height: calc(100vh - 150px);
        margin-top: 10rem !important; /* Increased from 6rem to push mobile content even lower */
        padding-top: 4rem; /* Increased from 3rem to add more top padding for mobile */
        align-items: flex-start;
    }
    
    .title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .hero-cta-button-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 0.5rem;
        min-height: calc(100vh - 130px);
        margin-top: 8rem !important; /* Increased from 5rem to push small mobile content even lower */
        padding-top: 3.5rem; /* Increased from 2.5rem to add more top padding for small mobile */
        align-items: flex-start;
    }
    
    .title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .hero-cta-button-large {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .title {
        background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .highlight {
        background: linear-gradient(135deg, #ff0000 0%, #00ff00 50%, #0000ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .title,
    .hero-subtitle,
    .hero-cta-button-large {
        animation: none;
    }
    
    .highlight::after {
        animation: none;
        transform: scaleX(1);
    }
    
    .hero-cta-button-large::before {
        display: none;
    }
} 