/* ESTILOS BASE Y FUENTE POPPINS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #080808;
    color: #ffffff;
    line-height: 1.6;
}

/* UTILIDADES Y SECCIONES */
.section {
    padding: 100px 20px;
}

.section-dark {
    background-color: #0f0f0f;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }

.section-tag {
    color: #D1A05B;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* HEADER Y NAVEGACIÓN */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 25px;
}

.logo-main {
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: block;
}

.logo-sub {
    color: #D1A05B;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 16px;
}

.nav-link {
    color: #bbbbbb;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-link:hover { color: #D1A05B; }

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-top a {
    color: #fff;
    margin-left: 8px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.social-top a:hover {
    color: #D1A05B;
}

.btn-top-tickets {
    background-color: #D1A05B;
    color: #000000;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-top-tickets:hover {
    background-color: #b88a4c;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 80px;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.95) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.script-subtitle {
    font-family: 'Brush Script MT', cursive, sans-serif;
    color: #D1A05B;
    font-size: 2.8rem;
    display: block;
    margin-bottom: -10px;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-title span { color: #ffffff; }

.hero-subtext {
    color: #D1A05B;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 0.95rem;
    color: #cccccc;
    font-weight: 300;
    margin-bottom: 35px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* BOTONES */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    padding: 12px 26px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-danger { 
    background-color: #D1A05B; 
    color: #000000; 
}

.btn-danger:hover { 
    background-color: #b88a4c; 
}

.btn-outline { 
    border: 1px solid rgba(209, 160, 91, 0.5); 
    color: #fff; 
}

.btn-outline:hover { 
    background-color: rgba(209, 160, 91, 0.15); 
    border-color: #D1A05B;
}

.full-width { width: 100%; justify-content: center; }

/* BARRA DE INFORMACIÓN RÁPIDA */
.quick-info-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(209, 160, 91, 0.3);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.info-item i {
    font-size: 1.5rem;
    color: #D1A05B;
}

.info-item strong {
    display: block;
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 1px;
}

.info-item span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* TARJETAS ¿POR QUÉ EXOTIC GENERATION? */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.feature-card {
    background: #121212;
    border: 1px solid #222;
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover { 
    transform: translateY(-5px); 
    border-color: #D1A05B; 
}

.feature-icon {
    font-size: 2.2rem;
    color: #D1A05B;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.85rem;
    color: #aaa;
    font-weight: 300;
}

/* SOBRE EL FESTIVAL */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #222;
}

.lead-text {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #eee;
}

/* CATEGORÍAS */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.category-card {
    background: #121212;
    border: 1px solid #222;
    padding: 25px;
    border-radius: 6px;
    border-left: 3px solid #D1A05B;
}

.category-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.category-card p {
    font-size: 0.82rem;
    color: #aaa;
}

/* JUECES */
.judges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.judge-card {
    background: #141414;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
}

.judge-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.judge-info {
    padding: 20px;
    text-align: center;
}

.judge-info h3 { font-size: 1.1rem; }
.judge-info span { font-size: 0.8rem; color: #D1A05B; font-weight: 600; }

/* WORKSHOPS */
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.workshop-card {
    background: #121212;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
}

.workshop-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.workshop-content {
    padding: 20px;
}

.badge {
    background: rgba(209, 160, 91, 0.15);
    color: #D1A05B;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.workshop-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.workshop-content p { font-size: 0.85rem; color: #888; margin-bottom: 20px; }

/* GALERÍA */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

/* TESTIMONIOS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #121212;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 8px;
    font-style: italic;
}

.testimonial-card h4 {
    margin-top: 15px;
    font-style: normal;
    font-size: 0.85rem;
    color: #D1A05B;
}

/* PATROCINADORES */
.sponsors-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.sponsor-logo {
    background: #181818;
    border: 1px dashed #333;
    padding: 20px 40px;
    color: #666;
    font-weight: 700;
    border-radius: 6px;
}

/* FOOTER */
.footer {
    background: #040404;
    border-top: 1px solid #1a1a1a;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 { font-size: 1rem; margin-bottom: 10px; }
.footer-brand p { font-size: 0.8rem; color: #777; }

.footer-links h4, .footer-social h4 { font-size: 0.85rem; color: #D1A05B; margin-bottom: 15px; }
.footer-links a { display: block; color: #888; text-decoration: none; font-size: 0.8rem; margin-bottom: 8px; }
.footer-links a:hover { color: #fff; }

.footer-social p { font-size: 0.8rem; color: #888; margin-bottom: 15px; }
.social-icons a { color: #fff; font-size: 1.2rem; margin-right: 15px; transition: color 0.3s; }
.social-icons a:hover { color: #D1A05B; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 20px;
    font-size: 0.75rem;
    color: #555;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .grid-2-col { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
}