/* ===== GLOBAL STYLES ===== */

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

/* Body: full viewport height, centered content, dark theme */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 
                 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    
    /* Fade in animation */
    opacity: 0;
    transition: opacity 1s ease-in;
}

/* When page loads, this class is added to fade in */
body.loaded {
    opacity: 1;
}

/* ===== MAIN CONTAINER ===== */

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ===== HEADER ===== */

header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ffffff;
}

.subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ===== BIO SECTION ===== */

.bio {
    margin: 40px 0;
    padding: 0 20px;
}

.bio p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== LINKS/NAVIGATION ===== */

.links {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.link-button {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.link-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */

footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

.separator {
    margin: 0 15px;
    color: #505050;
}

.coming-soon {
    font-size: 0.9rem;
    color: #707070;
    font-style: italic;
    margin-top: 10px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet and smaller screens */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .bio p {
        font-size: 1rem;
    }
    
    .container {
        padding: 30px 20px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    
    .link-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
}
