/* MAIN.CSS - Estilos base y variables */

/* Variables de color extraídas de la portada */
:root {
    --deep-blue: #1a2c5b;
    --royal-purple: #6b2d8f;
    --bright-pink: #ff69b4;
    --soft-pink: #ffb6d9;
    --lavender: #b794f6;
    --dark-purple: #2d1544;
    --black: #0a0a0a;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilidades */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navegación */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0));
    backdrop-filter: blur(10px);
}

nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    letter-spacing: 0.15rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

nav a:hover {
    color: var(--bright-pink);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bright-pink);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Secciones */
section {
    min-height: 100vh;
    padding: 6rem 2rem;
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.3rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bright-pink), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 3px solid var(--bright-pink);
    background: linear-gradient(135deg, rgba(26, 44, 91, 0.3), rgba(45, 21, 68, 0.3));
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--lavender);
    font-size: 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.1rem;
}

.social-links a:hover {
    color: var(--bright-pink);
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        gap: 1.5rem;
        padding: 1rem;
    }
    
    nav a {
        font-size: 0.75rem;
        letter-spacing: 0.1rem;
    }
    
    section {
        padding: 4rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    nav {
        gap: 1rem;
    }
    
    nav a {
        font-size: 0.7rem;
    }
}