/* ROOT VARIABLES FOR THEME */
/* ROOT & UNIVERSAL (style.css) */
:root {
    --bg-color: #0b0b0b;
    --text-color: #ffffff;
    --primary-red: hsla(357, 86%, 46%, 0.734); 
    --gray-text: #aaaaaa;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { 
    background-color: var(--bg-color); 
    color: var(--text-color); 
    overflow-x: hidden; 
    
    /* Sticky Footer Fix (New Code) */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Ye line footer ko hamesha bottom par force karegi agar content kam bhi ho */
#footer-container {
    margin-top: auto;
}

/* NAVBAR */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px); position: fixed; width: 100%; top: 0; z-index: 1000;
}
.logo h2 { font-size: 28px; font-weight: 800; opacity: 1; }
.logo span { color: var(--primary-red); }

.nav-links { display: flex; align-items: center; }
.nav-links a {
    color: var(--text-color); text-decoration: none; margin-left: 30px;
    font-size: 16px; font-weight: 600; transition: 0.3s ease; opacity: 1 !important; /* Fixed opacity issue */
}
.nav-links a:hover, .nav-links a.active { color: var(--primary-red); }

/* DROPDOWN MENU */
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    visibility: hidden; opacity: 0; position: absolute; top: 150%; left: 30px;
    background-color: #111; min-width: 180px; border-top: 3px solid var(--primary-red);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5); z-index: 1;
    transition: all 0.3s ease; transform: translateY(10px); border-radius: 0 0 5px 5px;
}
.dropdown-content a {
    margin-left: 0; padding: 12px 20px; display: block; border-bottom: 1px solid #222;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background-color: #1a1a1a; padding-left: 25px; }

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-content { visibility: visible; opacity: 1; top: 100%; transform: translateY(0); }

.hamburger { display: none; font-size: 24px; cursor: pointer; }


/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0b0b0b 100%);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-red);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s ease;
    display: inline-block;
    margin: 0 10px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-red);
}

.btn-outline {
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* FOOTER */
footer {
    background-color: #050505;
    padding: 50px 5% 20px;
    border-top: 2px solid #1a1a1a;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo p {
    color: var(--gray-text);
    margin-top: 10px;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 15px;
    color: var(--primary-red);
}

.footer-links a {
    display: block;
    color: var(--gray-text);
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--text-color);
}

.footer-social a {
    color: var(--text-color);
    font-size: 20px;
    margin-right: 15px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    color: var(--gray-text);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: absolute;
        top: 70px;
        right: -100%;
        background: #111;
        width: 250px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s ease;
    }
    .nav-links.show { right: 0; }
    .nav-links a { margin: 20px 0; font-size: 18px; }
    .hero-content h1 { font-size: 2.5rem; }
    .btn { margin-bottom: 15px; width: 80%; }
}