/**
 * Minimal Banner CSS
 * Fast-loading banner with minimal animations
 * Displays immediately while full banner loads
 */

/* ============================================
   MINIMAL BANNER CONTAINER
   ============================================ */

.minimal-banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #131313 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.minimal-banner.hidden {
    animation: fadeOut 0.5s ease-out forwards;
    display: none;
}

/* ============================================
   MINIMAL BANNER BACKGROUND
   ============================================ */

.minimal-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 1;
}

.minimal-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* ============================================
   MINIMAL BANNER CONTENT
   ============================================ */

.minimal-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 40px;
}

.minimal-banner-title {
    font-family: "Excon", sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.6s ease-out;
}

.minimal-banner-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin: 20px 0 0 0;
    padding: 0;
    color: #ddd;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.minimal-banner-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #07567c;
    color: #fff;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #07567c;
    border-radius: 4px;
    transition: all 0.3s ease-out;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.minimal-banner-cta:hover {
    background-color: transparent;
    color: #07567c;
}

/* ============================================
   MINIMAL ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* ============================================
   MINIMAL BANNER INDICATORS
   ============================================ */

.minimal-banner-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 12px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.minimal-banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.minimal-banner-indicator.active {
    background-color: #07567c;
    width: 30px;
    border-radius: 6px;
}

.minimal-banner-indicator:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media only screen and (max-width: 767px) {
    .minimal-banner {
        height: 60vh;
    }

    .minimal-banner-title {
        font-size: 42px;
        letter-spacing: 1px;
    }

    .minimal-banner-subtitle {
        font-size: 14px;
    }

    .minimal-banner-content {
        padding: 20px;
    }

    .minimal-banner-cta {
        padding: 12px 30px;
        font-size: 12px;
    }

    .minimal-banner-indicators {
        bottom: 20px;
        gap: 8px;
    }

    .minimal-banner-indicator {
        width: 8px;
        height: 8px;
    }

    .minimal-banner-indicator.active {
        width: 20px;
    }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {

    .minimal-banner-title,
    .minimal-banner-subtitle,
    .minimal-banner-cta,
    .minimal-banner-indicators {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

@media (prefers-color-scheme: dark) {
    .minimal-banner {
        background: linear-gradient(135deg, #0a0a0a 0%, #131313 100%);
    }

    .minimal-banner-title {
        color: #fff;
    }

    .minimal-banner-subtitle {
        color: #ccc;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .minimal-banner {
        display: none;
    }
}