/* =========================================
   GOING HIGHWAY ENTERTAINERS - MASTER CSS
   ========================================= */

:root {
    --bg-dark: #050505;
    --neon: #a2e635;
    --neon-glow: rgba(162, 230, 53, 0.4);
    --card-bg: rgba(20, 20, 20, 0.6);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --font-main: 'Inter', sans-serif;
}

/* --- BASE RESET (Kills all default browser styling/bullets) --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-main); overflow-x: hidden; line-height: 1.6; }
ul, ol, li { list-style: none !important; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- HEADER & DROPDOWNS --- */
header { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(5, 5, 5, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 15px 0; transition: all 0.3s ease; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 35px; }
.nav-links > li > a { color: var(--text-main); font-weight: 600; font-size: 14px; transition: color 0.3s ease; }
.nav-links > li > a:hover { color: var(--neon); }

/* Dropdown Logic */
.has-dropdown { position: relative; padding: 10px 0; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; min-width: 200px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; padding: 10px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 20px; color: var(--text-muted); font-size: 13px; transition: 0.3s; }
.dropdown-menu li a:hover { background: rgba(162, 230, 53, 0.1); color: var(--neon); padding-left: 25px; }

/* Buttons */
.btn-primary { background: var(--neon); color: #000; padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 14px; display: inline-block; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--neon-glow); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 12px 28px; border-radius: 50px; font-weight: 600; display: inline-block; transition: 0.3s; }
.btn-outline:hover { border-color: var(--neon); color: var(--neon); }

/* --- HERO ANIMATION (The Spotlight & Slats) --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding-top: 80px; }

/* 1. The glowing light that follows the mouse */
.hero-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(800px circle at var(--x, 50%) var(--y, 50%), var(--neon-glow) 0%, transparent 60%); z-index: 1; }

/* 2. The dark vertical slats over the glow */
.hero-slats { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, #050505 0px, #050505 40px, transparent 40px, transparent 60px); z-index: 2; }

/* 3. A slight dark fade at the bottom to blend into the next section */
.hero-fade { position: absolute; bottom: 0; left: 0; width: 100%; height: 150px; background: linear-gradient(to bottom, transparent, var(--bg-dark)); z-index: 3; }

/* 4. The actual text content sits on top */
.hero-content { position: relative; z-index: 4; max-width: 800px; padding: 0 20px; }
.hero h1 { font-size: clamp(50px, 8vw, 90px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -2px; }
.hero h1 .highlight { color: var(--neon); }
.hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* --- SECTION STYLES --- */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 40px; font-weight: 800; margin-bottom: 15px; }
.section-header h2 .highlight { color: var(--neon); }
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* --- GRIDS & CARDS --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--card-bg); border: 1px solid rgba(255,255,255,0.05); padding: 40px; border-radius: 16px; backdrop-filter: blur(10px); transition: all 0.4s ease; cursor: pointer; }
.service-card:hover { border-color: var(--neon); transform: translateY(-10px); background: rgba(20,20,20,0.9); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.service-icon { font-size: 30px; color: var(--neon); margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 22px; margin-bottom: 15px; }
.service-card p { color: var(--text-muted); font-size: 14px; }

/* Portfolio Grid */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.portfolio-card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/10; border: 1px solid rgba(255,255,255,0.1); }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 30px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); }
.portfolio-info h3 { font-size: 20px; margin-bottom: 5px; }
.portfolio-info p { color: var(--neon); font-size: 13px; font-weight: 600; }

/* --- SCROLL REVEAL ANIMATION --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- FOOTER --- */
footer { padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { font-size: 16px; margin-bottom: 20px; color: #fff; }
.footer-col p { color: var(--text-muted); font-size: 14px; margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; display: inline-block; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--neon); }

/* --- RESPONSIVE --- */
.mobile-menu-btn { display: none; font-size: 24px; color: #fff; cursor: pointer; border: none; background: none; }
@media (max-width: 900px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #050505; flex-direction: column; padding: 20px 0; border-bottom: 1px solid var(--neon); }
    .nav-links.show { display: flex; }
    .mobile-menu-btn { display: block; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; text-align: center; display: none; }
    .has-dropdown:hover .dropdown-menu { display: block; }
    .portfolio-grid, .footer-grid { grid-template-columns: 1fr; }
}