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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #033251;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section with Lights Effect */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #033251;
    overflow: hidden;
    transition: background 0.8s ease-in-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 89, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 207, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    z-index: 2;
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Prevent content shifting when quote wraps */
    align-content: center;
}

svg {
    width: 600px;
    max-width: 100%;
    height: auto;
    transition: fill 0.8s ease-in-out;
}

/* SVG Logo Styles */
.logo-text {
    fill: white;
    transition: fill 0.8s ease-in-out;
}

.logo-icon {
    fill: white;
    transition: fill 0.8s ease-in-out;
}

#hero-quote {
    margin-top: 30px;
    font-size: clamp(1rem, 4vw, 1.6em);
    font-family: monospace;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: color 0.8s ease-in-out;
    /* Prevent layout shift when text wraps */
    min-height: 2.8em;
    line-height: 1.4;
    white-space: pre-wrap;
}

.cursor {
    display: inline-block;
    width: 0.8em;
    height: 2px;
    background-color: currentColor;
    margin-left: 2px;
    animation: blink 1s infinite;
    transition: all 0.3s ease;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Envelope Icon Styles */
.envelope-icon {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    cursor: pointer;
    z-index: 100;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    background: rgba(0, 207, 255, 0.1);
    border-radius: 50%;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 207, 255, 0.3);
    display: none; /* Hidden by default */
}

.envelope-icon:hover {
    color: #00cfff;
    transform: translateX(-50%) scale(1.1);
    background: rgba(0, 207, 255, 0.2);
    border-color: rgba(0, 207, 255, 0.6);
}

.envelope-icon svg {
    display: block;
    width: 40px;
    height: 40px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
        justify-content: center;
        align-items: center;
    }

    svg {
        max-width: 400px;
        display: block;
        margin: 0 auto;
    }

    #hero-quote {
        font-size: clamp(0.9rem, 3.5vw, 1.4em);
        padding: 0 15px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 15px;
        justify-content: center;
        align-items: center;
    }

    svg {
        max-width: 300px;
        display: block;
        margin: 0 auto;
    }

    #hero-quote {
        font-size: clamp(0.8rem, 3vw, 1.2em);
        padding: 0 10px;
        margin-top: 30px;
    }
    
    .envelope-icon {
        bottom: 30px;
        padding: 10px;
    }
    
    .envelope-icon svg {
        width: 30px;
        height: 30px;
    }
} 