@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary: #000000;
    --primary-light: #1a1a1a;
    --secondary: #ffffff;
    --secondary-dark: #f0f0f0;
    --accent: #000000;
    --background: #ffffff;
    --text: #0a0a0a;
    --text-light: #4a4a4a;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 500; /* More elegant lighter weight */
    letter-spacing: -0.02em;
}

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(253, 245, 230, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

header.scrolled .logo {
    color: var(--primary);
}

header.scrolled .nav-links a {
    color: var(--text);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #0c0c0c;
    padding-top: 80px; /* Space for the fixed header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: brightness(0.6) contrast(1.1);
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    letter-spacing: -0.03em;
}

.reveal-text {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.reveal-text .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    margin-right: 0.25em;
}

.reveal-text .word.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 4rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.btn {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1.5s;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-secondary {
    padding: 1.4rem;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary i {
    font-size: 1.5rem;
}

.btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Section Styling */
section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-title .divider {
    width: 40px;
    height: 1px;
    background: var(--primary);
    margin: 0 auto;
}

/* Biografía / Roots */
.roots-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.roots-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    padding: 2rem;
    background: #fcfcfc;
    border: 1px solid #eee;
    max-width: 450px;
    margin: 0 auto;
}

.roots-image img {
    width: 100%;
    display: block;
    transition: var(--transition);
    border: 1px solid #000;
}

.roots-image:hover img {
    transform: scale(1.05);
}

.roots-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 400;
}

.roots-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Discografía */
.disc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.album-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.album-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.album-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.album-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

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

/* Activismo Section */
.activism {
    background: var(--white);
    color: var(--primary);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #eee;
}

.activism h2 {
    color: var(--primary);
}

.activism-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.activism-list {
    list-style: none;
}

.activism-list li {
    background: transparent;
    padding: 1.5rem 0;
    margin-bottom: 0;
    border-left: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    transition: var(--transition);
}

.activism-list li:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 2.5rem 0;
    background: var(--white);
    box-shadow: none;
    border-bottom: 1px solid #eee;
    margin-top: 0;
    position: relative;
    z-index: 10;
    border-radius: 0;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 700;
}

/* Footer */
footer {
    background: #000;
    color: #999;
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: #888;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

/* Specific Section Styles */
#exitazos {
    background: #fff;
}

.success-card {
    border-bottom: 1px solid #eee;
    padding: 4rem 0;
    background: #fff;
    transition: var(--transition);
}

.success-card h4 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.success-card:hover {
    transform: translateY(-10px);
}

/* Colaboraciones */
.colabs-marquee {
    background: #000;
    padding: 6rem 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    overflow: hidden;
    white-space: nowrap;
}

.colabs-title {
    color: #555;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 3rem;
    text-align: center;
}

.colabs-wrapper {
    display: inline-block;
    animation: marquee 60s linear infinite;
}

.colabs-item {
    display: inline-block;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    opacity: 0.9;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 2rem;
    }
    .roots-grid, .activism-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero h1 {
        font-size: 4.5rem;
    }
    section {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 0;
    }
    .hero {
        padding-bottom: 10px;
        align-items: stretch;
        height: 100vh;
    }
    .hero-content {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    .hero-btns {
        margin-top: auto;
        padding-bottom: 20px;
        flex-direction: column;
        gap: 1rem;
    }
    .logo {
        font-size: 1.4rem;
    }
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 2.5rem;
    }
    .btn {
        padding: 1rem 2rem;
        font-size: 0.75rem;
        margin-top: auto;
    }
    .section-title h2 {
        font-size: 2.8rem;
    }
    .section-title {
        margin-bottom: 3rem;
    }
    section {
        padding: 4rem 0;
    }
    .nav-links {
        display: none;
    }
    .stats {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 0;
    }
    .stat-item .number {
        font-size: 3rem;
    }
    .roots-text h3 {
        font-size: 2rem;
    }
    .disc-grid {
        grid-template-columns: 1fr;
    }
    .colabs-item {
        font-size: 1.8rem;
        margin: 0 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .roots-image {
        padding: 1rem;
    }
}
