/* Custom styles for Luminode */

/* Font imports */
@font-face {
    font-family: 'Zain Black';
    src: url('../../luminode-assets/fonts/Zain-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../luminode-assets/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../../luminode-assets/fonts/Inter_24pt-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* Color variables */
:root {
    --primary: #5BC0BE;
    --secondary: #FCE762;
    --dark: #1C2541;
    --light: #FFFFFF;
    --accent1: #3A506B;
    --accent2: #CC3363;
    --accent3: #8390FA;
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    background-color: var(--dark);
    color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--light);
}

/* Background overlay to ensure text readability */
#bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 37, 65, 0.85); /* Dark overlay with opacity */
    z-index: -1;
}

/* Enhance header styling */
#header h1 {
    font-family: 'Zain Black', sans-serif;
    text-transform: lowercase;
    padding-top: 0.1em;
    font-size: 4em;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    color: var(--light);
    display: inline-block;
}

/* Logo and title container */
#header .logo-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

#header .logo-image {
    max-width: 35px;
    height: auto;
}

/* Subtitle styling */
#header .subtitle {
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 1.2em;
    margin-bottom: 1.8em;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Coming soon styling */
#header .coming-soon {
    color: var(--light);
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 1em;
    margin-bottom: 1.5em;
    margin-left: 10px;
}

/* Remove cursor or hide it */
#header .cursor {
    display: none;
}

/* Style the form with a subtle glow on focus */
#signup-form input[type="email"] {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    border: 1px solid var(--accent1);
}

#signup-form input[type="email"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(91, 192, 190, 0.5);
}

/* Add a subtle animation to the submit button */
#signup-form input[type="submit"] {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary);
    color: var(--dark);
    transition: all 0.3s ease;
}

#signup-form input[type="submit"]:hover {
    background-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer styling */
#footer {
    opacity: 0.9;
}

#footer .icons a {
    color: var(--light);
    transition: all 0.3s ease;
}

#footer .icons a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media screen and (max-width: 736px) {
    #header h1 {
        font-size: 3em;
    }
    
    #header .logo-image {
        max-width: 55px;
    }
    
    #header .subtitle {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 480px) {
    #header h1 {
        font-size: 2.5em;
    }
    
    #header .logo-image {
        max-width: 45px;
    }
    
    #header .subtitle {
        font-size: 1em;
    }
    
    #header .logo-title-container {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Additional color applications */
a {
    color: var(--primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

::selection {
    background-color: var(--accent1);
    color: var(--light);
}

::-moz-selection {
    background-color: var(--accent1);
    color: var(--light);
}

/* Enhance header paragraphs */
#header p {
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    margin-bottom: 1.5em;
} 