/* Estilos inspirados en la cartelera del Día de Muertos */
/* Carga de fuente local Brastika */
@font-face {
    font-family: 'Brastika';
    src: url('../assets/Brastika-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Fuente de respaldo de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* Preload y forzar carga de la fuente */
body::before {
    content: "";
    font-family: 'Brastika';
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

:root {
    --color-background: #401902; /* Marrón oscuro de la imagen */
    --color-primary: #F29D35; /* Naranja principal de la paleta */
    --color-secondary: #BF8D50; /* Naranja dorado */
    --color-accent: #F25922; /* Naranja rojizo vibrante */
    --color-dark: #590902; /* Marrón muy oscuro */
    --color-medium: #401902; /* Marrón medio */
    --color-gold: #F29D35; /* Dorado = naranja principal */
    --color-cream: #BF8D50; /* Crema = naranja dorado */
    --color-text: #F5E6D3; /* Texto claro */
    --color-text-dark: #590902;
    --color-white: #FFFFFF;
    
    --font-headings: 'Brastika', 'Brasika Display', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: #BF8D50;
    color: var(--color-text);
    line-height: 1.8;
    background-attachment: fixed;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIj48cmVjdCB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0ibm9uZSI+PC9yZWN0PjxwYXRoIGQ9Ik0xMCA5MEw5MCAxME0xMCAxMEw5MCA5MCIgc3Ryb2tlPSIjNTkwOTAyIiBzdHJva2Utd2lkdGg9IjEiIG9wYWNpdHk9IjAuMSI+PC9wYXRoPjxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjIiIGZpbGw9IiNGMjlEMzUiIG9wYWNpdHk9IjAuMDUiPjwvY2lyY2xlPjwvc3ZnPg==');
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* --- Header --- */
.site-header {
    background: linear-gradient(135deg, #590902 0%, #401902 50%, #590902 100%);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid #F29D35;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.site-header h1 {
    font-family: var(--font-headings);
    font-size: 3.2rem;
    background: linear-gradient(45deg, #F29D35, #F25922, #BF8D50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        2px 2px 0px #590902,
        4px 4px 0px rgba(0,0,0,0.3),
        6px 6px 10px rgba(0,0,0,0.5);
    margin: 0;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
}

.site-header h2 {
    font-size: 1.6rem;
    color: #F29D35;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 8px 0 0 0;
    text-shadow: 
        1px 1px 0px #590902,
        2px 2px 0px rgba(0,0,0,0.3),
        3px 3px 6px rgba(0,0,0,0.7);
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.8));
}

/* --- Hero Section --- */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: 
        linear-gradient(135deg, rgba(89, 9, 2, 0.7), rgba(64, 25, 2, 0.8), rgba(89, 9, 2, 0.7)), 
        url(../assets/cartelera.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    border-bottom: 4px solid #F29D35;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCI+PHJlY3Qgd2lkdGg9IjgwIiBoZWlnaHQ9IjgwIiBmaWxsPSJub25lIj48L3JlY3Q+PGNpcmNsZSBjeD0iNDAiIGN5PSI0MCIgcj0iMyIgZmlsbD0iI0YyOUQzNSIgb3BhY2l0eT0iMC4xIj48L2NpcmNsZT48L3N2Zz4=') repeat;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-headings);
    font-size: clamp(3rem, 10vw, 6rem);
    background: linear-gradient(45deg, #F29D35, #F25922, #BF8D50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        2px 2px 0px #590902,
        4px 4px 0px rgba(0,0,0,0.5),
        6px 6px 15px rgba(0,0,0,0.7);
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.8));
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero p {
    font-size: 2rem;
    color: #F29D35;
    margin-top: 15px;
    font-weight: 800;
    text-shadow: 
        1px 1px 0px #590902,
        2px 2px 0px rgba(0,0,0,0.3),
        3px 3px 8px rgba(0,0,0,0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* --- Poster Section --- */
.poster-section {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    background: linear-gradient(45deg, #F29D35, #F25922, #BF8D50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    text-shadow: 
        2px 2px 0px #590902,
        4px 4px 0px rgba(0,0,0,0.3),
        6px 6px 12px rgba(0,0,0,0.5);
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--color-accent);
    bottom: -10px;
    left: 20%;
}

.poster-image {
    max-width: 100%;
    height: auto;
    border: 8px solid var(--color-secondary);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

/* --- Details Section --- */
.details-section {
    background-color: #1a1a1a;
    padding: 60px 0;
    border-top: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.detail-item {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(230, 126, 34, 0.2);
}

.detail-item .icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.detail-item h3 {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.detail-item p {
    font-size: 1.1rem;
    color: var(--color-text);
}

/* --- CTA Section --- */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.btn-register {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    color: var(--color-dark);
    background: linear-gradient(45deg, var(--color-gold), var(--color-primary), var(--color-secondary));
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    border: 3px solid var(--color-dark);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.4),
        inset 0 0 0 2px var(--color-cream);
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 
        1px 1px 0px rgba(255,255,255,0.3),
        -1px -1px 0px rgba(0,0,0,0.3);
}

.btn-register:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(244, 165, 64, 0.4),
        0 0 40px rgba(255, 215, 0, 0.3),
        inset 0 0 0 2px var(--color-white);
    color: var(--color-dark);
    text-decoration: none;
    filter: brightness(1.1);
}

/* --- Footer --- */
.site-footer {
    background: #0a0a0a;
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid var(--color-primary);
}

.footer-logos {
    margin-bottom: 20px;
}

.footer-logos img {
    height: 60px;
    margin: 0 15px;
    filter: grayscale(100%) brightness(150%);
    transition: filter 0.3s ease;
}

.footer-logos img:hover {
    filter: none;
}

.social-links a {
    color: var(--color-text);
    font-size: 1.8rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-primary);
}

.footer-copy {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 2rem;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .form-row {
        flex-direction: column;
    }
}

/* --- Form Section --- */
.form-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-description {
    color: var(--color-text);
    font-size: 1.1rem;
    margin-top: 15px;
}

.registration-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--color-accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.registration-form {
    width: 100%;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-group label i {
    margin-right: 8px;
}

.form-input {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 2px solid #333;
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.3);
}

.form-input:read-only {
    background: #2a2a2a;
    cursor: not-allowed;
}

.form-hint {
    display: block;
    margin-top: 8px;
    color: #888;
    font-size: 0.9rem;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.btn-primary {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-headings);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    margin-top: 20px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}

.btn-primary i {
    margin-right: 10px;
}

.btn-secondary {
    padding: 12px 25px;
    background: #333;
    color: var(--color-text);
    border: 2px solid var(--color-accent);
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-secondary i {
    margin-right: 8px;
}

/* --- Ticket Section --- */
.ticket-section {
    margin-top: 40px;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.ticket-container {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 3px solid var(--color-primary);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.3);
}

.ticket-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--color-accent);
    margin-bottom: 20px;
}

.ticket-header h3 {
    font-family: var(--font-headings);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.ticket-icon {
    font-size: 3rem;
    color: #4CAF50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ticket-body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 20px 0;
}

.ticket-info p {
    margin: 12px 0;
    font-size: 1.1rem;
    color: var(--color-text);
}

.ticket-info strong {
    color: var(--color-primary);
}

.ticket-qr {
    background: white;
    padding: 15px;
    border-radius: 10px;
}

#qrCode {
    width: 150px;
    height: 150px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 0.9rem;
}

.ticket-actions {
    text-align: center;
    padding-top: 20px;
    border-top: 2px dashed var(--color-accent);
    margin-top: 20px;
}

@media (max-width: 768px) {
    .ticket-body {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .registration-form-container {
        padding: 25px;
    }
}

/* === MEJORAS TIPOGRÁFICAS === */
/* FORZAR aplicación de Brastika a todos los títulos y elementos principales */
h1, h2, h3, h4, h5, h6,
.main-title,
.site-header h1,
.hero-title,
.section-title,
.evento-title,
.ticket-title,
.btn,
.alert-heading,
.modal-title,
.card-title,
.registration-title {
    font-family: 'Brastika', 'Brasika Display', Impact, Arial Black, sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: 0.5px;
}

/* Aplica Open Sans a todo el texto del cuerpo */
body,
p,
span,
label,
.evento-description,
.evento-details,
.ticket-info,
.text-content,
.btn-text {
    font-family: 'Open Sans', Arial, sans-serif !important;
}

/* Jerarquía tipográfica mejorada con Brastika */
h1, .main-title, .hero-title, .site-header h1 {
    font-family: 'Brastika', Impact, Arial Black, sans-serif !important;
    font-size: 3.5rem;
    font-weight: 900 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

h2, .section-title {
    font-family: 'Brastika', Impact, Arial Black, sans-serif !important;
    font-size: 2.5rem;
    font-weight: 900 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

h3, .evento-title {
    font-family: 'Brastika', Impact, Arial Black, sans-serif !important;
    font-size: 1.8rem;
    font-weight: 900 !important;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

h4 {
    font-family: 'Brastika', Impact, Arial Black, sans-serif !important;
    font-size: 1.4rem;
    font-weight: 900 !important;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* Botones con tipografía consistente */
.btn {
    font-family: 'Brastika', Impact, Arial Black, sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

/* Descripción de eventos */
.evento-description {
    font-family: var(--font-body) !important;
    font-weight: 400;
    line-height: 1.6;
    font-size: 1rem;
}

/* Detalles de eventos */
.evento-details {
    font-family: var(--font-body) !important;
    font-weight: 500;
    line-height: 1.5;
}

/* Texto del cuerpo con mejor legibilidad */
p, .text-content {
    font-family: var(--font-body) !important;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Texto importante con mejor peso */
.text-emphasis, strong, b {
    font-weight: 700;
}

/* Texto pequeño pero legible */
small, .small-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Información de tickets */
.ticket-info {
    font-family: var(--font-body) !important;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Títulos de tickets */
.ticket-title {
    font-family: var(--font-headings) !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* === ESTILOS RESPONSIVOS PARA TIPOGRAFÍA === */
@media (max-width: 768px) {
    h1, .main-title, .hero-title, .site-header h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    h2, .section-title {
        font-size: 2rem;
        letter-spacing: 0.8px;
    }
    
    h3, .evento-title {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.2rem;
    }
    
    .btn {
        font-size: 0.9rem;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 480px) {
    h1, .main-title, .hero-title, .site-header h1 {
        font-size: 2rem;
        letter-spacing: 0.8px;
    }
    
    h2, .section-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    h3, .evento-title {
        font-size: 1.3rem;
    }
    
    p, .text-content {
        font-size: 0.95rem;
    }
}

/* === DEBUGGING FONT === */
/* Verificación visual de carga de fuente */
.font-test {
    font-family: 'Brastika', Impact, Arial Black, sans-serif !important;
    font-weight: 900 !important;
    font-size: 2rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Asegurar que el título principal use Brastika */
.site-header h1,
.hero-title,
.main-title {
    font-family: 'Brastika', Impact, Arial Black, sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Force all headings to use Brastika */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Brastika', Impact, Arial Black, sans-serif !important;
    font-weight: 900 !important;
}

/* === FOOTER PRIVACY LINK === */
.footer-links {
    margin: 20px 0;
    text-align: center;
}

.privacy-link {
    display: inline-block;
    color: var(--color-text);
    text-decoration: none;
    font-family: 'Open Sans', Arial, sans-serif !important;
    font-size: 0.9rem;
    padding: 10px 20px;
    border: 1px solid var(--color-accent);
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(155, 89, 182, 0.1);
}

.privacy-link:hover {
    color: var(--color-white);
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.4);
    text-decoration: none;
}

.privacy-link i {
    margin-right: 8px;
    font-size: 0.8rem;
}

/* ==========================================
   CAROUSEL STYLES - Festival Colors
   ========================================== */

.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #590902 0%, #401902 50%, #590902 100%);
    position: relative;
}

.gallery-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCI+PHJlY3Qgd2lkdGg9IjgwIiBoZWlnaHQ9IjgwIiBmaWxsPSJub25lIj48L3JlY3Q+PGNpcmNsZSBjeD0iNDAiIGN5PSI0MCIgcj0iMyIgZmlsbD0iI0YyOUQzNSIgb3BhY2l0eT0iMC4wOCI+PC9jaXJjbGU+PC9zdmc+') repeat;
    pointer-events: none;
}

.gallery-section .container {
    position: relative;
    z-index: 2;
}

.gallery-section .section-title {
    color: #F29D35;
    text-align: center;
    margin-bottom: 60px;
    font-size: 3.5rem;
}

/* Modern Carousel Styles */
.modern-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0 80px 0;
}

.carousel-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.4),
        0 0 0 1px rgba(242, 157, 53, 0.3);
    transition: all 0.4s ease;
    background: #401902;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0,0,0,0.5),
        0 0 0 2px #F29D35,
        0 0 30px rgba(242, 157, 53, 0.4);
}

.carousel-image {
    width: 100%;
    height: 700px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.carousel-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #F29D35, #F25922);
    color: #401902;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 2px solid #BF8D50;
}

/* Navigation Styles */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #F29D35, #F25922);
    color: #401902;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-size: 18px;
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 6px 20px rgba(0,0,0,0.4),
        0 0 20px rgba(242, 157, 53, 0.5);
    background: linear-gradient(135deg, #F25922, #F29D35);
}

.carousel-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #F29D35;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active,
.dot:hover {
    background: #F25922;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(242, 89, 34, 0.6);
}

/* Responsive Styles for Modern Carousel */
@media (max-width: 768px) {
    .modern-carousel {
        max-width: 100%;
        padding: 15px 0 60px 0;
    }
    
    .carousel-image {
        height: 500px;
    }
    
    .carousel-overlay {
        width: 40px;
        height: 40px;
        font-size: 14px;
        top: 15px;
        right: 15px;
    }
    
    .carousel-navigation {
        gap: 20px;
        margin-top: 30px;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 70px;
    height: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #F29D35, #F25922, #BF8D50);
    border-radius: 50%;
    border: 4px solid #590902;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.4),
        inset 0 0 0 2px #BF8D50;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 
        0 8px 25px rgba(242, 157, 53, 0.5),
        0 0 30px rgba(242, 89, 34, 0.3),
        inset 0 0 0 2px #F5E6D3;
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 30px;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23401902'%3e%3cpath d='m3.86 8.753 5.482 4.796c.646.566 1.658.106 1.658-.753V3.204a1 1 0 0 0-1.659-.753l-5.48 4.796a1 1 0 0 0 0 1.506z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23401902'%3e%3cpath d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/%3e%3c/svg%3e");
}

/* Carousel Indicators */
.carousel-indicators {
    margin-bottom: -60px;
    z-index: 10;
}

.carousel-indicators [data-bs-target] {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #F29D35;
    background-color: transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.carousel-indicators .active,
.carousel-indicators [data-bs-target]:hover {
    background: linear-gradient(45deg, #F29D35, #F25922);
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 
        0 0 20px rgba(242, 89, 34, 0.8),
        0 0 40px rgba(242, 157, 53, 0.4);
    border-color: #BF8D50;
}

/* Carousel Captions */
.carousel-caption {
    background: linear-gradient(135deg, 
        rgba(26, 14, 8, 0.95), 
        rgba(45, 24, 16, 0.95), 
        rgba(74, 40, 24, 0.95));
    border-radius: 20px;
    padding: 25px 35px;
    bottom: 40px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 600px;
    border: 3px solid var(--color-gold);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.6),
        inset 0 0 0 1px var(--color-primary);
}

.carousel-caption h5 {
    background: linear-gradient(45deg, var(--color-gold), var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-headings);
    font-size: 2rem;
    margin-bottom: 12px;
    text-shadow: 
        1px 1px 0px var(--color-dark),
        2px 2px 4px rgba(0,0,0,0.8);
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.8));
    font-weight: 900;
    letter-spacing: 1px;
}

.carousel-caption p {
    color: var(--color-cream);
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 
        1px 1px 0px var(--color-dark),
        2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .festival-carousel {
        margin: 0 20px;
    }
    
    .carousel-img {
        height: 300px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-caption {
        padding: 15px 20px;
        bottom: 20px;
    }
    
    .carousel-caption h5 {
        font-size: 1.3rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .carousel-img {
        height: 250px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
        background-size: 20px;
    }
}
