:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #ff0000;
    --nav-bg: #000000;
    --nav-text: #465230;
    --footer-bg: #000000;
    --footer-link: #171717;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header & Navbar */f
.main-header {
    background-color: var(--nav-bg);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    background-color: transparent;
}

.nav-links a:hover {
    color: #fff;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    list-style: none;
    padding: 1rem 0;
    min-width: 200px;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    border: 1px solid #1a1a1a;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li a {
    padding: 0.8rem 1.5rem;
    display: block;
    width: 100%;
    border-radius: 0;
    color: #888;
}

.dropdown-menu li a:hover {
    color: #fff;
    background-color: #111;
}

/* Category Page Styles */
.category-page {
    padding-top: 50px;
}

.category-hero {
    text-align: center;
    padding: 100px 5%;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.category-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.category-hero p {
    color: #888;
    font-size: 1.2rem;
}

.video-grid-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px;
    background-color: #111;
    border: 1px dashed #333;
    color: #555;
    border-radius: 8px;
}

/* Responsive Mobile Navigation for Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        background-color: transparent;
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }
}

.btn-primary {
    background-color: #97b069;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

/* Hero Section Styles */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

/* Footer Styles */
.main-footer {
    background-color: var(--footer-bg);
    padding: 5rem 5% 2rem;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-section p {
    color: #888;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #1a1a1a;
    color: #888;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: var(--transition);
}

.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .about-final-container, .motion-container {
        margin-left: 5% !important;
        margin-right: 5% !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-only {
        display: block;
        margin-top: 20px;
    }

    /* Hero Responsive */
    .hero-wp {
        padding: 60px 20px;
    }

    .main-heading-wp {
        font-size: 36px !important;
    }

    .sub-text-wp {
        margin-bottom: 40px !important;
        font-size: 18px !important;
    }

    .brand-boxes-wp {
        flex-wrap: wrap;
        gap: 15px !important;
    }

    .brand-boxes-wp div {
        width: 120px !important;
        height: 60px !important;
    }

    /* About Section Responsive */
    .about-final-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px !important;
    }

    .about-final-img img {
        width: 100% !important;
        max-width: 300px;
        height: auto !important;
    }

    .about-final-line {
        display: none;
    }

    .about-final-title {
        font-size: 36px !important;
    }

    /* Film Section Responsive */
    .film-title {
        font-size: 32px !important;
    }

    .film-frame {
        width: 95% !important;
        height: 250px !important;
    }

    /* Motion Section Responsive */
    .motion-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px !important;
    }

    .motion-line {
        display: none;
    }

    .motion-text h2 {
        font-size: 32px !important;
    }

    /* Success Section Responsive */
    .success-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 20px !important;
    }

    .success-card {
        width: 100% !important;
        max-width: 100%;
        height: auto !important;
        min-height: 300px;
    }

    /* CTA Section Responsive */
    .cta-box {
        width: 90% !important;
        padding: 40px 20px !important;
    }

    .cta-title {
        font-size: 28px !important;
    }

    /* Stats Section Responsive */
    .stats-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px !important;
    }

    .stat-item {
        width: 100% !important;
    }

    .stat-item h2 {
        font-size: 48px !important;
    }

    .line {
        margin: 10px auto !important;
    }

    /* General responsive fixes */
    .hero-content-wp {
        padding: 0 20px;
    }

    .main-heading-wp {
        font-size: 42px !important;
    }

    .sub-text-wp {
        font-size: 18px !important;
        margin-bottom: 50px !important;
    }

    .brand-boxes-wp {
        gap: 15px !important;
        justify-content: center;
    }

    .brand-boxes-wp div {
        width: 100px !important;
        height: 60px !important;
    }
}
