﻿/* ===== HERO PANEL STYLING - WHITE THEME ===== */
.desktop-hero-container {
    height: 100vh;
    min-height: 850px;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

/* Reels Panel (col-4) - White Theme */
.reels-panel {
    position: relative;
    height: 100%;
    padding: 20px;
    background: var(--light-text);
    border-right: 1px solid var(--border-color);
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.05);
}

.reels-glow-border {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(var(--primary-blue-rgb, 30, 58, 138), 0.1);
    border-radius: 30px;
    box-shadow: 0 0 40px rgba(var(--primary-red-rgb, 217, 35, 35), 0.1);
    z-index: 1;
    pointer-events: none;
}

.reels-container {
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #f8f9fa;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video UI - White Theme */
.video-overlay-ui {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
}

.reel-progress-track {
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.reel-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-red);
    transition: width linear;
    border-radius: 10px;
}

.video-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-video-control {
    background: var(--primary-blue);
    border: none;
    color: var(--light-text);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

    .btn-video-control:hover {
        background: var(--primary-red);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(217, 35, 35, 0.3);
    }

    .btn-video-control i {
        font-size: 1.1rem;
    }

.current-reel {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
}

.reel-separator {
    opacity: 0.5;
    margin: 0 3px;
}

.reels-fallback {
    width: 100%;
    height: 100%;
    background: url('/Images/Hero/landing page (1).png') center/cover no-repeat;
}

/* Welcome Column (col-8) - White Theme */
.welcome-bg-column {
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

    .welcome-bg-column::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(244, 245, 247, 0.9) 100%);
    }

    .welcome-bg-column::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle, rgba(217, 35, 35, 0.05) 0%, transparent 70%);
        opacity: 0.6;
    }

.desktop-welcome-card-wide {
    background: var(--light-text);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 35px;
    padding: 4rem;
    max-width: 850px;
    width: 90%;
    z-index: 5;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

    .desktop-welcome-card-wide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 8px;
        background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
        background-size: 200% 100%;
        animation: gradientShift 3s ease infinite;
    }

.hero-logo-large {
    height: 120px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.welcome-heading-main {
    color: var(--dark-text);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-text {
    color: var(--primary-blue);
    position: relative;
}

    .brand-text::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--primary-red);
        border-radius: 2px;
    }

.welcome-lead {
    color: var(--dark-text);
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.desktop-welcome-actions-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 1rem;
}

.welcome-action-btn {
    padding: 1.25rem 2.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 250px;
}

    .welcome-action-btn.primary {
        background: linear-gradient(135deg, var(--primary-red), #e74c3c);
        color: var(--light-text);
        box-shadow: 0 8px 25px rgba(217, 35, 35, 0.3);
    }

        .welcome-action-btn.primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(217, 35, 35, 0.4);
            background: linear-gradient(135deg, #e74c3c, var(--primary-red));
        }

    .welcome-action-btn.secondary {
        background: var(--primary-blue);
        color: var(--light-text);
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
    }

        .welcome-action-btn.secondary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
            background: #152a6b;
        }

    .welcome-action-btn i {
        font-size: 1.5rem;
    }

/* Feature Grid - White Theme */
.desktop-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.feature-card {
    padding: 2rem 1.5rem;
    background: var(--light-text);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-blue);
    }

    .feature-card i {
        font-size: 2.5rem;
        color: var(--primary-red);
        margin-bottom: 1.5rem;
        display: inline-block;
        width: 70px;
        height: 70px;
        line-height: 70px;
        background: rgba(217, 35, 35, 0.1);
        border-radius: 50%;
    }

    .feature-card h5 {
        color: var(--primary-blue);
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        font-family: var(--font-heading);
    }

    .feature-card p {
        color: var(--dark-text);
        opacity: 0.8;
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
    .desktop-welcome-card-wide {
        padding: 3rem;
        max-width: 750px;
    }

    .welcome-heading-main {
        font-size: 3rem;
    }

    .welcome-lead {
        font-size: 1.2rem;
    }

    .welcome-action-btn {
        min-width: 220px;
        padding: 1rem 2rem;
    }
}

@media (max-width: 1200px) {
    .desktop-welcome-card-wide {
        padding: 2.5rem;
        max-width: 650px;
    }

    .welcome-heading-main {
        font-size: 2.5rem;
    }

    .desktop-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Ensure mobile styling doesn't affect desktop */
@media (max-width: 992px) {
    .desktop-hero-container {
        display: none !important;
    }
    /* Restore mobile hero styles */
    .hero-section {
        background-color: var(--primary-blue) !important;
        height: auto !important;
        min-height: 100vh !important;
    }
}

/* Video Loading State */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-blue);
    z-index: 1;
}

    .video-loading .spinner {
        border: 3px solid rgba(30, 58, 138, 0.2);
        border-top: 3px solid var(--primary-blue);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
        margin: 0 auto 10px;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== SIMPLE FULL WIDTH DIVIDER ===== */
/* Alternative Barcelona stripes */
.full-width-divider {
    width: 100vw;
    margin: 0;
    border: none;
    height: 4px;
    background: repeating-linear-gradient( 90deg, var(--primary-red), var(--primary-red) 20px, var(--primary-blue) 20px, var(--primary-blue) 40px );
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
