/* ================================================
   BK Hero Slider Carousel - ONE slide visible at a time
   ================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main carousel container */
.bk-slider-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* Container for all slides */
.bk-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide - ONLY ONE VISIBLE AT A TIME */
.bk-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ACTIVE slide - show this one */
.bk-slide.active {
    display: flex !important;
    animation: slideIn 0.6s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Overlay for text readability */
.bk-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Content - text and buttons */
.bk-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 60px;
    max-width: 600px;
    animation: contentFadeIn 0.8s ease 0.2s both;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title */
.bk-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

/* Description */
.bk-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Buttons container */
.bk-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Button */
.bk-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bk-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.bk-btn-1 {
    background-color: #683098;
    color: #ffffff;
}

.bk-btn-2 {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

/* Navigation arrows */
.bk-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bk-arrow:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.bk-prev {
    left: 24px;
}

.bk-next {
    right: 24px;
}

/* Dot navigation */
.bk-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.bk-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.bk-dot.active {
    background-color: #683098;
    transform: scale(1.3);
}

/* Slide counter */
.bk-counter {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* ================================================
   Responsive
   ================================================ */

@media (max-width: 1024px) {
    .bk-content {
        padding: 50px;
        max-width: 100%;
    }
    
    .bk-title {
        font-size: 44px;
    }
    
    .bk-desc {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .bk-content {
        padding: 40px 30px;
        max-width: 90%;
    }
    
    .bk-title {
        font-size: 32px;
    }
    
    .bk-desc {
        font-size: 14px;
    }
    
    .bk-arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .bk-prev {
        left: 12px;
    }
    
    .bk-next {
        right: 12px;
    }
}

@media (max-width: 600px) {
    .bk-content {
        padding: 30px 20px;
        gap: 15px;
    }
    
    .bk-title {
        font-size: 26px;
    }
    
    .bk-desc {
        font-size: 13px;
    }
    
    .bk-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .bk-btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }
    
    .bk-arrow {
        display: none;
    }
    
    .bk-dots {
        bottom: 16px;
        gap: 8px;
    }
    
    .bk-dot {
        width: 8px;
        height: 8px;
    }
    
    .bk-counter {
        font-size: 10px;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 400px) {
    .bk-content {
        padding: 20px 16px;
    }
    
    .bk-title {
        font-size: 22px;
    }
    
    .bk-desc {
        font-size: 12px;
    }
}
