/* =========================
   SLIDER
========================= */
.owl-carousel .item {
    position: relative;
}
/* DARK OVERLAY */
.owl-carousel .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
/* IMAGE */
.owl-carousel .item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
/* =========================
   SLIDER CONTENT
========================= */
.owl-carousel .slider-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
    max-width: 650px;
}
/* SMALL TITLE */
.owl-carousel .small-text {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
/* HEADING */
.owl-carousel .slider-content h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 25px;
}
.owl-carousel .slider-content h1 span {
    color: #b39454;
}
/* DESCRIPTION */
.owl-carousel .desc {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 35px;
}
/* BUTTON AREA */
.owl-carousel .slider-buttons {
    display: flex;
    gap: 20px;
}
/* BUTTON 1 */
.owl-carousel .btn-primary {
    border: 2px solid #14331d;
    background: #14331d;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    padding: 13px 18px;
}
/* BUTTON 2 */
.owl-carousel .btn-outline {
    border: 2px solid white;
    color: white;
    padding: 13px 18px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}
/* HOVER */
.owl-carousel .btn-primary:hover,
.btn-outline:hover {
    opacity: 0.8;
    transition: 0.3s;
    color: white;
}
/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
    .owl-carousel .slider-content {
        left: 5%;
        right: 5%;
    }
    .owl-carousel .slider-content h1 {
        font-size: 42px;
    }
    .owl-carousel .desc {
        font-size: 18px;
    }
    .owl-carousel .slider-buttons {
        flex-direction: column;
    }
    .owl-carousel .btn-primary,
    .btn-outline {
        width: fit-content;
    }
    .owl-carousel .navbar-menu {
        background: rgba(0, 0, 0, 0.9);
    }
}
/* =========================
   VIDEO BUTTON
========================= */
.video-btn {
    position: absolute;
    right: 60px;
    bottom: 50px;
    z-index: 3;
}
.video-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
}
/* PLAY CIRCLE */
.play-icon {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    transition: 0.3s;
}
/* TEXT */
.video-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}
/* HOVER */
.video-link:hover .play-icon {
    background: white;
    color: black;
}
/* MOBILE */
@media (max-width: 768px) {
    .video-btn {
        right: 20px;
        bottom: 30px;
    }
    .play-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    .video-text {
        font-size: 14px;
    }
}
/* HIDE OWL NAVIGATION */
.owl-nav {
    display: none !important;
}
/* =========================
   VIDEO POPUP
========================= */
.video-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.video-popup-content {
    position: relative;
    width: 80%;
    max-width: 900px;
}

.video-popup video {
    width: 100%;
    border-radius: 10px;
}

.close-video {
    position: absolute;
    top: -45px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* =========================
     NAVBAR
========================= */

.navbar-link,
a.navbar-item {
    background-color: transparent;
    cursor: pointer;
}
.navbar-burger {
    align-self: center;
    color: hsl(0deg 0% 100%);
    margin-inline-end: 0.375rem;
    margin-inline-start: auto;
}
.navbar-brand {
    display: flex;
    align-items: center;
}
.logo-img {
    max-height: 60px; /* Adjust as needed */
    width: auto;
    object-fit: contain;
}
/* Mobile responsive */
@media screen and (max-width: 768px) {
    .logo-img {
        max-height: 50px;
    }
    .logo-text h2 {
        font-size: 14px;
    }
    .logo-text p {
        font-size: 10px;
        letter-spacing: 1px;
    }
}
/* Text beside logo */
.logo-text h2 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}
.logo-text p {
    color: #f5d7a1;
    margin: 0;
    font-size: 12px;
    letter-spacing: 2px;
}
