/* HERO BASE */

.arkk-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VIDEO */

.arkk-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* OVERLAY */

.arkk-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.75);
    z-index: 2;
}

/* CONTENT */

.arkk-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 750px;
    padding: 20px;
}

/* TAGLINE */

.arkk-tagline {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--luxury-violet);
    margin-bottom: 12px;
}

/* TITLE */

.arkk-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

/* HIGHLIGHT */

.arkk-title span {
    color: var(--luxury-violet);
}

/* SUBTEXT */

.arkk-subtext {
    font-size: 15px;
    color: #B0B0C3;
    margin-top: 14px;
    line-height: 1.6;
}

/* BUTTON */

.arkk-buttons {
    margin-top: 25px;
}

.arkk-btn-primary {
    padding: 12px 28px;
    background: var(--luxury-violet);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: 0.3s;
}

/* HOVER EFFECT */

.arkk-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}

/* RESPONSIVE */

/* MOBILE */
@media(max-width:768px) {
    .arkk-title {
        font-size: 28px;
    }

    .arkk-subtext {
        font-size: 14px;
    }
}

/* LARGE SCREENS */
@media(min-width:1200px) {
    .arkk-title {
        font-size: 56px;
    }

    .arkk-subtext {
        font-size: 17px;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }
}
