/* 1. VARIABLES & RESET */
:root {
    --bg: #0a0a0a;
    --text: #ffffff;
    --accent: #00ebff;
    --gray: #222;
    --font-main: 'Inter', sans-serif;
    --brand-pink: #d962b1;
    --brand-cyan: #a9e8eb;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { 
    max-width: 1400px; /* Increased to give your menu items more room */
    margin: 0 auto; 
    padding: 0 20px; 
}

img, video { 
    max-width: 100%; 
    border-radius: 5px; 
    display: block; 
}

/* 2. NAVBAR & NAVIGATION */
.navbar {
    padding: 10px 0;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

.logo img { 
    height: 60px; /* Optimized size */
    width: auto; 
}

.nav-list { 
    display: flex; 
    align-items: center; 
    gap: 15px; /* Tighter gap to prevent wrapping */
    list-style: none; 
}

.nav-list li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-style: italic;
    font-size: 13px; /* Slightly smaller for standard desktop screens */
    transition: color 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.nav-list li a:hover { 
    color: var(--accent); 
}

.cta-nav { 
    border: 1px solid #fff; 
    padding: 8px 15px; 
    border-radius: 4px; 
    font-style: normal !important; 
}

/* Dropdown Logic */
.dropdown { position: relative; }
.arrow { font-size: 10px; margin-left: 3px; font-style: normal; vertical-align: middle; }

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--brand-pink);
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    z-index: 100;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.submenu li a { 
    padding: 12px 25px; 
    display: block; 
    color: #000 !important; 
    font-size: 1.1rem;
    font-weight: 800;
    font-style: italic;
}

.submenu li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.dropdown:hover .submenu { display: block; }

/* 3. HERO & VIDEO BACKGROUND */
.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.video-background iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw; height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; }
.hero h1 { 
    font-size: clamp(2.5rem, 8vw, 6rem); 
    font-weight: 900; 
    letter-spacing: -2px; 
    text-transform: uppercase;
}

/* 4. COMPONENTS & GRID */
.section-padding { padding: 80px 0; }
.section-title { 
    font-size: 2.5rem; 
    margin-bottom: 30px; 
    border-left: 4px solid #fff; 
    padding-left: 20px; 
    text-transform: uppercase;
}

.grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    align-items: center; 
}

.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-top: 50px; 
}

.info-highlight { 
    background: #fff; 
    color: #000; 
    padding: 60px; 
    text-align: center; 
    font-size: 1.4rem; 
    font-weight: 700;
}

.card { 
    background: var(--gray); 
    padding: 30px; 
    border-radius: 8px; 
    transition: 0.3s; 
}

.card:hover { 
    transform: translateY(-10px); 
    background: #333; 
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
}

.center { text-align: center; }
.fade-text { opacity: 0.7; letter-spacing: 3px; font-weight: 800; text-transform: uppercase; }

/* 5. BRANDED FOOTER SECTIONS */
.footer-cta {
    background-color: var(--brand-cyan);
    padding: 80px 0;
    text-align: center;
}

.footer-cta h2 {
    color: #000;
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
}

.newsletter-section {
    background-color: var(--brand-pink);
    padding: 60px 0;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.newsletter-form input {
    flex: 2;
    padding: 18px;
    background: var(--brand-cyan);
    border: none;
    font-style: italic;
    font-weight: 700;
    outline: none;
}

.newsletter-form button {
    flex: 1;
    padding: 18px 40px;
    background: none;
    border: 2px solid var(--brand-cyan);
    color: #000;
    font-weight: 900;
    font-style: italic;
    cursor: pointer;
    text-transform: lowercase;
}

.press-link {
    display: inline-block;
    background: var(--brand-cyan);
    color: #000;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 800;
    font-style: italic;
    border-radius: 2px;
}

.footer-main {
    background: #000;
    color: #fff;
    padding: 50px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.legal-text {
    font-size: 0.85rem;
    max-width: 650px;
    line-height: 1.5;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 20px;
    font-size: 1.8rem;
}

.social-icons a { 
    color: #fff; 
    text-decoration: none; 
    transition: opacity 0.3s;
}

.social-icons a:hover { opacity: 0.7; }

.footer-bottom-bar {
    background: var(--brand-cyan);
    padding: 20px;
    text-align: center;
}

.footer-bottom-bar a {
    color: var(--brand-pink);
    text-decoration: none;
    font-weight: 900;
    font-style: italic;
    font-size: 1.1rem;
}

/* 6. RESPONSIVE DESIGN */
.menu-toggle { display: none; color: white; font-size: 28px; cursor: pointer; }

@media (max-width: 1024px) {
    .menu-toggle { display: block; }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 80px; left: 0; width: 100%;
        background: #000;
        flex-direction: column;
        padding: 40px 20px;
        border-bottom: 2px solid #333;
        gap: 30px;
    }

    .nav-list.active { display: flex; }

    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    
    .reverse { display: flex; flex-direction: column-reverse; }

    .submenu { 
        position: static; 
        display: block; 
        background: transparent; 
        box-shadow: none;
        padding-left: 20px; 
    }
    
    .submenu li a { color: var(--brand-pink) !important; padding: 10px 0; }
    
    .footer-grid { flex-direction: column; text-align: center; }
    
    .newsletter-form { flex-direction: column; }
}

@media (max-aspect-ratio: 16/9) { .video-background iframe { width: 177.78vh; } }
@media (min-aspect-ratio: 16/9) { .video-background iframe { height: 56.25vw; } }