﻿
/* ========== CONTAINER ========== */
.container {
    width: 100%;
    margin: auto;
}

/* ========== SECTION 1 ========== */
.section {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.line {
    height: 3px;
    width: 70px;
    background-color: var(--bs-primary);
    margin: 0 auto 30px auto;
}

.image-box {
    width: 50%;
}
    /* Video box */
    .image-box video {
        width: 100%;
        max-width: 520px;
        border-radius: 6px;
    }

/* Content box */
.content-box {
    max-width: 600px;
}

    .content-box h2 {
        font-size: 32px;
        margin-bottom: 20px;
        color: #1a2a5e;
    }

    .content-box p {
        font-size: 16px;
        line-height: 1.7;
        color: #444;
        margin-bottom: 25px;
        text-align: justify
    }

/* Button */
/*.btn {
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #444;
}*/

/* ========== YELLOW SECTION ========== */
.yellow-section {
    background-color: white; /* tan / mustard */
    padding: 15px 60px;
}

    .yellow-section .content-box {
        text-align: center;
        margin: auto;
    }

    .yellow-section h2 {
        font-size: 30px;
        margin-bottom: 15px;
        color: #000;
    }

    .yellow-section p {
        max-width: 850px;
        margin: auto;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
    }

/* ================= FEATURES SECTION ================= */
.features-section {
    margin-top: 50px;
    color: #222;
}

/* Headings */
.section-heading {
    font-size: 28px;
    margin: 50px 0 15px;
    text-align: center;
}

.section-desc {
    max-width: 850px;
    margin: auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

/* Feature box */
.feature-box {
    background: #f5f7fc;
    padding: 25px 30px;
    margin: 30px auto;
    max-width: 900px;
    border-left: 6px solid #d4a24c;
    /* Shadow added */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    /* Smooth hover animation */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
}

    .feature-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    }



    .feature-box h3 {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .feature-box ul {
        padding-left: 20px;
    }

    .feature-box li {
        line-height: 1.8;
        font-size: 15px;
    }

/* Lists */
.benefit-list,
.why-list {
    max-width: 850px;
    margin: 20px auto;
    padding-left: 20px;
}

    .benefit-list li,
    .why-list li {
        font-size: 16px;
        line-height: 1.8;
    }

/* Events */
.events {
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-size: 15px;
}

/* Closing */
.closing {
    text-align: center;
    margin-top: 60px;
}

    .closing h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .closing p {
        max-width: 800px;
        margin: auto;
        font-size: 16px;
        line-height: 1.6;
    }

.feature-box strong {
    color: #1a2a5e;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px; /* Control slider width */
    margin: auto;
    aspect-ratio: 16 / 9; /* Perfect YouTube ratio */
}

#mainVideoPlayer {
    width: 100% !important;
    height: 350px !important;
    border-radius: 15px !important
}

/* Optional: make it smaller */
.video-container {
    padding: 10px 0;
}

/* Thumbnails */
.video-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-behavior: smooth;
}

.thumb {
    position: relative;
    flex: 0 0 auto;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s;
}

    .thumb img {
        display: block;
        width: 150px;
        height: 85px;
        object-fit: cover;
        border-radius: 5px;
    }

.thumb-title {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #e3bb56;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 11px;
    text-align: center;
    white-space: normal;
    overflow: hidden;
    /* text-overflow: ellipsis; */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.thumb-slider-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px
}

.thumb:hover .thumb-title {
    opacity: 1;
}

.thumb.active img {
    border: 3px solid #0d6efd;
}

.nav-btn {
    background: #d4a762;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    line-height: 1;
    cursor: pointer;
    font-size: 10px;
    transition: background 0.3s, transform 0.2s;
}

/* Responsive */
@media (max-width: 768px) {
    .section-heading {
        font-size: 24px;
    }

    .feature-box {
        padding: 20px;
    }
}


/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .section {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }

    .content-box {
        max-width: 100%;
    }

    .image-box {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 0px 0px;
    }

    .content-box h2 {
        font-size: 26px;
    }

    .yellow-section {
        padding: 60px 20px;
    }

    .image-box {
        width: 100%
    }

    #mainVideoPlayer {
        width: 100% !important;
        height: 250px !important;
        border-radius: 10px !important;
    }
}
