/* ==================================
   VARIABLES Y CONFIGURACIÓN BASE
   ================================== */
   :root {
    --bg-dark: #0a0b10;
    --bg-darker: #050608;
    --text-main: #f0f0f5;
    --text-muted: #a0a0b0;
    
    /* Neón Colors */
    --neon-blue: #00f3ff;
    --neon-purple: #b537f2;
    --neon-magenta: #ff007f;

    --gradient-primary: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.dark-alt {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Base de botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(181, 55, 242, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(181, 55, 242, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--neon-purple);
    border: 1px solid var(--neon-purple);
}

.btn-outline:hover {
    background: var(--neon-purple);
    color: white;
    box-shadow: 0 0 15px rgba(181, 55, 242, 0.4);
}

.w-100 {
    width: 100%;
    justify-content: center;
}

/* ==================================
   EFECTOS DE FONDO GLOBALES
   ================================== */
.bg-fx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    background: 
        radial-gradient(circle at 15% 50%, rgba(181, 55, 242, 0.07), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(0, 243, 255, 0.05), transparent 40%);
}

/* ==================================
   NAVBAR
   ================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 11, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.nav-logo {
    height: 45px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 60px;
    width: auto;
    display: block;
}

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

.nav-links li a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--neon-blue);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 30px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

/* ==================================
   HERO SECTION
   ================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 20px;
    background-image: url('images/fondo.avif');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 11, 16, 0.3) 0%, rgba(10, 11, 16, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 6px;
    color: var(--neon-blue);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(181, 55, 242, 0.4);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    display: block;
    margin-top: 5px;
    color: var(--neon-blue);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* ==================================
   MÚSICA SECTION
   ================================== */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.music-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(181, 55, 242, 0.15);
    border-color: rgba(181, 55, 242, 0.3);
}

.music-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: #15161d;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.music-card-img i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.music-card-img:hover i {
    color: white;
    transform: scale(1.1);
}

.music-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

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

/* ==================================
   VIDEOS SECTION
   ================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #111;
    group: hover;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #111, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.video-thumbnail i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: all 0.3s;
}

.video-card:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-card:hover .video-thumbnail i {
    color: var(--neon-magenta);
    transform: scale(1.1);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-card:hover .video-info {
    transform: translateY(0);
    opacity: 1;
}

.video-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

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

/* ==================================
   EVENTOS SECTION
   ================================== */
.events-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 25px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.1);
    transform: translateX(5px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    border-right: 1px solid var(--glass-border);
    padding-right: 30px;
    margin-right: 30px;
}

.event-date .day {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
}

.event-date .month {
    font-size: 0.9rem;
    color: var(--neon-blue);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-details {
    flex-grow: 1;
}

.event-details h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.event-details p {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-details p::before {
    content: '\eb33'; /* bx-map icon code */
    font-family: 'boxicons';
    color: var(--neon-purple);
}

/* ==================================
   QUIÉN ES SECTION
   ================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(10, 11, 16, 0.9) 0%, transparent 100%);
    display: none; /* Only for small screens over image if needed */
}

.glass-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: rgba(10, 11, 16, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glass-badge i {
    font-size: 2rem;
    color: var(--neon-blue);
}

.glass-badge span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 1.2rem;
    color: var(--neon-blue);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-content p strong {
    color: var(--text-main);
}

.gear-list {
    margin-top: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 12px;
}

.gear-list h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neon-purple);
}

.gear-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gear-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.gear-list li::before {
    content: '\ecb3'; /* bx-check */
    font-family: 'boxicons';
    color: var(--neon-blue);
    font-size: 1.2rem;
}

/* ==================================
   CONTACTO SECTION
   ================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.info-item .icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--neon-magenta);
    transition: all 0.3s ease;
}

.info-item:hover .icon {
    background: rgba(255, 0, 127, 0.1);
    border-color: rgba(255, 0, 127, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.2);
    transform: scale(1.1);
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    padding: 18px 20px;
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.05);
}

/* ==================================
   FOOTER
   ================================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 400px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--neon-purple);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(181, 55, 242, 0.4);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==================================
   ANIMATIONS & MEDIA QUERIES
   ================================== */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.reveal-text:nth-child(1) { animation-delay: 0.2s; }
.reveal-text:nth-child(2) { animation-delay: 0.4s; }
.reveal-text:nth-child(3) { animation-delay: 0.6s; }
.reveal-text:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .about-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .glass-badge {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(5, 6, 8, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        border-left: 1px solid var(--glass-border);
    }
    .nav-links.active {
        right: 0;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .hero-title {
        font-size: 3rem;
    }
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .gear-list ul {
        grid-template-columns: 1fr;
    }
    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .event-date {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding-right: 0;
        padding-bottom: 20px;
        margin-right: 0;
    }
}
