/* --- CSS RESET & VARIABLES --- */
:root {
    --bg-dark: #0a0a0f;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --primary-accent: #7928CA;
    --secondary-accent: #FF0080;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- VIDEO BACKGROUND --- */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Ensures the video scales to fill the screen without stretching */
    z-index: -2; /* Keeps the video at the very back */
    /* ADD THESE LINES TO ZOOM/CROP */
    transform: scale(1.3); /* 1.2 zooms in 20%. Increase to 1.3 or 1.5 for more crop */
    transform-origin: top center; /* Keeps the zoom focused on the dead center */
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Keeps your dark tint over the video so text pops */
    background: linear-gradient(rgba(10, 10, 15, 0.6), rgba(10, 10, 15, 0.9)); 
    z-index: -1;
    pointer-events: none; /* Prevents the overlay from blocking clicks */
}
/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: rgba(10, 10, 15, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-accent);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.8rem;
    cursor: pointer;
}

/* --- HERO SECTION (Homepage Only) --- */
.hero {
    flex: 1; /* Pushes footer to bottom */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
}

.hero-logo-img {
    max-width: 500px;
    width: 90%;
    height: auto;
    margin-bottom: 2rem;
    
    /* ADD THIS LINE */
    mix-blend-mode: screen; 
    
    /* You might want to remove the drop-shadow if it looks weird with the blend mode */
    /* filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); */ 
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* --- SUBPAGE LAYOUTS --- */
.page-content {
    flex: 1; /* Pushes footer to bottom */
    padding: 8rem 1.5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(180deg, #fff 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
    box-shadow: 0 4px 20px rgba(255, 0, 128, 0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.6);
}

.btn-full { width: 100%; }

/* --- GRID & CARDS --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.card p { color: var(--text-muted); font-size: 0.95rem; }
.text-center { text-align: center; }
.mb-1-5 { margin-bottom: 1.5rem; }

/* --- CONTACT FORM --- */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-accent);
    background: rgba(255, 255, 255, 0.08);
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: 0.9rem;
    background: var(--bg-dark);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: block; }
}