:root {
    /* Brand Colors (Matched from Logo) */
    --primary-color: #8B00FF; /* Neon Purple */
    --secondary-color: #FF1493; /* Neon Pink */
    --gradient-brand: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    
    /* Dark Theme Colors */
    --bg-color: #09090B;
    --surface-color: rgba(24, 24, 27, 0.7);
    --surface-border: rgba(255, 255, 255, 0.1);
    
    /* Typography Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6, .logo {
    font-family: var(--font-heading);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--surface-border);
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('bg.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(9, 9, 11, 0.6), rgba(9, 9, 11, 1));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 2rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 90%;
    width: 600px;
    height: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(139, 0, 255, 0.4);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-brand);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 42, 84, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-color);
}

.about-content {
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-greeting {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* Members Section */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.member-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.member-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-info h3 span {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.member-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.member-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4; /* Garantiza proporciones exactamente iguales */
    object-fit: cover;
    object-position: top center; /* Ensures heads are not cut off in portraits */
    border-radius: 10px;
    margin-top: 1.5rem;
    border: 2px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.member-card:hover .member-photo {
    transform: scale(1.05);
}

.subsection-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.guest-card {
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.guest-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Music Section */
.songs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.song-item {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.song-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.song-item:hover::before {
    opacity: 1;
}

.song-item:hover {
    background: rgba(255, 42, 84, 0.05);
}

.song-title {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.song-credits {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.song-credits strong {
    color: var(--text-primary);
}

.music-note {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 136, 0, 0.1);
    border-radius: 10px;
    border: 1px dashed var(--secondary-color);
    max-width: 800px;
    margin: 0 auto;
}

.music-note p {
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

/* Production Section */
.production-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 15px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.production-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.production-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.production-card li {
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.production-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: #000;
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid var(--surface-border);
}

.footer-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-text {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--surface-border);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(139, 0, 255, 0.4);
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 42, 84, 0.4);
}

.website-link {
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.website-link:hover {
    color: var(--secondary-color);
}

.copyright {
    color: #555;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(9, 9, 11, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        justify-content: center;
        gap: 3rem;
    }

    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .about-content {
        padding: 2rem 1.5rem;
    }
}
