/* verticals.css - Verticals Page Styling */

/* --- Global Utilities --- */
:root {
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 10px rgba(65, 105, 225, 0.5);
}

.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-1 {
    animation-delay: 0.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover), var(--neon-glow);
}

.section-title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(65, 105, 225, 0.4);
}

.section-subtitle {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 100%;
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(65, 105, 225, 0.6);
}

.hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* --- Vision Sections --- */
.vision {
    padding: 40px 20px;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

.vision-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.vision-text {
    flex: 1;
}

.content-block {
    margin-bottom: 30px;
}

.content-block h4 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    border-left: 3px solid var(--accent-blue);
    padding-left: 10px;
}

.content-block p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.vision-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-set img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.glow-border {
    border: 1px solid rgba(65, 105, 225, 0.3);
}

.image-set img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover), var(--neon-glow);
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .vision-row {
        flex-direction: column;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .section-subtitle {
        font-size: 1.2rem;
        text-align: center;
    }

    .vision-image {
        width: 100%;
    }

    .image-set img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .glass-panel {
        padding: 20px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .content-block h4 {
        font-size: 1.1rem;
    }

    .content-block p {
        font-size: 1rem;
    }
}