.ktv-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 100%;
    max-width: 1920px;
    /* Height and margin are now set per-breakpoint by the dynamic CSS (customizer-home.php).
       The desktop values below apply only at ≥ 1025px via the media query below. */
}

/* ── Desktop only ────────────────────────────────────────────────────────── */
@media (min-width: 1025px) {
    .ktv-hero-section {
        height: 820px;
        margin: -130px auto 0;
    }

    /* Background Overlay Image */
    .ktv-hero-section::before {
        height: 820px;
    }
}

/* Background Overlay Image — shared base */
.ktv-hero-section::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    max-width: 1920px;
    background: transparent url('../images/BG-Overlay.png') 0% 0% no-repeat padding-box;
    background-size: cover;
    opacity: 1;
    z-index: 1;
    /* Height set per breakpoint */
}

/* Tablet: let dynamic CSS control height/margin */
@media (min-width: 768px) and (max-width: 1024px) {
    .ktv-hero-section {
        height: auto;
        margin: -100px auto 0;
    }
    .ktv-hero-section::before {
        height: 100%;
        top: 0;
    }
}

/* Mobile: let dynamic CSS control height/margin */
@media (max-width: 767px) {
    .ktv-hero-section {
        height: auto;
        margin: -60px auto 0;
    }
    .ktv-hero-section::before {
        height: 100%;
        top: 0;
    }
}

.ktv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

/* Quote Styling */
.ktv-quotes-slider {
    position: absolute;
    top: 522px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1668px;
    height: 210px;
    background: transparent url('../images/Quote.png') 0% 0% no-repeat padding-box;
    background-size: contain;
    background-position: center;
    opacity: 1;
}
.ktv-hero-quote {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    padding: 40px;
    line-height: 1.4;
}

/* Hero Polygon Button Styling */
.ktv-hero-polygon-btn {
    position: absolute;
    top: 884px;
    left: 50%;
    margin-left: -143px;
    width: 286px;
    height: 170px;
    transform: matrix(-1, 0, 0, -1, 0, 0);
    border: 5px solid #A48A8A;
    background: transparent url('../images/Polygon-1.png') 0% 0% no-repeat padding-box;
    background-size: contain;
    background-position: center;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
}
.ktv-hero-polygon-btn span {
    transform: matrix(-1, 0, 0, -1, 0, 0);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ktv-hero-polygon-btn:hover {
    border-color: #ffd700;
    opacity: 0.9;
}

.ktv-hero-heading {
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}
.ktv-hero-subheading {
    line-height: 1.5;
    margin: 0;
}
.ktv-hero-button {
    margin-top: 30px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .ktv-hero-polygon-btn {
        top: 700px;
        width: 200px;
        height: 120px;
        margin-left: -100px;
    }
    .ktv-hero-polygon-btn span {
        font-size: 1rem;
    }
    .ktv-hero-content {
        padding: 20px;
    }
}