/*
=====================================
CINDERWOOD - ELECTRONIC PRESS KIT
=====================================
Author: Created for Cinderwood Band
Description: Styles for the band's EPK website
=====================================
*/

/* CSS RESET AND BASE STYLES
   ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS CUSTOM PROPERTIES (VARIABLES)
   ================================= */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #00ffff;
    --accent-hover: #00d4d4;
    --text-light: #666;
    --neon-glow: #00ffff;
    --gradient: linear-gradient(135deg, #00ffff 0%, #0088cc 100%);
}
/* Downloads Section */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid rgba(0,0,0,0.2);
    padding: 0.9rem 1.3rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 6px 18px rgba(0, 255, 255, 0.08);
}

.download-btn:hover {
    transform: translateY(-2px);
    background: #111;
    border-color: rgba(0,255,255,0.45);
    box-shadow: 0 12px 32px rgba(0, 255, 255, 0.22);
}

.download-btn.secondary {
    background: var(--accent-color);
    color: #000;
    border-color: rgba(0,0,0,0.1);
}

.download-btn.secondary:hover {
    background: var(--accent-hover);
    border-color: rgba(0,0,0,0.2);
}

.download-btn.disabled,
.download-btn[aria-disabled="true"] {
    background: #eeeeee;
    color: #666;
    border-color: #ddd;
    cursor: default;
    box-shadow: none;
    opacity: 0.8;
}

/* Soon (file not available yet) state: subtle dashed outline */
.download-btn.soon {
    background: transparent;
    color: #555;
    border: 1.5px dashed #bbbbbb;
    box-shadow: none;
}

.btn-icon svg {
    display: block;
}

.btn-text {
    line-height: 1;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background: var(--secondary-color);
}

/* HERO BACKGROUND */
.header-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 60% at 50% 40%, rgba(0, 255, 255, 0.14), rgba(0, 0, 0, 0.9) 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.82)),
        url('../img/santuario_enero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transform: translateY(0);
    will-change: transform;
}

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

/* Header - full black background covering entire area */
header {
    background: #000000;
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo container - no background, just text positioning */
.logo {
    width: 100%;
    height: auto;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    padding: 0;
}

.logo:hover {
    transform: scale(1.05);
}

/* Logo text styles - realistic neon effect with white core */
.logo-text {
    font-family: 'Inter', 'Arial', sans-serif;
    font-size: 8rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin: 0;
    text-shadow: 
        0 0 2px #ffffff,
        0 0 4px #ffffff,
        0 0 6px #00ffff,
        0 0 10px #00ffff,
        0 0 16px #00ffff,
        0 0 24px #00ffff,
        0 0 32px #0088cc;
    animation: realisticNeon 3s ease-in-out infinite alternate;
    position: relative;
    filter: contrast(1.2) brightness(1.1);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Realistic neon pulse animation with white core */
@keyframes realisticNeon {
    0% {
        text-shadow: 
            0 0 2px #ffffff,
            0 0 4px #ffffff,
            0 0 6px #00ffff,
            0 0 10px #00ffff,
            0 0 16px #00ffff,
            0 0 24px #00ffff,
            0 0 32px #0088cc;
    }
    100% {
        text-shadow: 
            0 0 3px #ffffff,
            0 0 6px #ffffff,
            0 0 9px #00ffff,
            0 0 14px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            0 0 40px #0088cc,
            0 0 50px #0066aa;
    }
}

.tagline {
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0.8;
    text-align: center;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    letter-spacing: 0.1em;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.75rem;
}

.hero-actions .download-btn {
    border-radius: 999px;
}

/* Navigation */
nav {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Sections */
section {
    padding: 4rem 0;
}

/* Shows / Lugares */
.shows {
    background: #ffffff;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.show-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.show-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,255,255,0.35);
    box-shadow: 0 16px 40px rgba(0, 255, 255, 0.12);
}

.show-thumb {
    height: 160px;
    background: var(--gradient);
}

.show-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.show-body {
    padding: 1.1rem 1.2rem;
    text-align: left;
}

.show-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.show-body p {
    color: var(--text-light);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    text-shadow: 0 0 10px rgba(26, 26, 26, 0.3);
}

/* Special styling for CINDERWOOD section title */
#about .section-title {
    color: var(--primary-color);
    text-shadow: none;
    font-weight: 400;
}

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

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.band-photo {
    width: 100%;
    height: 400px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    overflow: hidden;
    position: relative;
}

.band-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.band-photo:hover .band-image {
    transform: scale(1.05);
}

/* Music Section */
.music-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.track-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 400px;
    width: 100%;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.track-platforms {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    margin: 0.25rem 0 1rem;
}

.track-platform {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    color: #333;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.track-platform:hover {
    transform: translateY(-2px);
}

.track-platform svg {
    width: 24px;
    height: 24px;
    display: block;
}

.track-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.track-info {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.play-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* Track action row: align buttons side-by-side */
.track-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Press kit button compact style inside track card */
.track-card .download-btn {
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.12);
}

.track-card .download-btn .btn-icon svg {
    width: 18px;
    height: 18px;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    left: -999px;
    top: -999px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    background: #ffffff;
    color: #000000;
    padding: 8px 12px;
    border-radius: 6px;
    z-index: 1000;
    box-shadow: 0 0 0 3px var(--accent-color);
}

/* Stats Section */
.stats {
    background: var(--primary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-card p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.15);
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Social and Streaming Links */
.social-links-row, .streaming-links-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link, .streaming-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #333;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
}

.social-link svg, .streaming-link svg {
    width: 24px;
    height: 24px;
}

/* Instagram */
.instagram {
    color: #E4405F;
}

.instagram:hover {
    background: #E4405F;
    color: white;
    border-color: #E4405F;
    transform: translateY(-2px);
}

/* TikTok */
.tiktok {
    color: #000000;
}

.tiktok:hover {
    background: #000000;
    color: white;
    border-color: #000000;
    transform: translateY(-2px);
}

/* Spotify */
.spotify {
    color: #1DB954;
}

.spotify:hover {
    background: #1DB954;
    color: white;
    border-color: #1DB954;
    transform: translateY(-2px);
}

/* Apple Music */
.apple {
    color: #FA233B;
}

.apple:hover {
    background: #FA233B;
    color: white;
    border-color: #FA233B;
    transform: translateY(-2px);
}

/* Amazon Music */
.amazon {
    color: #00A8E1;
}

.amazon:hover {
    background: #00A8E1;
    color: white;
    border-color: #00A8E1;
    transform: translateY(-2px);
}

.amazon-btn {
    background: #00A8E1;
    color: #ffffff;
    border-color: rgba(0,0,0,0.08);
}

.amazon-btn:hover {
    background: #0096c9;
    border-color: rgba(0,0,0,0.15);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.photo-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--gradient);
}

.photo-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.photo-item:hover .gallery-image {
    filter: brightness(0.8);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

/* Badge for upcoming events */
.event-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-color);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0,255,255,0.35);
    z-index: 2;
}

.photo-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.photo-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Modal para ver fotos en grande */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    overflow: hidden;
}

.modal-image {
    width: 100%;
    height: auto;
    display: block;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close-modal:hover {
    opacity: 0.7;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    /* Header responsive - maintains full screen coverage */
    header {
        min-height: 100vh;
        padding: 0;
    }

    .header-content {
        height: 100vh;
    }

    /* Logo responsive - scales down text */
    .logo {
        height: auto;
        padding: 0;
    }

    .logo-text {
        font-size: 3.5rem;
        letter-spacing: 0.2em;
        font-weight: 300;
    }

    .tagline {
        font-size: 1.2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2.5rem;
        letter-spacing: 0.15em;
        font-weight: 300;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .music-grid {
        padding: 0 1rem;
    }

    .track-card {
        padding: 2rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        transition: none;
        transform: none;
    }
    .fade-in.visible {
        opacity: 1;
    }
    .logo-text {
        animation: none;
    }
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-top: -2rem;
    margin-bottom: 2.5rem;
}