:root {
    --cms-bg-dark: #080808;
    --cms-bg-surface: #121212;
    --cms-gold: #E41E31;
    /* Changed to Red as requested */
    --cms-gold-hover: #b01020;
    --cms-red: #8A0303;
    --cms-text-main: #f8f9fa;
    --cms-text-muted: #b0b0b0;
}

body {
    background-color: var(--cms-bg-dark);
    color: var(--cms-text-main);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* --- Top Bar --- */
.top-bar {
    background: var(--cms-red);
    /* Changed style as requested */
    backdrop-filter: blur(10px);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    position: relative;
    z-index: 1031;
    /* Above navbar */
}

.top-bar-icon {
    color: #fff;
    margin-right: 8px;
}

.top-bar-text {
    color: #ccc;
    margin-right: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.top-bar-text:hover {
    color: #fff;
}

.top-social a {
    color: #fff;
    margin-left: 10px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 0.8rem;
    text-decoration: none;
}

.top-social a:hover {
    color: var(--cms-red);
    background: #fff;
    border-color: #fff;
}

/* --- Header --- */
.navbar {
    background: rgba(8, 8, 8, 0.7);
    /* Slightly more transparent to blend */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(228, 30, 49, 0.1);
    padding: 0.8rem 0;
    transition: all 0.4s ease;
    top: 40px;
    /* Offset for top bar if both are fixed, but we will group them */
}

.site-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}

.site-header-wrapper .navbar {
    top: 0;
    /* Reset because wrapper handles fixed pos */
    position: relative;
    /* Relative to wrapper */
}


.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cms-text-main) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 33px;
    /* Limit logo height */
    width: auto;
}

.navbar-brand span {
    color: var(--cms-gold);
}

.nav-link {
    color: var(--cms-text-main) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin: 0 0.8rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cms-gold);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* --- Hero Slider --- */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgb(0 0 0 / 67%) 0%, rgba(8, 8, 8, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--cms-text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Hero Buttons */
.btn-gold {
    background-color: var(--cms-gold);
    color: #fff;
    border: 1px solid var(--cms-gold);
    padding: 12px 35px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--cms-gold);
    border: 1px solid var(--cms-gold);
}

.btn-outline-light-custom {
    background-color: transparent;
    color: var(--cms-text-main);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 35px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--cms-text-main);
    color: var(--cms-text-main);
}

/* --- Section Common --- */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--cms-gold);
}

.section-title p {
    color: var(--cms-text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Services --- */
.service-card {
    background: var(--cms-bg-surface);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    group: hover;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--cms-gold);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: #181818;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--cms-gold);
    margin-bottom: 25px;
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--cms-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- About --- */
.about-section {
    background: radial-gradient(circle at 10% 50%, rgba(212, 175, 55, 0.05) 0%, rgba(8, 8, 8, 0) 50%);
}

.about-img-wrapper {
    position: relative;
    padding: 20px;
}

.about-img-wrapper img,
.about-img-wrapper video {
    width: 100%;
    box-shadow: -20px 20px 0 rgba(255, 255, 255, 0.05);
    filter: grayscale(80%);
    transition: filter 0.5s ease;
}

.about-img-wrapper:hover img,
.about-img-wrapper:hover video {
    filter: grayscale(0%);
}

.about-text h3 {
    color: var(--cms-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--cms-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* --- Upcoming Releases --- */
.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 2/3;
}

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.movie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.movie-card:hover img {
    transform: scale(1.1);
}

.movie-card:hover .movie-overlay {
    transform: translateY(0);
}

.release-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--cms-red);
    color: white;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- CTA --- */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?auto=format&fit=crop&q=80&w=2000');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
}

/* --- Footer --- */
.footer {
    background-color: #000;
    border-top: 1px solid #222;
    padding: 80px 0 30px;
    color: #777;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: white;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--cms-gold);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--cms-gold);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    font-size: 0.9rem;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--cms-gold);
    border-color: var(--cms-gold);
    color: black;
}

.copyright {
    border-top: 1px solid #111;
    margin-top: 60px;
    padding-top: 30px;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .navbar-brand img {
        max-height: 25px;

    }
}

/* --- Releases Tabs --- */
.nav-pills .nav-link {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cms-text-muted);
    border-radius: 0;
    padding: 10px 35px;
    margin: 0 10px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    border-color: var(--cms-gold);
    color: var(--cms-gold);
}

.nav-pills .nav-link.active {
    background-color: var(--cms-gold);
    color: #fff;
    border-color: var(--cms-gold);
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebc57;
    transform: scale(1.1);
    color: #fff;
}