:root {
    --primary-color: #8e44ad;
    --secondary-color: #6a3bc1;
    --accent-color: #00bcd4;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --darker-card: #181818;
    --light-text: #ffffff;
    --medium-text: #b3b3b3;
    --highlight: #ff00ff;
    --highlight-alt: #00f2ff;
    --gradient: linear-gradient(135deg, #8e44ad, #00bcd4);
    --gradient-hover: linear-gradient(135deg, #7d32a8, #00a1b3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
}

.logo {
    font-family: "Montserrat";
    font-weight: 800;
    font-size: 9vw;
    text-transform: uppercase;
    opacity: 0.8;
    line-height: 0.75;
    letter-spacing: -3px;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.date-badge {
    display: inline-block;
    margin: 0 auto;
    background: var(--dark-card);
    border: 2px solid var(--accent-color);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 188, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0);
    }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.scroll-down i {
    font-size: 2rem;
    color: var(--light-text);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
}

nav.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: var(--light-text);
    font-weight: 700;
    font-size: 1.8rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 1.8rem;
}

.nav-menu a {
    color: var(--medium-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--light-text);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 30px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--light-text);
    transition: all 0.3s ease;
}

/* Section styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title span {
    position: relative;
    z-index: 1;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--medium-text);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--light-text);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--medium-text);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--dark-card);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--medium-text);
}

/* Gallery Section */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    gap: 1rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: var(--dark-card);
    border: none;
    border-radius: 30px;
    color: var(--medium-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gradient);
    color: var(--light-text);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-info {
    opacity: 1;
    transform: translateY(0);
}

.gallery-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.gallery-info p {
    font-size: 0.9rem;
    color: var(--medium-text);
}

.view-more {
    text-align: center;
    margin-top: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: var(--light-text);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
#contact {
    background-color: var(--darker-card);
}

.contact-wrapper {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.contact-text p, .contact-text a {
    font-size: 1rem;
    color: var(--medium-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--accent-color);
}

.contact-form {
    flex: 1;
    background-color: var(--dark-card);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-text);
}

.form-control {
    width: 100%;
    padding: 1rem;
    background-color: var(--dark-bg);
    border: 1px solid #333;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Map Section */
.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;

}

#mapa {
    height: 400px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.map-info {
    background-color: var(--dark-card);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.map-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.map-info p {
    margin-bottom: 1rem;
    color: var(--medium-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Sponsors Section */
.sponsors {
    text-align: center;
    background-color: var(--dark-card);
    border-radius: 10px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.sponsors p {
    color: var(--medium-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.sponsors-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.sponsor-item {
    flex: 0 0 200px;
    padding: 1.5rem;
    background-color: var(--dark-bg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.sponsor-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    filter: grayscale(0%);
}

.sponsor-item img {
    max-width: 100%;
    max-height: 70px;
    transition: all 0.3s ease;
}

/* Footer */
footer {
    background-color: var(--darker-card);
    padding: 5rem 0 1rem;
    margin-top: 6rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.footer-column p {
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--medium-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-bg);
    border-radius: 50%;
    color: var(--medium-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: var(--light-text);
    background: var(--gradient);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--medium-text);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Neon glow and particle effects */
.neon-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

.glow-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    animation: float 15s infinite alternate;
}

.glow-2 {
    bottom: 10%;
    right: 15%;
    width: 250px;
    height: 250px;
    background-color: var(--accent-color);
    animation: float 12s infinite alternate-reverse;
}

.glow-3 {
    top: 60%;
    left: 50%;
    width: 200px;
    height: 200px;
    background-color: var(--highlight);
    animation: float 10s infinite alternate;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .contact-wrapper {
        flex-direction: column;
    }
    
    .about-image, 
    .about-text,
    .contact-info,
    .contact-form {
        flex: none;
        width: 100%;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .contact-info {
        margin-bottom: 3rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .logo {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: var(--dark-bg);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.5s ease;
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
        z-index: 1000;
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .hamburger.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .logo {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .date-badge {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-column {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
}

.festival-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.day-card {
    flex: 1;
    min-width: 300px;
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.day-header {
    padding: 15px;
    color: white;
}

.day-1-header {
    background-color: var(--dark-card);
}

.day-2-header {
    background-color: var(--dark-card);
}

.day-header h3 {
    margin-bottom: 5px;
    font-size: 1.4em;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th, 
.schedule-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.schedule-table th {
    background-color: #2a2a2a;
    font-weight: bold;
}

.artist-row:hover {
    background-color: #444;
}

.artist-name {
    font-weight: bold;
    font-size: 1.1em;
}

.artist-genre {
    font-size: 0.8em;
    color: #aaa;
    display: block;
    margin-top: 3px;
}

.scene-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
}

.main-scene {
    background: var(--primary-color);
}

.electronic-scene {
    background: var(--secondary-color);
}

.alternative-scene {
    background-color: #0099cc;
}

@media (max-width: 768px) {
    .festival-container {
        flex-direction: column;
    }
    
    .day-card {
        margin-bottom: 20px;
    }
}

.nex {
    font-weight: 200;
    font-size: 1rem;
    text-align: center;
}

.nex img {
    width: 5.9rem;
    opacity: 0.9;
}

#basicMap {
    width: 100%;
    height: 100%;
    margin: 0;
}

#basicMap a {
    text-decoration: none;
    color: black;
}

#basicMap #OpenLayers_Control_Attribution_3 {
    opacity: 0.8;
    padding: 5px;
    border-radius: 5px;
    font-size: 1rem;
    color: black;
    
}