@charset "UTF-8";
/* CSS Document */

    .banner-container {
        position: relative;
        width: 100%;
        max-width: 900px;
        /* Maintains 3:1 ratio (300 height / 900 width) */
        aspect-ratio: 900 / 300; 
        margin: auto;
        overflow: hidden;
        background: #000;
    }

    .slides {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide {
        min-width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        flex-shrink: 0;
    }

    /* Ultra-Thin Navigation Styling */
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 10;
        transition: opacity 0.3s, transform 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-btn svg {
        width: 40px; /* Size of the arrow */
        height: 40px;
        color: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
        transition: color 0.3s, stroke-width 0.3s;
    }

    .nav-btn:hover svg {
        color: rgba(255, 255, 255, 1);
        stroke-width: 1.5; /* Slightly bold on hover for feedback */
    }

    .prev { left: 5px; }
    .next { right: 5px; }

    /* Hide buttons on mobile if you prefer a cleaner look, or keep them small */
    @media (max-width: 600px) {
        .nav-btn svg { width: 24px; height: 24px; }
        .prev { left: 3px; }
        .next { right: 3px; }
    }