/* ==================== ROOT THEME ==================== */
:root {
    --bg-black: #0b0f14;
    --bg-navy: #0e1a24;
    --gold-main: #d4af37;
    --gold-light: #f5d77a;
    --gold-dark: #b8962e;
    --white-main: #ffffff;
    --gray-soft: #b3b3b3;
}

/* ==================== RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--white-main);
    font-family: 'Poppins', sans-serif;
}

/* ==================== HEADER ==================== */
.main-header {
    width: 100%;
    height: 95px;
    background: linear-gradient(
        90deg,
        #000000,
        var(--bg-navy),
        #000000
    );
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header-container {
    max-width: 1200px;
    height: 85px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-box img {
    height: 60px;
    filter: drop-shadow(0px 0px 6px rgba(212,175,55,0.4));
}
/* ==================== FLOATING LOGO ==================== */
.floating-logo {
    animation: logoFloat 1s ease-in-out infinite;
}

/* Floating animation */
@keyframes logoFloat {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(10px); /* moves right */
    }
    100% {
        transform: translateX(0px); /* back to original */
    }
}


/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--white-main);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* Gold underline animation */
.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--gold-main);
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--gold-light);
}

/* CTA Button */
.btn-gold {
    padding: 11px 26px;
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold-main)
    );
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0px 0px 15px rgba(212,175,55,0.4);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(
        135deg,
        var(--gold-main),
        var(--gold-dark)
    );
    box-shadow: 0px 0px 25px rgba(212,175,55,0.7);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    width: 30px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background-color: var(--gold-main);
    margin-bottom: 6px;
    border-radius: 2px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {

    .main-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}


/* ==================== CINEMA STRIP ==================== */
.cinema-strip {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #f5d77a; /* GOLD BACKGROUND */
    overflow: hidden;
}

/* ==================== MARQUEE ==================== */
.marquee {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.marquee-content {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #000000; /* BLACK TEXT */
    padding-left: 100%;
    animation: marqueeMove 18s linear infinite;
}

/* Marquee animation */
@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ==================== BLACK SPOTLIGHT EFFECT ==================== */
.spotlight {
    position: absolute;
    top: -35px;
    width: 320px;
    height: 120px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.3),
        transparent 70%
    );
    filter: blur(28px);
    pointer-events: none;
}

/* Left spotlight animation */
.spotlight-left {
    left: -320px;
    animation: spotlightLeft 8s ease-in-out infinite;
}

/* Right spotlight animation */
.spotlight-right {
    right: -320px;
    animation: spotlightRight 10s ease-in-out infinite;
}

/* Spotlight keyframes */
@keyframes spotlightLeft {
    0% { left: -320px; opacity: 0; }
    30% { opacity: 1; }
    50% { left: 30%; }
    80% { opacity: 0.8; }
    100% { left: 110%; opacity: 0; }
}

@keyframes spotlightRight {
    0% { right: -320px; opacity: 0; }
    30% { opacity: 1; }
    50% { right: 30%; }
    80% { opacity: 0.8; }
    100% { right: 110%; opacity: 0; }
}


/* ==================== HERO SECTION ==================== */
.hero-section {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Slides */
.hero-slide {
    position: absolute;
  background: #fff;
    width: 100%;
    height: 440px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

/* Overlay */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f5d77a;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 22px;
    color: #ffffff;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f5d77a;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
}

/* ==================== ARROWS ==================== */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #f5d77a;
    background: rgba(0, 0, 0, 0.6);
    color: #f5d77a;
    font-size: 20px;
    cursor: pointer;
    z-index: 3;
}

.slider-arrow.left {
    left: 20px;
}

.slider-arrow.right {
    right: 20px;
}

/* ==================== DOTS ==================== */
.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 80px;        
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(245, 215, 122, 0.4);
    cursor: pointer;
}

.dot.active {
    background-color: #f5d77a;
}


/* ==================== ABOUT SECTION ==================== */
.about-section {
    width: 100%;
    padding: 70px 0;
    background-color: #0b0f14;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Content */
.about-content {
    width: 55%;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #f5d77a;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    line-height: 26px;
    color: #ffffff;
    margin-bottom: 16px;
    max-width: 520px;
}

.about-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 28px;
    background-color: #f5d77a;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.about-btn:hover {
    background-color: #e6c85f;
}

/* Right Visual */
.about-visual {
    width: 45%;
    display: flex;
    justify-content: center;
}

.film-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    border: 2px solid #f5d77a;
    padding: 12px;
}

.film-frame img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}


/* ==================== WHY CHOOSE US ==================== */
.why-section {
    width: 100%;
    padding: 80px 0;
    background-color: #000000;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #f5d77a;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 50px;
}

/* Cards */
.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background-color: #0b0f14;
    padding: 35px 25px;
    border: 3px solid rgba(245, 215, 122, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 30px rgba(245, 215, 122, 0.25);
}

.why-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.why-card p {
    font-size: 14px;
    color: #cccccc;
    line-height: 22px;
}

/* Responsive */
@media (max-width: 900px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .why-cards {
        grid-template-columns: 1fr;
    }
}


/* ==================== FEATURED TALENT ==================== */
.talent-section {
    width: 100%;
    padding: 80px 0;
    background-color: #0b0f14;
}

.talent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

/* Cards Grid */
.talent-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Single Card */
.talent-card {
    background-color: #000000;
    border: 1px solid rgba(245, 215, 122, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.talent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 40px rgba(245, 215, 122, 0.25);
}

/* Image */
.talent-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Info */
.talent-info {
    padding: 18px;
}

.talent-info h3 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
}

.talent-info p {
    font-size: 13px;
    color: #f5d77a;
}

/* CTA */
.talent-cta {
    margin-top: 45px;
}

.talent-btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: #f5d77a;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
}

/* Responsive */
@media (max-width: 1000px) {
    .talent-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .talent-cards {
        grid-template-columns: 1fr;
    }
}


/* ==================== FOOTER ==================== */
.main-footer {
    background-color: #f5d77a; /* GOLD BACKGROUND */
    border-top: 2px solid #000000;
    padding-top: 60px;
}

/* Footer Grid */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 50px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Headings */
.footer-col h4 {
    font-size: 16px;
    color: #000000; /* BLACK */
    margin-bottom: 18px;
    font-weight: 700;
}

/* Text */
.footer-col p {
    font-size: 14px;
    line-height: 24px;
    color: #000000; /* BLACK */
}

/* Logo */
.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

/* Lists */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #000000;
}

.footer-col ul li a {
    text-decoration: none;
    color: #000000;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 0.7;
}

/* ==================== FOOTER SOCIAL ICONS ==================== */
.footer-social {
    margin-top: 18px;
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: #000000; /* BLACK CIRCLE */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

.footer-social img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* ==================== FOOTER BOTTOM ==================== */
.footer-bottom {
    background-color: #f5d77a; 
    text-align: center;       
    padding: 18px 10px;
}

.footer-bottom p {
    font-size: 13px;
    color: #000; 
    line-height: 22px;
}

/* ACP LINK */
.acp-link {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.acp-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

.acp-link:hover::after {
    width: 100%;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ACP IT ZONE Highlight */
.acp-link {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.acp-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #f5d77a;
    transition: width 0.3s ease;
}

.acp-link:hover::after {
    width: 100%;
}

