
:root {
    --primary-color: #AE1F26;
    --secondary-color: #F18A40;
    --accent-color: #ec2128;
    --light-bg: #fffaf5;
    --dark-text: #1a1a1a;
    --soft-shadow: 0 15px 35px rgba(0,0,0,0.06);
    --font-main: 'Baloo Da 2', cursive;
}

body {
    font-family: var(--font-main);
    background-color: #fff;
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }

/* --- Navbar --- */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.navbar-brand img { max-height: 40px; transition: 0.3s; }
.nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
    margin: 0 7px;
    font-size: 17px;
    transition: 0.3s;
}
.nav-link:hover { color: var(--primary-color) !important; }

.btn-season {
    background: var(--accent-color) !important;
    color: white !important;
    border-radius: 50px;
    padding: 10px 28px !important;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 20px rgba(236, 33, 40, 0.2);
    transition: 0.3s;
}
.btn-season:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(236, 33, 40, 0.3); }

/* --- Hero Slider (Full Width) --- */
.hero-section { width: 100%; overflow: hidden; }
.carousel-item img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
    filter: brightness(0.9);
}
.carousel-caption {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 30px;
    bottom: 20%;
}

/* --- Section Styling --- */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
    font-weight: 800;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto;
    border-radius: 10px;
}

/* --- Photo Gallery (Swiper) --- */
.gallery-section { background-color: var(--light-bg); }
.swiper-gallery { padding: 40px 10px 60px; }
.gallery-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    background: white;
    transition: 0.4s;
}
.gallery-card:hover { transform: translateY(-10px); }
.gallery-card img { width: 100%; height: 350px; object-fit: cover; }

/* --- Video Section --- */
.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    aspect-ratio: 16/9;
    background: #000;
}
.video-poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.video-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    transition: 0.3s;
}
.video-poster:hover::before { background: rgba(0,0,0,0.4); }

.play-button {
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    z-index: 11;
    transition: 0.4s;
    box-shadow: 0 0 0 15px rgba(174, 31, 38, 0.2);
}
.video-poster:hover .play-button { transform: scale(1.1); box-shadow: 0 0 0 25px rgba(174, 31, 38, 0.3); }


/* Video Grid Styles */
.small-video {
    aspect-ratio: 16/9;
    border-radius: 15px !important; /* একটু ছোট রেডিয়াস */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.play-button.small {
    width: 60px;
    height: 60px;
    font-size: 25px;
    box-shadow: 0 0 0 10px rgba(174, 31, 38, 0.2);
}

.video-item {
    text-align: center;
}

.video-caption {
    margin-top: 15px;
    font-weight: 700;
    color: var(--dark-text);
    font-size: 18px;
}


.swiper-about {
    height: 500px;
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* প্যাগিনেশন স্টাইল */
.about-pagination.swiper-pagination-bullets {
    bottom: 20px !important;
}
.about-pagination .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.7;
}
.about-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}


/* --- Article Section (Grid) --- */
.article-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.article-card:hover { transform: translateY(-12px); box-shadow: var(--soft-shadow); border-color: transparent; }
.article-thumb { width: 100%; height: 230px; object-fit: cover; }
.article-body { padding: 25px; }
.article-cat { font-size: 14px; color: var(--secondary-color); font-weight: 700; text-transform: uppercase; margin-bottom: 8px; display: block; }
.article-link { text-decoration: none; color: var(--dark-text); transition: 0.3s; }
.article-link h4 { font-weight: 700; font-size: 20px; margin: 0; line-height: 1.4; }
.article-card:hover .article-link h4 { color: var(--primary-color); }

/* --- Reels Section --- */
.reels-section { background: #fdfdfd; }
.reel-box {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #111;
    box-shadow: var(--soft-shadow);
}
.reel-box iframe { width: 100%; height: 100%; }

/* --- Icons --- */
.icon-lg { font-size: 24px; color: var(--primary-color); }

/* --- Footer --- */
footer { background: #111; color: #fff; padding: 80px 0 40px; }
.footer-logo { max-height: 50px; margin-bottom: 25px; filter: brightness(0) invert(1); }
.social-links a {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
    font-size: 20px;
}
.social-links a:hover { background: var(--primary-color); transform: translateY(-5px); }

/* --- Loader --- */
.page-loader {
    position: fixed; inset: 0; background: #fff; z-index: 9999;
    display: flex; justify-content: center; align-items: center;
}
.loader-dot { width: 15px; height: 15px; background: var(--primary-color); border-radius: 50%; margin: 0 5px; animation: bounce 0.6s infinite alternate; }
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { to { transform: translateY(-20px); opacity: 0.5; } }

@media (max-width: 768px) {
    .carousel-item img { height: 35vh; }
    .section-title { font-size: 28px; }
    .play-button { width: 70px; height: 70px; font-size: 30px; }
}
/* Fancybox পপআপ ওপেন হলে ব্যাকগ্রাউন্ড এবং স্ক্রলবার ফিক্স */
.fancybox__container {
    --fancybox-bg: rgba(0, 0, 0, 0.9); /* কালো ব্যাকগ্রাউন্ড */
}

/* ইমেজ যাতে স্ক্রিনের বাইরে না যায় */
.fancybox__content img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

/* ব্রাউজারের ডিফল্ট স্ক্রলবার হাইড করা যখন পপআপ চালু থাকে */
body.is-showing-fancybox {
    overflow: hidden !important;
}

/* News Accordion Custom Styles */
.news-accordion-section {
    background-color: #fffaf5;
}

.main-news-accordion .accordion-button {
    background-color: #fff;
    color: var(--dark-text);
    font-size: 20px;
    padding: 20px;
    border: none;
    box-shadow: none;
}

.main-news-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.main-news-accordion .accordion-button:not(.collapsed) i {
    color: #fff !important;
}

.main-news-accordion .accordion-button::after {
    filter: grayscale(1) invert(1);
}

.main-news-accordion .accordion-button.collapsed::after {
    filter: none;
}

/* Nested Accordion Styles */
.nested-accordion .sub-btn {
    background-color: #f8f9fa !important;
    font-size: 17px !important;
    color: var(--primary-color) !important;
    padding: 12px 20px !important;
    border-radius: 10px !important;
}

.bg-light-soft {
    background-color: #fdfdfd;
}

/* News List Links */
.news-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    transition: 0.3s;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list li i {
    color: var(--secondary-color);
    font-size: 18px;
}

.news-list li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: 0.3s;
}

.news-list li:hover {
    padding-left: 10px;
}

.news-list li:hover a {
    color: var(--primary-color);
}

/* Smooth Transition */
.accordion-collapse {
    transition: all 0.4s ease;
}

footer.bg-light {
    background-color: #f8f9fa !important;
    color: #333;
}

.footer-content p {
    font-size: 14px;
    line-height: 1.6;
}
.navbar .border-start {
    border-color: #ddd !important;
}

@media (max-width: 991px) {
    .navbar .btn-season {
        margin-bottom: 10px;
        width: 100%;
    }
}
/* Reels Play Button Styling */
.reel-box {
    cursor: pointer;
    background: #000;
}

.play-overlay {
    z-index: 2;
    transition: all 0.3s ease;
}

.play-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    backdrop-filter: blur(5px);
}

.reel-box:hover .play-icon-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* ভিডিও প্লে হলে বাটন হাইড করা */
.reel-box.is-playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}
