/* === CONTROL PANEL (Change Theme Here) === */
:root {
    --primary-color: #ffaa00; /* Fiery Gold */
    --bg-dark: #050505;       /* Deep Black */
    --bg-card: #111111;       /* Card Background */
    --text-main: #ffffff;
    --text-muted: #888888;
}

/* === GLOBAL RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background-color: var(--bg-dark); color: var(--text-main); overflow-x: hidden; }

/* === NAVBAR (Hamburger Left, Logo Center) === */
.navbar { 
    display: flex; align-items: center; 
    padding: 15px 30px; background: rgba(0,0,0,0.95); 
    position: fixed; width: 100%; top: 0; z-index: 1000; 
    border-bottom: 1px solid #222; height: 80px;
}

/* 1. Hamburger (Left) */
.hamburger { 
    cursor: pointer; display: flex; flex-direction: column; gap: 6px; 
    z-index: 1002; /* Above everything */
}
.line { width: 35px; height: 3px; background-color: var(--primary-color); transition: 0.3s; border-radius: 5px; }
.hamburger:hover .line { box-shadow: 0 0 10px var(--primary-color); }

/* 2. Logo (Absolute Center) */
.logo { 
    position: absolute; left: 50%; transform: translateX(-50%); 
    cursor: pointer;
}
.logo img { height: 90px; transition: 0.3s; }
.logo:hover img { transform: scale(1.1); filter: drop-shadow(0 0 10px var(--primary-color)); }

/* 3. The Menu (Hidden Side Panel) */
.nav-panel {
    position: fixed; top: 0; left: -100%; /* Hidden on Left */
    width: 300px; height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-right: 1px solid var(--primary-color);
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 40px;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
    box-shadow: 10px 0 30px rgba(0,0,0,0.5);
}
.nav-panel.active { left: 0; } /* Slide In */

.nav-panel a { 
    font-size: 1.5rem; color: #fff; text-decoration: none; font-weight: bold; 
    text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; 
}
.nav-panel a:hover { color: var(--primary-color); text-shadow: 0 0 15px var(--primary-color); transform: translateX(10px); }

/* === HERO SECTION === */
.hero { 
    height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
    background-image: url('images/hero-bg.jpg'); background-size: cover; background-position: center; position: relative;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.2), var(--bg-dark)); }
.hero-content { position: relative; z-index: 2; padding: 20px; animation: fadeInUp 1s ease-out; }
.hero h1 { font-size: 4rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 3px; }
.highlight { color: var(--primary-color); text-shadow: 0 0 25px rgba(255, 170, 0, 0.6); }

/* COUNTDOWN */
.countdown-container { display: flex; gap: 20px; justify-content: center; margin: 30px 0; }
.time-box { background: rgba(255,255,255,0.05); padding: 15px; border-radius: 10px; min-width: 90px; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(5px); }
.time-val { font-size: 2.2rem; font-weight: bold; color: var(--primary-color); display: block; }
.time-label { font-size: 0.9rem; text-transform: uppercase; color: #aaa; letter-spacing: 1px; }

/* === SECTIONS (Views) === */
.view-section { display: none; padding-top: 100px; padding-bottom: 50px; min-height: 100vh; animation: fadeIn 0.5s; }
.view-section.active-view { display: block; }
.container { max-width: 1100px; margin: 0 auto; text-align: center; padding: 0 20px; }
.section-title { font-size: 2.5rem; margin-bottom: 50px; border-bottom: 3px solid var(--primary-color); display: inline-block; padding-bottom: 10px; }

/* CARDS (Premium Look) */
.card, .team-card { 
    background: var(--bg-card); border: 1px solid #222; padding: 25px; border-radius: 15px; 
    width: 300px; transition: 0.4s; position: relative; overflow: hidden; 
}
.card:hover { transform: translateY(-10px); box-shadow: 0 10px 40px rgba(0,0,0,0.6); border-color: var(--primary-color); }

/* COMING SOON BOX */
.coming-soon-box { 
    border: 2px dashed #333; padding: 60px; border-radius: 15px; background: rgba(255,255,255,0.02); margin: 40px auto; max-width: 800px;
}
.coming-soon-box h3 { font-size: 2rem; color: #fff; margin-bottom: 10px; }
.coming-soon-box p { color: #888; }

/* MAP & CONTACT */
.map-container { 
    width: 100%; height: 400px; border-radius: 15px; overflow: hidden; border: 1px solid #333; margin-bottom: 30px; 
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
iframe { width: 100%; height: 100%; border: 0; filter: grayscale(100%) invert(92%) contrast(85%); }

/* SOCIAL ICONS (Grey to Color on Hover) */
.contact-info p { font-size: 1.2rem; color: #aaa; margin-bottom: 15px; }
.socials { font-size: 2.5rem; display: flex; gap: 30px; justify-content: center; }
.socials i { color: #444; transition: 0.4s; cursor: pointer; } 
.socials i:hover { color: var(--primary-color); transform: scale(1.2); text-shadow: 0 0 20px var(--primary-color); }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }