/* ============================================================
   MC TOSCANO — Electronic Press Kit
   Design System & Global Styles
   ============================================================ */

:root {
    --bg: #080808;
    --bg-2: #0f0f0f;
    --bg-3: #141414;
    --text: #f0f0f0;
    --text-muted: #888;
    --text-dim: #555;
    --accent: #c084fc;      /* Purple neon */
    --accent-2: #fb923c;    /* Orange */
    --accent-3: #4ade80;    /* Green */
    --accent-4: #38bdf8;    /* Blue */
    --white: #ffffff;
    --glass: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.07);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.15; }
strong { color: var(--white); font-weight: 700; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 5%;
    background: rgba(8,8,8,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 5%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.logo span { color: var(--accent); }

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

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.btn-epk {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 1.4rem;
    border: 1.5px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    transition: all var(--transition);
}

.btn-epk:hover {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 0 25px rgba(192, 132, 252, 0.4);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1.5px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    transition: border-color var(--transition);
}

.hamburger:hover {
    border-color: var(--accent);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(192, 132, 252, 0.5);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-youtube {
    background: #ff0000;
    color: #fff;
    margin-top: 1.5rem;
}

.btn-youtube:hover {
    background: #cc0000;
    box-shadow: 0 0 25px rgba(255,0,0,0.4);
    transform: translateY(-3px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 0 6% 8%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.5) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,8,8,1) 0%,
        rgba(8,8,8,0.6) 40%,
        rgba(8,8,8,0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-name {
    -webkit-text-stroke: 2px var(--accent);
    color: transparent;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 3%;
    right: 6%;
    z-index: 1;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote-section {
    padding: 6rem 5%;
    background: var(--bg);
    position: relative;
}

.pull-quote-section.dark-bg {
    background: var(--bg-2);
}

.pull-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.pull-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 0;
    vertical-align: -0.4em;
    color: var(--accent);
    opacity: 0.3;
}

.quote-mark.right {
    display: inline-block;
    transform: rotate(180deg);
    vertical-align: 0.4em;
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section {
    padding: 7rem 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

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

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: -2rem auto 4rem;
}

/* ============================================================
   BIO SECTION
   ============================================================ */
.bio-section {
    background: var(--bg-2);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.bio-text-col h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.bio-text-col p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.bio-image-col {
    position: relative;
}

.bio-image-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 550px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    border: 1px solid var(--glass-border);
}

.bio-image-frame img {
    height: 100%;
    object-position: center bottom;
    transition: transform 0.8s ease;
}

.bio-image-frame:hover img {
    transform: scale(1.03);
}

.bio-image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(8,8,8,0.9);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
    background: var(--accent);
    padding: 2.5rem 5%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--bg);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(8,8,8,0.2);
}

/* ============================================================
   BENTO GRID (Facetas)
   ============================================================ */
.facets-section {
    background: var(--bg);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.bento-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 380px;
    cursor: default;
    transition: transform var(--transition), box-shadow var(--transition);
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--card-accent, var(--accent));
}

.bento-large {
    grid-column: span 2;
    height: 420px;
}

.bento-img-wrap {
    position: absolute;
    inset: 0;
}

.bento-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,8,8,0.95) 0%,
        rgba(8,8,8,0.5) 50%,
        rgba(8,8,8,0.1) 100%
    );
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 1;
}

.bento-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.bento-content h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.bento-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, var(--accent));
    z-index: 2;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.bento-card:hover::before {
    transform: scaleX(1);
}

/* ============================================================
   YOUTUBE / MUSIC SECTION
   ============================================================ */
.music-section {
    background: var(--bg-2);
}

.youtube-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    min-height: 350px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.yt-left {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.yt-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s ease;
}

.youtube-card:hover .yt-left img {
    transform: scale(1.05);
}

.yt-right {
    background: var(--bg-3);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yt-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff0000;
    margin-bottom: 1rem;
    display: block;
}

.yt-right h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.yt-right p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    transition: all var(--transition);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    background: rgba(192, 132, 252, 0.05);
}

.email-card:hover { border-color: var(--accent); }
.whatsapp-card:hover { border-color: #25D366; background: rgba(37, 211, 102, 0.05); }
.instagram-card:hover { border-color: #e1306c; background: rgba(225, 48, 108, 0.05); }
.youtube-card:hover { border-color: #ff0000; background: rgba(255, 0, 0, 0.05); }

.contact-icon {
    font-size: 2.5rem;
    display: block;
}

.contact-type {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-value {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    word-break: break-all;
}

.contact-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5%;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-logo span { color: var(--accent); }

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact {
    color: var(--text) !important;
    font-weight: 600;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin: 0.5rem 0;
}

.footer-social-link {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    transition: opacity 0.3s ease;
}

.footer-social-link:hover {
    opacity: 0.7;
}

.footer-dot {
    color: var(--text-dim);
}

.footer-copy {
    color: var(--text-dim) !important;
    font-size: 0.8rem !important;
    margin-top: 1rem;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
    }

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

    .contact-grid .youtube-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(8,8,8,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 1rem 0 2rem;
        border-bottom: 1px solid var(--glass-border);
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hero { padding: 0 5% 15%; align-items: flex-end; }
    .hero h1 { font-size: clamp(3rem, 15vw, 6rem); }
    .hero-name { -webkit-text-stroke: 1px var(--accent); }

    .bio-grid { grid-template-columns: 1fr; }
    .bio-image-col { order: -1; }
    .bio-image-frame { height: 350px; }

    .bento-grid { grid-template-columns: 1fr; }
    .bento-large { grid-column: span 1; height: 350px; }
    .bento-card { height: 300px; }

    .youtube-card { grid-template-columns: 1fr; }
    .yt-left { height: 220px; }

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

    .stats-container {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-divider { display: none; }

    .pull-quote p { font-size: 1.4rem; }
}
