body {
    padding-top: 10px;
    font-family: 'Montserrat', sans-serif;
}

.hero {
    position: relative;
    height: 82vh;
    margin: 135px 30px 45px 30px; /* top right bottom left*/

    overflow: hidden;
    border-radius: 5px;

    box-shadow: 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: rgba(0, 0, 0, 0.35);
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
    color: white;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    max-width: 600px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 5px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 300;
}

.btn {
    padding: 10px 24px;
    background: #d0a04f;
    border-radius: 0px;
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #a8834e;
}

/* for mobile viewers */

@media (max-width: 768px) {
    .hero {
        margin: 65px 20px -20px 20px;
        height: 55vh;
        border-radius: 10px;
    }

    video.slide {
        transform: scale(1.05);
    }
    
    .hero-content {
        left: 50%;
        top: 55%;
        transform: translate(-50%, -50%);
        text-align: center;
        padding: 0 15px;
    }

    .hero::after {
        background: rgba(0,0,0,0.45);
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
        width: 100%;
        margin: 0 auto 10px auto;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn {
        display: inline-block;
        white-space: nowrap;
        padding: 14px 24px;     /* wider & taller */
        font-size: 14px;
        font-weight: 300;
        /* width: 80%; */
    }

    .container {
        padding: 15px 20px;
    }

    .logo img {
        width: 80px;
    }

    .navbar {
        gap: 15px;
    }

    .navbar a {
        font-size: 16px;
    }
}