:root {
    --primary-color: #00f3ff; /* Cyan for Tech */
    --secondary-color: #ff0055; /* Red/Pink for Ventures */
    --bg-color: #050505;
    --text-color: #ffffff;
}

body {
    margin: 0;
    overflow: hidden; /* Hide scrollbars */
    background-color: var(--bg-color);
    font-family: 'Courier New', Courier, monospace; /* Tech font */
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#ui-layer {
    position: relative;
    z-index: 1; /* Sits above the 3D canvas */
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Let clicks pass through to the 3D scene */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    box-sizing: border-box;
}

/* Enable clicks on text elements */
header, footer {
    pointer-events: auto;
}

h1 {
    font-size: 3rem;
    margin: 0;
    letter-spacing: 4px;
    text-shadow: 0 0 10px var(--primary-color);
    color: var(--text-color);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 10px;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.contact-info, .social-links {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
}

h3 {
    margin-top: 0;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

p {
    margin: 5px 0;
    color: #ccc;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    footer { flex-direction: column; gap: 20px; }
    .contact-info, .social-links { width: 100%; }
}