/* Custom styles to complement Tailwind */
body {
    background-color: #000000;
    color: #E0E0E0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place canvas behind content */
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

/* Styling for the content sections */
.content-section {
    min-height: 100vh; /* Each section takes full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom glow effect */
.glow {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3), 0 0 20px rgba(0, 191, 255, 0.4);
}

/* Custom cursor style */
.cursor-light {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: background 0.2s ease;
    z-index: 0;
}

/* Styling for the interactive orb */
.interactive-orb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 191, 255, 0.2);
    border: 1px solid rgba(0, 191, 255, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.interactive-orb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.7);
    background-color: rgba(0, 191, 255, 0.4);
}

/* Scroll down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}
