/* General Page Reset */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* --- 1. HERO SECTION (With your Unsplash Image) --- */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* This applies your specific Unsplash image */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://images.unsplash.com/photo-1663970206579-c157cba7edda?fm=jpg&q=60&w=3000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8d2FsbHBhcGVyJTIwZm9yJTIwcGN8ZW58MHx8MHx8fDA%3D');
    background-size: cover;
    background-position: center;
    position: relative;
}

.main-title {
    font-size: 8rem;
    letter-spacing: 15px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0;
    z-index: 2;
}

/* Logo Colors */
.s-text { color: #39ff14; text-shadow: 0 0 25px #39ff14; }
.dash-text { color: #fff; }
.box-text { color: #ff8c00; text-shadow: 0 0 25px #ff8c00; }

.glow-line {
    position: absolute;
    bottom: 20%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #39ff14, transparent);
}

/* --- 2. CIRCUIT BOARD SECTION (The Scroll Area) --- */
.home-info-section {
    min-height: 80vh; 
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://static.vecteezy.com/system/resources/thumbnails/046/478/822/small/close-up-of-computer-circuit-of-a-dell-computer-with-the-word-a-on-the-side-free-photo.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
}

.info-container {
    max-width: 850px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5); 
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(57, 255, 20, 0.1);
    backdrop-filter: blur(10px);
}

.info-container p {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

#learn-more-link {
    color: #39ff14;
    text-decoration: underline;
    text-underline-offset: 10px;
    font-weight: bold;
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.3s ease;
}

#learn-more-link:hover {
    color: #ff8c00;
}

/* --- 3. NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-btn {
    background: none;
    border: none;
    color: #bbb;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-btn:hover {
    color: #39ff14;
}