/* Base Variables and Reset */
:root {
    --bg-black: #050505;
    --bg-dark: #0a0a0a;
    --cream: #F5F0E6;
    --dark-purple: #1A1120;
    --pink: #D88CA2;
    --text-white: #FFFFFF;
    --font-sans: 'Montserrat', sans-serif;
    --font-cursive: 'Pinyon Script', cursive;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography Utilities */
.cursive-title {
    font-family: var(--font-cursive);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

/* Header */
.header {
    background-color: var(--bg-black);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container .header-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

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

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

.btn-reservar {
    background-color: var(--pink);
    color: var(--bg-black);
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
}

.btn-reservar:hover {
    background-color: #e59bb1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(216, 140, 162, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cream-box {
    background-color: var(--cream);
    width: 100%;
    max-width: 1300px;
    min-height: 70vh;
    border-radius: 4px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    color: var(--bg-black);
}

.hero-crown {
    width: 120px;
    margin-bottom: 2rem;
    filter: invert(1);
    opacity: 0.8;
}

.cursive-name {
    font-family: var(--font-cursive);
    font-size: 6rem;
    text-align: center;
    line-height: 1.1;
    color: var(--bg-black);
}

.hero-right {
    flex: 1;
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-photo-wrapper {
    position: relative;
    width: 80%;
    height: 90%;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.vertical-text {
    position: absolute;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--bg-black);
    font-weight: 500;
}

.text-top {
    top: -2rem;
    left: 0;
    right: 0;
    text-align: center;
    letter-spacing: 8px;
}

.text-side {
    right: -3rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: left bottom;
    white-space: nowrap;
}

/* Artist Review */
.artist-review {
    padding: 6rem 2rem;
    background-color: var(--bg-black);
}

.review-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.review-content {
    background-color: var(--dark-purple);
    padding: 5rem 4rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.review-videos {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cursive-subtitle {
    font-family: var(--font-cursive);
    font-size: 2.5rem;
    color: var(--pink);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.video-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-thumbnail {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 120px;
    cursor: pointer;
    group: hover;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition);
}

.video-thumbnail:hover img {
    opacity: 0.5;
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.play-icon {
    width: 40px;
    height: 40px;
    background-color: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent var(--bg-black);
    margin-left: 4px;
}

.video-thumbnail:hover .play-icon {
    transform: scale(1.1);
    background-color: var(--text-white);
}

.video-info {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Central Detail */
.central-detail {
    padding: 8rem 2rem;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.central-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.huge-crown {
    width: 180px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cursive-name-centered {
    font-family: var(--font-cursive);
    font-size: 5rem;
    color: var(--cream);
    font-weight: 400;
}

/* Repertoire */
.repertoire {
    background-color: var(--bg-black);
    text-align: center;
    padding-top: 4rem;
}

.giant-cursive {
    font-family: var(--font-cursive);
    font-size: 8rem;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.full-width-image-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.live-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-black) 0%, transparent 20%, transparent 80%, var(--bg-black) 100%);
}

/* Footer */
.footer {
    background-color: var(--bg-black);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.small-crown {
    width: 60px;
    margin-bottom: 2rem;
    opacity: 0.6;
    transition: var(--transition);
}

.small-crown:hover {
    opacity: 1;
}

.footer p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-cream-box {
        flex-direction: column;
    }
    
    .hero-left, .hero-right {
        padding: 3rem 2rem;
    }

    .cursive-name {
        font-size: 4.5rem;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none; /* simple mobile menu fallback needed for real app, hidden for now to maintain layout purity */
    }
}

@media (max-width: 768px) {
    .giant-cursive {
        font-size: 5rem;
    }
    
    .cursive-title {
        font-size: 3rem;
    }
    
    .central-content .cursive-name-centered {
        font-size: 3.5rem;
    }

    .hero-photo-wrapper {
        width: 100%;
    }
    
    .text-side {
        display: none;
    }
}
