/* ===================================
   HERO SLIDER - Complete Styling
   =================================== */

.ktv-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.hero-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
}

.hero-slide-text {
    text-align: center;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 68px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 25px);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta-button {
    display: inline-block;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.hero-cta-button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Navigation Arrows */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-slider-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

/* Slide Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-indicator.active {
    background: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ktv-hero-slider {
        height: 100vh;
        min-height: 500px;
    }

    .hero-heading {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: 2px;
    }

    .hero-subheading {
        font-size: clamp(1rem, 4vw, 1.5rem);
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }

    .hero-cta-button {
        padding: 14px 36px;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .hero-slider-nav {
        width: 40px;
        height: 40px;
    }

    .hero-slider-prev {
        left: 15px;
    }

    .hero-slider-next {
        right: 15px;
    }

    .hero-slider-indicators {
        bottom: 30px;
        gap: 8px;
    }

    .slider-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .ktv-hero-slider {
        min-height: 400px;
    }

    .hero-slide-content {
        padding: 1rem;
    }

    .hero-cta-button {
        padding: 12px 28px;
        font-size: 13px;
    }
}

/* Home Page Hero Section */
.hero-background {
  top: -470px;
  left: 0px;
  width: 1920px;
  height: 2880px;
  background: transparent url('img/BG.png') 0% 0% no-repeat padding-box;
  opacity: 1;
}

.hero-overlay {
  top: -15px;
  left: 0px;
  width: 1920px;
  height: 1095px;
  background: transparent url('img/BG Overlay.png') 0% 0% no-repeat padding-box;
  opacity: 1;
}

.hero-quote {
  top: 522px;
  left: 126px;
  width: 1668px;
  height: 210px;
  font: normal normal normal 68px/91px Cinzel;
  letter-spacing: 0px;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  opacity: 1;
}

.hero-primary-button {
  top: 884px;
  left: 793px;
  width: 286px;
  height: 170px;
  transform: matrix(-1, 0, 0, -1, 0, 0);
  border: 5px solid #A48A8A;
  background: transparent url('img/Polygon 1.png') 0% 0% no-repeat padding-box;
  opacity: 1;
}