/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #111; 
    color: #fff;
    overflow: hidden;
    position: relative;
}

/* Background glow overlay */
.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,255,255,0.05) 0%, transparent 70%);
    z-index: 0;
}

/* Canvas covers entire screen */
.canvas-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Header */

header .top-tag {
    font-size: 1rem;
    color: #0ff;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}

header .logo img {
    width: 22%;
}

/* Main content */
.container {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 35%;
    transform: translateY(-35%);
}

h1 {
    font-size: 5rem;
    color: #0ff;
    letter-spacing: 3px;
    text-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
    animation: glow 2s infinite alternate;
}

/* Subtitle */
p {
    font-size: 1.5rem;
    color: rgb(200, 255, 0);
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0,255,255,0.6), 0 0 16px rgba(0,255,255,0.4);
    animation: subtitleGlow 3s infinite alternate;
}

.coming-soon {
    margin-top: 20px;
    font-size: 2rem;
    color: #0ff;
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff;
    letter-spacing: 5px;
    animation: pulse 2s infinite;
}

/* Footer */
footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #fff;             /* white text */
    font-size: 0.9rem;
    z-index: 3;
    pointer-events: auto;
}

/* Footer links */
footer a {
    color: #fff;             /* white links */
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    text-shadow: 0 0 5px #0ff; /* optional neon glow on links */
}

footer a:hover {
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; /* stronger glow on hover */
}


/* Animations */
@keyframes glow {
    from { text-shadow: 0 0 20px #0ff, 0 0 40px #0ff; }
    to   { text-shadow: 0 0 40px #0ff, 0 0 80px #0ff; }
}

@keyframes subtitleGlow {
    from { text-shadow: 0 0 8px rgba(0,255,255,0.6), 0 0 16px rgba(0,255,255,0.4); }
    to   { text-shadow: 0 0 16px rgba(0,255,255,0.9), 0 0 32px rgba(0,255,255,0.6); }
}

@keyframes pulse {
    0%   { text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
    50%  { text-shadow: 0 0 20px #0ff, 0 0 40px #0ff; }
    100% { text-shadow: 0 0 10px #0ff, 0 0 20px #0ff; }
}

/* Header Navigation Dropdown */
/* Ensure header is above canvas */
header {
    position: fixed; /* change from absolute to fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* very high to be above everything */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    pointer-events: auto; /* ensure clicks work */
}

/* Ensure dropdown content receives clicks */
.dropdown-content {
    pointer-events: auto;
}


/* Navigation menu on the right */
.header-nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav .menu li {
    position: relative;
    display: inline-block;
}

/* Dropdown link */
.header-nav .menu li a {
    text-decoration: none;
    color: #0ff;
    font-weight: 500;
    padding: 10px 15px;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
    transition: all 0.2s ease-in-out;
}

.header-nav .menu li a:hover {
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}

/* Dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: rgba(0,0,0,0.9);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,255,255,0.2);
    border-radius: 8px;
    overflow: hidden;
    z-index: 100;
}

/* Dropdown items */
.dropdown-content li a {
    display: block;
    padding: 12px 16px;
    color: #0ff;
    text-shadow: 0 0 5px #0ff;
}

.dropdown-content li a:hover {
    background-color: rgba(0,255,255,0.1);
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}

/* Show dropdown when JS toggles 'show' */
.dropdown-content.show {
    display: block;
}

/* Optional arrow on dropdown */
.dropdown > a::after {
    content: " ▼";
    font-size: 0.6em;
    margin-left: 5px;
    
}


    /* Subscribe form styling */
.subscribe-container {
        position: fixed;
        bottom: 60px; /* above footer */
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999; /* above canvas */
        text-align: center;
        background-color: rgba(0,0,0,0.7);
        padding: 15px 20px;
        border-radius: 10px;
        pointer-events: auto;
}

.subscribe-container input[type="email"] {
        padding: 8px 12px;
        border-radius: 5px;
        border: none;
        margin-right: 10px;
        font-size: 14px;
}

.subscribe-container button {
        padding: 8px 15px;
        border-radius: 5px;
        border: none;
        background-color: #0ff;
        color: #111;
        font-weight: bold;
        cursor: pointer;
}

.subscribe-container button:hover {
        background-color: #0aa;
}

#formMessage {
        margin-top: 10px;
        font-size: 14px;
        color: lightgreen;
}