:root {
    --bg-color: #ffffff;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --link-blue: #0066cc;
    --nav-bg: rgba(22, 22, 23, 0.8);
    --section-gap: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Global Nav */
.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
    /* Ensure it stands out */
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.nav-content {
    max-width: 1200px;
    /* Wider container for "bigger" feel */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    font-size: 14px;
    /* Slightly bigger text */
}

/* ... existing nav-menu styles ... */

/* Hero Typography Bump */
.headline {
    font-size: 80px;
    /* Much bigger */
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.subheadline {
    font-size: 32px;
    /* Bigger */
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Social Icons Colors */
.icon-spotify {
    color: #1DB954 !important;
    opacity: 1 !important;
    transition: transform 0.3s;
}

.icon-tiktok {
    color: #fe2C55 !important;
    opacity: 1 !important;
    transition: transform 0.3s;
}

/* Using TikTok Red/Pink */
.icon-youtube {
    color: #FF0000 !important;
    opacity: 1 !important;
    transition: transform 0.3s;
}

.nav-actions a:hover i {
    transform: scale(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a,
.nav-actions a,
.nav-logo {
    color: #f5f5f7;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.nav-menu a:hover,
.nav-actions a:hover,
.nav-logo:hover {
    opacity: 1;
}

.mobile-nav-trigger {
    display: none;
    /* Add logic for mobile logic later if needed */
}

/* Hero Sections Common */
section {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-bottom: var(--section-gap);
    cursor: pointer;
}

.hero-content {
    padding-top: 55px;
    /* Offset for nav */
    padding-bottom: 20px;
    position: relative;
    z-index: 10;
}

/* Removed old headline/subheadline styles as they are now defined above */

.cta-links {
    margin-top: 14px;
    font-size: 19px;
    line-height: 1.21053;
    font-weight: 400;
}

.cta-link {
    color: var(--link-blue);
    text-decoration: none;
    margin: 0 15px;
    display: inline-block;
}

.cta-link:hover {
    text-decoration: underline;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    max-width: 2500px;
    /* High res support */
    object-fit: cover;
    margin-top: 20px;
}

/* Specific Sections */
.section-hero-dark {
    background-color: #000;
    color: #f5f5f7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 50px;
}

.section-hero-dark .headline {
    background: linear-gradient(180deg, #ffb6ff 0%, #b344ff 100%);
    /* Subtle titanium-like purple/gold hint if wanted, or plain */
    background: #f5f5f7;
    /* Keeping it clean apple white for now */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(0deg, #9ca3af, #fff);
    /* Titanium feel */
}

.section-hero-light {
    background-color: #fbfbfd;
    /* Apple's off-white */
    color: #1d1d1f;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Grid Section */
.section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--section-gap);
    max-width: 100%;
    padding: 0 var(--section-gap);
    margin-bottom: var(--section-gap);
}

.grid-card {
    background-color: #fbfbfd;
    height: 580px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-position: center;
    background-size: cover;
}

.card-large {
    grid-column: span 2;
    background-color: #000;
    color: #fff;
}

.card-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.card-content-top {
    position: absolute;
    top: 50px;
    width: 100%;
    text-align: center;
    z-index: 5;
}

.card-content-top h3 {
    font-size: 40px;
    font-weight: 600;
}

.card-content-top p {
    font-size: 21px;
    margin-top: 8px;
}

.card-small {
    /* Half width automatic by grid */
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.dark-card {
    background-color: #000;
    color: #fff;
}

.light-card {
    background-color: #fbfbfd;
    color: #1d1d1f;
}

.icon-large {
    font-size: 60px;
    margin-bottom: 20px;
}

.card-content-center h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-content-center p {
    font-size: 19px;
    line-height: 1.4;
    max-width: 300px;
    margin: 0 auto 20px;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

/* Footer */
.global-footer {
    background-color: #f5f5f7;
    padding: 40px 0 20px;
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.footer-notes {
    border-bottom: 1px solid #d2d2d7;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.footer-notes p {
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.link-column h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.link-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
}

.link-column a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #d2d2d7;
    padding-top: 20px;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 8px;
}

/* Mobile */
@media (max-width: 768px) {
    .headline {
        font-size: 32px;
    }

    .subheadline {
        font-size: 19px;
    }

    .nav-menu {
        display: none;
    }

    .section-grid {
        grid-template-columns: 1fr;
    }

    .card-large {
        grid-column: 1;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}
/* CSS for story blocks */
.story-block {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
    color: #1d1d1f;
    padding: 0 20px;
}

.story-block.dark-mode-text {
    color: #f5f5f7;
}

/* Adjustments for new section layouts if needed */
#musica, #productos, #quienes-somos, #tu-marca-ia {
    padding-bottom: 80px;
    scroll-margin-top: 100px; /* Offset for fixed header */
}
