/* Julian Vera Professional Press Kit - Techno / High Contrast Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;700;900&display=swap');

:root {
    --bg-main: #000000;
    --bg-alt: #0a0a0a;
    --bg-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --border-color: #333333;
    --accent: #ffffff; /* White acts as the premium accent in this high-contrast theme */
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-tech: monospace; /* For technical rider */
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Film Grain Overlay for Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.1;
}

.section-title {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 1.5rem;
}

p strong {
    color: var(--text-primary);
    font-weight: 600;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

/* Layout Containers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 120px 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

section:last-of-type {
    border-bottom: none;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 10vh;
    border-bottom: none;
    background-color: var(--bg-main);
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use a dark linear gradient over the image to ensure text is readable */
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%), 
                url('../assets/images/hero_bg.jpg') center/cover no-repeat;
    z-index: 0;
    /* Adding a subtle zoom animation */
    animation: slowZoom 20s linear infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.hero-logo-wrapper {
    margin: 0 auto 1rem;
    animation: slideUp 1s ease-out;
    position: relative;
    max-width: 800px;
    width: 100%;
    display: inline-block;
}

.hero-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.hero-logo-wrapper::before,
.hero-logo-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../assets/images/julianvera_logo_def.png') center/contain no-repeat;
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.hero-logo-wrapper:hover .hero-logo {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4)) contrast(1.2);
    transform: scale(1.02);
}

.hero-logo-wrapper:hover::before {
    opacity: 0.7;
    filter: drop-shadow(4px 0 0 rgba(0, 243, 255, 0.8)); /* Cyan */
    transform: scale(1.02) translate(-4px, 2px);
    animation: glitch-anim-1 0.4s infinite alternate -0.1s linear;
}

.hero-logo-wrapper:hover::after {
    opacity: 0.7;
    filter: drop-shadow(-4px 0 0 rgba(255, 0, 255, 0.8)); /* Magenta */
    transform: scale(1.02) translate(4px, -2px);
    animation: glitch-anim-2 0.3s infinite alternate -0.2s linear;
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); transform: scale(1.02) translate(-4px, 2px); }
    20% { clip-path: inset(60% 0 10% 0); transform: scale(1.02) translate(3px, -1px); }
    40% { clip-path: inset(40% 0 50% 0); transform: scale(1.02) translate(-4px, 3px); }
    60% { clip-path: inset(80% 0 5% 0); transform: scale(1.02) translate(2px, -2px); }
    80% { clip-path: inset(10% 0 70% 0); transform: scale(1.02) translate(-2px, 1px); }
    100% { clip-path: inset(30% 0 50% 0); transform: scale(1.02) translate(3px, -2px); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(10% 0 60% 0); transform: scale(1.02) translate(4px, -2px); }
    20% { clip-path: inset(30% 0 20% 0); transform: scale(1.02) translate(-2px, 2px); }
    40% { clip-path: inset(70% 0 10% 0); transform: scale(1.02) translate(3px, -2px); }
    60% { clip-path: inset(20% 0 50% 0); transform: scale(1.02) translate(-3px, 1px); }
    80% { clip-path: inset(50% 0 30% 0); transform: scale(1.02) translate(4px, -3px); }
    100% { clip-path: inset(5% 0 80% 0); transform: scale(1.02) translate(-2px, 2px); }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    text-transform: uppercase;
    animation: slideUp 1s ease-out 0.2s both;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation / Actions (Floating) */
.fixed-nav {
    position: fixed;
    top: 40px;
    right: 5%;
    z-index: 100;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: var(--text-primary);
    color: var(--bg-main);
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
}

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

.about-text {
    max-width: 600px;
}

.about-tagline {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg-card);
    overflow: hidden;
    position: relative;
    filter: grayscale(100%) contrast(1.2); /* High contrast B&W aesthetic */
    transition: var(--transition);
}

.about-image:hover {
    filter: grayscale(0%) contrast(1.1); /* Subtle reveal on hover */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Music Section --- */
.section-music {
    background-color: var(--bg-alt);
}

.music-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.music-feature {
    grid-column: 1 / -1; /* spans full width */
    margin-bottom: 30px;
}

.player-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.player-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: var(--transition);
}

.player-wrapper:hover img {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.player-wrapper:hover .play-overlay {
    background: rgba(0,0,0,0.4);
}

.play-icon {
    font-size: 5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.8));
    transition: var(--transition);
}

.player-wrapper:hover .play-icon {
    color: #ff0000;
    transform: scale(1.1);
}

.play-overlay span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.music-card {
    border: 1px solid var(--border-color);
    padding: 30px;
    background: var(--bg-main);
    transition: var(--transition);
}

.music-card:hover {
    border-color: var(--text-secondary);
}

.music-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* --- Venues Section --- */
.venue-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.venue-item {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.venue-item:hover {
    color: var(--bg-main);
    background: var(--text-primary);
    border-color: var(--text-primary);
}

/* --- Multi-Column Lists (Tech Rider) --- */
.tech-rider-wrapper {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: 40px;
}

.tech-list {
    list-style: none;
    font-family: var(--font-tech);
    font-size: 1.1rem;
    color: var(--text-primary);
}

.tech-list li {
    padding: 15px 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
}

.tech-list li:last-child {
    border-bottom: none;
}

.tech-list li::before {
    content: "[REQ]";
    color: var(--text-secondary);
    margin-right: 15px;
    font-size: 0.9rem;
}

/* --- Contact & Socials --- */
.section-contact {
    text-align: center;
    padding: 150px 0 100px;
}

.contact-headline {
    font-size: clamp(3rem, 10vw, 8rem);
    letter-spacing: -0.05em;
    color: var(--text-primary);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.contact-headline:hover {
    color: var(--text-secondary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.contact-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 5px;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.contact-link:hover::after {
    width: 100%;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--text-primary);
    color: var(--bg-main);
    border-color: var(--text-primary);
    transform: scale(1.1);
}

/* --- Footer --- */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

footer p {
    max-width: none;
    margin: 0 auto;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .music-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 80px 0;
    }
}

/* --- PDF Print Styles --- */
@media print {
    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }
    
    body::before {
        display: none; /* remove grain */
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 60px 0;
        border-bottom: 2px solid #000;
    }
    
    .hero-bg, .btn, .fixed-nav, .social-btn {
        display: none !important;
    }
    
    .hero-title {
        color: #000;
        -webkit-text-fill-color: initial;
        background: none;
        font-size: 5rem;
    }
    
    .hero-subtitle {
        color: #666;
    }
    
    section {
        padding: 40px 0;
        border-bottom: 1px solid #eee;
        page-break-inside: avoid;
    }
    
    .section-title, .about-tagline, p strong, h1, h2, h3 {
        color: #000;
    }
    
    p, .section-subtitle, .tech-list {
        color: #333;
    }
    
    .about-image {
        border: 1px solid #ddd;
        filter: grayscale(100%);
    }
    
    .venue-item {
        border-color: #ccc;
        color: #000;
    }
    
    .player-wrapper {
        display: none; /* Hide videos in PDF */
    }
    
    .contact-headline {
        color: #000;
        font-size: 4rem;
    }
    
    .tech-list li::before {
        color: #000;
    }
}
