:root {
    --font-serif: "Times New Roman", serif;
    --font-sans: "Montserrat", sans-serif;
    --color-primary: #1a1a1a;
    --color-gold: #c5a059;
}

body {
    font-family: var(--font-sans);
    color: var(--color-primary);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-serif);
}

/* Navbar */
.brand-logo {
    font-size: 3.5rem;
    /* Significantly larger */
    font-weight: 700;
    letter-spacing: 4px;
    /* More tracking */
    text-transform: uppercase;
    color: #1a1a1a !important;
}

.navbar {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.category-nav {
    border-top: 1px solid #e0e0e0;
    border-bottom: 4px double #e0e0e0;
    /* Double line style */
    padding: 0.8rem 0;
}

.category-nav .nav-link {
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.5rem 2rem;
    position: relative;
    transition: all 0.3s;
    text-transform: uppercase;
}

.category-nav .nav-link:hover {
    color: #777;
}

/* Social Reel Carousel Fixes */
.reel-container-wrapper {
    position: relative;
    padding: 0;
    /* Remove padding so cards hit edge or container */
    max-width: 1400px;
    /* Limit width to keep cards reasonable */
    margin: 0 auto;
}

.reel-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 15px;
    /* Tighter gap */
    padding: 10px;
}

.reel-container::-webkit-scrollbar {
    display: none;
}

.reel-card {
    flex: 0 0 calc(25% - 12px);
    /* Show exactly 4 items on desktop */
    aspect-ratio: 9/16;
    /* Enforce portrait ratio */
    height: auto;
    border-radius: 30px;
    /* Stronger rounding */
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.min-h {
    min-height: 580px;
}

@media (max-width: 992px) {
    .reel-card {
        flex: 0 0 40%;
        /* 2.5 items on tablet */
    }
}

@media (max-width: 576px) {
    .reel-card {
        flex: 0 0 85%;
        /* 1 item on mobile */
    }

    .header-v2 .logo-main img {
        width: 200px;
    }

    .min-h {
        min-height: 300px;
    }
}

.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* Subtler, taller gradient */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
    padding: 2rem 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reel-logo-circle {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
}

.reel-logo-circle img {
    width: 60% !important;
    /* Override standard img width */
    height: auto !important;
}

.reel-text-content {
    line-height: 1;
}

.reel-brand {
    font-family: var(--font-serif);
    text-transform: uppercase;
    font-size: 1.1rem;
    /* Larger serif title */
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.reel-handle {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Header V2 Refinement */
.header-v2 {
    background: #fff;
    padding: 1.5rem 0 0;
    /* Top padding only */
    font-family: var(--font-sans);
}

.logo-row {
    display: flex;
    justify-content: center;
    /* Logo centered */
    align-items: center;
    position: relative;
    padding-bottom: 1.5rem;
    /* Space below logo */
}

.logo-main {
    font-family: var(--font-sans);
    font-size: 3.5rem;
    /* Large size */
    font-weight: 700;
    /* Bold part */
    letter-spacing: 2px;
    color: #000;
    text-decoration: none;
    line-height: 1;
}

.logo-main span {
    font-weight: 300;
    /* Thin part */
}

.subscribe-link {
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    color: #D32F2F;
    /* Brand Red */
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.subscribe-link:hover {
    color: #b71c1c;
}

.nav-row {
    display: flex;
    justify-content: space-between;
    /* Nav left, Search right */
    align-items: center;
    padding: 1.2rem 0;
    /* Vertical spacing for menu */
}

.nav-links-v2 {
    display: flex;
    gap: 2.5rem;
    /* Wide spacing */
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    /* Clean, small text */
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: color 0.2s;
}

.nav-link-item:hover {
    color: #000;
}

.search-icon-btn {
    color: #000;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.search-icon-btn:hover {
    opacity: 0.7;
}

@media (max-width: 992px) {
    .header-v2 {
        padding: 1rem 0;
    }

    .logo-row {
        justify-content: space-between;
        /* Logo left/center, Burger right */
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .logo-main {
        font-size: 2rem;
    }

    .subscribe-link {
        display: none;
        /* Hide top subscribe on mobile */
    }
}

.reel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    /* Larger buttons */
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 20;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #000;
    transition: all 0.2s;
}

.reel-prev {
    left: 20px;
}

/* Floating inside over first card */
.reel-next {
    right: 20px;
}

/* Utility classes */
.font-serif {
    font-family: var(--font-serif);
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.x-small {
    font-size: 0.75rem;
}

/* Image Hover Zoom Effect */
.img-hover-zoom {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    display: block;
}

.overflow-hidden:hover .img-hover-zoom {
    transform: scale(1.08);
    /* More subtle zoom */
}

/* Gradients for text readability */
.gradient-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
}

/* Hero Specific Text Overlay */
.hero-text-strip {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    display: flex;
    align-items: flex-end;
    /* Align text to bottom */
    min-height: 60%;
    /* Gradient covers lower part */
}

/* Internal container for padding */
.hero-text-strip>div {
    padding: 1.5rem 2rem;
}

.hero-meta {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 2rem;
    margin-right: 2rem;
    min-width: 180px;
}

.hero-title {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Play Button Pulse */
.play-btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Carousel Tweaks */
.carousel-caption {
    bottom: 3rem;
}

/* Card tweaks */
.card {
    border-radius: 0;
    /* Square edges for editorial look */
}

a {
    transition: color 0.2s;
}

/* Search Overlay Styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1050;
    /* Above navbar */
    padding: 2rem 0;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.search-overlay.active {
    transform: translateY(0);
}

.btn-close-search {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    transition: color 0.2s;
    cursor: pointer;
}

.btn-close-search:hover {
    color: #000;
}

.search-input-lg {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    padding: 1rem 0;
    outline: none;
    background: transparent;
}

.search-input-lg::placeholder {
    color: #ccc;
    font-weight: 300;
}

/* Parallax Section */
.parallax-section {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    /* Create a subtle zoom effect on scroll if we wanted JS, but fixed attachment does the parallax */
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Enhanced Play Button */
.play-btn-pulse {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.play-btn-pulse:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

footer a {
    text-decoration: none;
}

.logo {
    max-width: 200px;
}

@media (min-width: 600px) {
    .logo {
        max-width: 200px;
    }
}

@media (min-width: 768px) {
    .logo {
        max-width: 200px;
    }
}

/* Video Lightbox Carousel */
.video-carousel-section {
    background: #000;
    padding: 5rem 0;
    position: relative;
    /* Dark theme for cinema feel */
}

.video-thumb-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: none;
    border-radius: 0;
}

.video-thumb-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: opacity 0.3s, transform 0.5s;
    opacity: 0.8;
}

.video-thumb-card:hover .video-thumb-img {
    opacity: 0.4;
    transform: scale(1.05);
}

.red-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 40px;
    background-color: #ff0000;
    border-radius: 10px;
    /* Rounded rect like YouTube */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
    z-index: 2;
}

.red-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #ffffff;
}

.video-thumb-card:hover .red-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #ff2020;
}

/* Video Modal */
.modal-content-video {
    background-color: #000;
    border: none;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Brand Specific Red */
.text-brand-red {
    color: #D32F2F !important;
}
.fw-normal{font-weight:500 !important;}
h6.fw-normal{font-weight:600 !important;line-height:1.5rem;}
.object-position{object-position: bottom;}

h5.fw-normal{font-size:1.1rem !important;line-height:1.5rem;font-weight:600 !important;}