/* --- LOL TWERK V2.0: BROADCAST INDUSTRIAL THEME --- */

/* 1. IMPORTS & FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Roboto+Mono:wght@400;700&display=swap');

/* 2. CORE RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background-color: #050505;
    /* Subtle Technical Grid Background */
    background-image: linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #e0e0e0;
    font-family: 'Roboto Mono', monospace; /* Tech vibe for body text */
    line-height: 1.6;
    overflow-x: hidden;
}

/* 3. TYPOGRAPHY */
h1, h2, h3, h4, .nav-logo {
    font-family: 'Montserrat', sans-serif; /* Heavy vibe for headers */
    text-transform: uppercase;
    letter-spacing: -1px;
}

h1 { font-size: 4.5rem; font-weight: 900; line-height: 1; margin-bottom: 20px; color: #fff; text-shadow: 0 0 20px rgba(0,255,0,0.3); }
h2 { color: #00ff41; font-size: 1.2rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 30px; }
h3 { font-size: 2.5rem; color: #fff; border-left: 5px solid #00ff41; padding-left: 20px; margin-bottom: 40px; }
.highlight { color: #00ff41; }

/* 4. NAVIGATION BAR */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
}
.nav-logo { font-weight: 900; font-size: 1.5rem; color: #fff; }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { color: #bbb; font-weight: 700; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: #00ff41; }
.nav-btn {
    background: #00ff41; color: #000 !important;
    padding: 8px 20px; border-radius: 4px;
}

/* 5. HERO SECTION */
.hero {
    height: 100vh; /* Full Screen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    position: relative;
}
.hero::after { /* Vignette Effect */
    content: ""; position: absolute; top:0; left:0; width:100%; height:100%;
    background: radial-gradient(transparent 50%, #000 100%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; max-width: 800px; }

/* 6. BUTTONS & AUDIO */
.btn {
    display: inline-block;
    background: transparent;
    color: #00ff41;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    border: 2px solid #00ff41;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: 20px;
    cursor: pointer;
}
.btn:hover { background: #00ff41; color: #000; box-shadow: 0 0 30px rgba(0,255,65,0.4); }

.audio-box {
    background: #111;
    border-left: 4px solid #00ff41;
    padding: 20px;
    margin: 30px auto;
    max-width: 400px;
    text-align: left;
}
.audio-box p { font-size: 0.8rem; color: #888; margin-bottom: 5px; font-weight: bold; }
audio { width: 100%; height: 35px; }

/* 7. LAYOUT CONTAINERS */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
section { padding: 100px 0; border-bottom: 1px solid #1a1a1a; }

/* 8. SERVICES (CARDS) */
.services { background: #0c0c0c; }
.services .container {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.service-card {
    background: #111;
    padding: 40px;
    border: 1px solid #222;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card::before { /* Neon Top Bar */
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: #00ff41; transform: scaleX(0); transition: 0.4s; transform-origin: left;
}
.service-card:hover { transform: translateY(-10px); background: #161616; border-color: #333; }
.service-card:hover::before { transform: scaleX(1); }
.service-card h4 { color: #fff; font-size: 1.4rem; margin-bottom: 15px; }

/* 9. PRICING GRID */
.pricing-grid { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.price-card {
    background: #111; border: 1px solid #333; padding: 40px; flex: 1; min-width: 280px;
    text-align: center; position: relative;
}
.price-card.featured { border: 2px solid #00ff41; transform: scale(1.05); z-index: 2; box-shadow: 0 0 30px rgba(0,0,0,0.5); }
.price { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 20px 0; font-family: 'Montserrat', sans-serif; }
.price-card ul { text-align: left; list-style: none; margin-top: 20px; }
.price-card li { margin-bottom: 12px; color: #aaa; font-size: 0.9rem; border-bottom: 1px solid #222; padding-bottom: 5px; }

/* 10. TIMELINE (ABOUT) */
.timeline-item { display: flex; align-items: center; margin-bottom: 100px; gap: 60px; }
.timeline-item.reverse { flex-direction: row-reverse; }
.timeline-text { flex: 1; }
.timeline-text h4 { font-size: 2rem; color: #fff; margin-bottom: 15px; }
.timeline-img { flex: 1; }
.timeline-img img {
    width: 100%; border-radius: 4px;
    filter: grayscale(100%) contrast(120%);
    box-shadow: 20px 20px 0px #1a1a1a; /* Hard shadow for depth */
    transition: 0.5s;
    border: 1px solid #333;
}
.timeline-img img:hover { filter: grayscale(0%); box-shadow: 20px 20px 0px #00ff41; transform: translate(-5px, -5px); }
.caption { margin-top: 15px; font-size: 0.8rem; color: #666; font-style: italic; display: block; border-left: 2px solid #333; padding-left: 10px; }

/* 11. CONTACT & FOOTER */
.contact {
    position: relative;
    z-index: 10;
}
.contact { text-align: center; background: #050505; }
.email-link {
    font-size: 2rem; font-weight: 900; color: #fff;
    border-bottom: 3px solid #00ff41; transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}
.email-link:hover { background: #00ff41; color: #000; border-bottom: 3px solid transparent; padding: 0 10px; }
footer { background: #000; padding: 40px 0; text-align: center; color: #444; font-size: 0.8rem; border-top: 1px solid #1a1a1a; }

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    h3 { font-size: 1.8rem; }
    .hero { height: auto; padding: 150px 0 100px 0; }
    .nav-links { display: none; } /* Hides menu links on mobile to keep it clean */
    .navbar { justify-content: center; }
    .timeline-item, .timeline-item.reverse { flex-direction: column; gap: 30px; }
    .price-card.featured { transform: scale(1); }
    .timeline-img img { box-shadow: 10px 10px 0px #1a1a1a; }
}
