body {
    padding-top: 10px;
    font-family: var(--font-body, 'Montserrat', sans-serif);
}

.hero {
    position: relative;
    height: 86vh;
    margin: 100px 0px 0px 0px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow-lg, 0 25px 60px rgba(0, 0, 0, 0.08));
}

/* Slider container */
.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Base Slide */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
    z-index: 0;
}

video.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 20, 22, 0.45) 0%, rgba(6, 20, 22, 0.18) 42%, rgba(6, 20, 22, 0.55) 100%);
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
    color: white;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 620px;
}

.hero-content h1 {
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
    text-wrap: balance;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 34px;
    font-weight: 300;
    letter-spacing: 0.3px;
    opacity: 0.92;
}

.btn {
    position: relative;
    display: inline-block;
    padding: 15px 34px;
    background: var(--color-accent, #d0a04f);
    border-radius: var(--radius-sm, 0px);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
    transition: color var(--dur-fast, 0.35s) var(--ease-premium, ease),
                box-shadow var(--dur-fast, 0.35s) var(--ease-premium, ease),
                transform var(--dur-fast, 0.35s) var(--ease-premium, ease);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-primary, #0a4049);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-fast, 0.4s) var(--ease-premium, ease);
    z-index: -1;
}

.btn:hover {
    box-shadow: var(--shadow-md, 0 12px 30px rgba(0,0,0,0.2));
    transform: translateY(-2px);
}

.btn:hover::before {
    transform: scaleX(1);
}

/* for mobile viewers */

@media (max-width: 768px) {
    .hero {
        margin: 65px 20px -20px 20px;
        height: 62vh;
        border-radius: var(--radius-md, 10px);
    }

    video.slide {
        transform: scale(1.05);
    }

    .hero-content {
        left: 50%;
        top: 58%;
        transform: translate(-50%, -50%);
        text-align: center;
        padding: 0 15px;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(6,20,22,0.4) 0%, rgba(6,20,22,0.35) 40%, rgba(6,20,22,0.65) 100%);
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.25;
        width: 100%;
        margin: 0 auto 14px auto;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 26px;
    }

    .btn {
        display: inline-block;
        white-space: nowrap;
        padding: 15px 28px;
        font-size: 12px;
    }

    .container {
        padding: 15px 20px;
    }

    .logo img {
        width: 80px;
    }

    .navbar {
        gap: 15px;
    }

    .navbar a {
        font-size: 16px;
    }
}