/* 
   GOUM Festival Bellydance Chile 2025
   Main Stylesheet
*/

/* ===== VARIABLES ===== */
:root {
    /* Color Palette */
    --primary-color: #e83e8c; /* Rosa */
    --secondary-color: #6f42c1; /* Púrpura */
    --accent-color: #20c997; /* Verde menta */
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-overlay: linear-gradient(rgba(111, 66, 193, 0.8), rgba(232, 62, 140, 0.8));
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 15px;
    
    /* Shadows */
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --border-radius: 15px;
    --border-radius-sm: 8px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

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

.section-subtitle {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    color: var(--dark-color);
    opacity: 0.85;
    line-height: 1.6;
    font-weight: 400;
    font-family: var(--body-font);
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 50px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--box-shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--dark-color);
}

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

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

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
}

.btn-nav:hover {
    background-color: var(--secondary-color);
}

.btn-nav::after {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--white);
}

.navbar.scrolled .bar {
    background-color: var(--dark-color);
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .navbar {
        padding: 12px 0;
        background-color: var(--white);
        box-shadow: var(--box-shadow);
        height: 70px;
        display: flex;
        align-items: center;
        width: 100%;
        left: 0;
        right: 0;
    }
    
    .logo {
        color: var(--primary-color);
        font-size: 1.5rem;
        z-index: 101;
        position: relative;
    }
    

    
    .hamburger {
        display: block;
        z-index: 101;
        padding: 10px;
        margin-right: 5px;
        position: relative;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        cursor: pointer;
    }
    
    .bar {
        background-color: var(--dark-color);
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease;
        border-radius: 3px;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--primary-color);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--primary-color);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255,255,255,1), rgba(248,249,250,1));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 100;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        padding: 80px 0 50px;
        overflow-y: auto;
        margin: 0;
        border: none;
    }
    
    .nav-links.active {
        left: 0;
        right: 0;
        width: 100vw;
    }
    
    .nav-links li {
        margin: 12px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(0.1s * var(--i));
    }
    
    .nav-links.active li:nth-child(1) { --i: 1; }
    .nav-links.active li:nth-child(2) { --i: 2; }
    .nav-links.active li:nth-child(3) { --i: 3; }
    .nav-links.active li:nth-child(4) { --i: 4; }
    .nav-links.active li:nth-child(5) { --i: 5; }
    .nav-links.active li:nth-child(6) { --i: 6; }
    
    .nav-links a {
        color: var(--dark-color) !important;
        font-size: 1.2rem;
        position: relative;
        padding: 12px 0;
        display: inline-block;
        width: 80%;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .nav-links a:hover::after {
        width: 80%;
    }
    
    .btn-nav {
        margin-top: 20px;
        background: var(--gradient-primary);
        border-radius: 50px;
        padding: 12px 30px;
        box-shadow: var(--box-shadow);
        transition: all 0.3s ease;
        width: auto;
        min-width: 180px;
    }
    
    .btn-nav:hover {
        transform: translateY(-3px);
        box-shadow: var(--box-shadow-hover);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding-top: 50px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

/* ===== ARTISTS SECTION ===== */
.artists {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.artist-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 20px;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.artist-image {
    height: 300px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.artist-card h3 {
    margin-top: 20px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.artist-card p {
    padding: 0 20px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 20px;
}

.contact-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* ===== PAYMENT SECTION ===== */
.payment {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 350px));
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
}

.ticket-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.ticket-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    position: relative;
}

.ticket-card.featured::before {
    content: 'Recomendado';
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius-sm);
}

.ticket-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.ticket-header h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
}

.ticket-body {
    padding: 20px;
}

.ticket-body ul {
    margin-bottom: 20px;
}

.ticket-body li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.ticket-body li i {
    color: var(--accent-color);
    margin-right: 10px;
}

.payment-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: none;
}

.payment-form h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-methods h4 {
    margin-bottom: 15px;
}

.payment-method-options {
    display: flex;
    gap: 20px;
}

.payment-method-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.payment-method-options input {
    margin-right: 8px;
}

.total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.total-label {
    font-weight: 600;
    font-size: 1.2rem;
}

.total-amount {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: var(--section-padding);
    background-color: var(--white);
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(248,249,250,1), rgba(255,255,255,1));
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.1), rgba(111, 66, 193, 0.1));
    z-index: 0;
}

.video-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.1), rgba(232, 62, 140, 0.1));
    z-index: 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 30px;
    z-index: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.video-container::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 30px;
    font-weight: 400;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 8px 20px;
    margin: 0 5px 10px;
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--box-shadow);
}

.gallery-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.gallery-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.gallery-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery {
    overflow: hidden;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    background-color: var(--white);
    padding: 8px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    border-radius: var(--border-radius);
    display: block;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.9;
}

/* Eliminados los estilos de gallery-info ya que no se usa más */

.gallery-zoom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery-zoom:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
    gap: 12px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.gallery-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-subtitle {
        margin-bottom: 25px;
        font-size: 1rem;
    }
    
    .gallery-item {
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
        max-width: 400px;
        margin: 0 auto 30px;
    }
}

/* Responsive styles for all sections */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    /* Footer responsive styles for very small screens */
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-top {
        margin-bottom: 40px;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-circle::before {
        width: 120px;
        height: 120px;
    }
    
    .footer-logo h2 {
        font-size: 2rem;
    }
    
    .footer-logo p {
        font-size: 1rem;
    }
    
    .footer-logo .tagline {
        font-size: 0.9rem;
    }
    
    .links-columns {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .footer-links ul li a {
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .contact-item i {
        margin-right: 0;
    }
    
    .newsletter-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .newsletter-form input {
        width: 100%;
        max-width: 280px;
        padding: 14px;
        text-align: center;
        font-size: 0.95rem;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-form .btn {
        width: auto;
        min-width: 140px;
        padding: 12px 25px;
        border-radius: 50px;
        background: var(--gradient-primary);
        box-shadow: var(--box-shadow);
        transition: all 0.3s ease;
    }
    
    .newsletter-form .btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--box-shadow-hover);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 6px 15px;
        margin: 0 3px 8px;
        font-size: 0.8rem;
    }
    
    /* Ensure modal is centered on mobile */
    .modal-wrapper {
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    
    .modal-content {
        width: 95%;
        margin: 0 auto;
        padding: 20px;
        max-height: 90vh;
    }
    
    /* Adjust spacing for all sections */
    .section-header {
        margin-bottom: 30px;
    }
    
    .about, .artists, .gallery, .contact, .payment {
        padding: 60px 0;
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    position: relative;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.footer-social h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 50px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-icons a:hover::before {
    left: 100%;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 100%;
    padding: 20px 10px;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    width: 90%;
    max-width: 800px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-hover);
    padding: 30px;
    margin: 30px auto 0;
}

.modal-scroll-container {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

#modal-content {
    padding-top: 10px;
}

/* Estilos para dispositivos móviles */
@media (max-width: 767px) {
    .modal-wrapper {
        padding: 0;
        align-items: center;
    }
    
    .modal-content {
        width: 90%;
        max-width: 800px;
        height: auto;
        min-height: 90vh;
        max-height: none;
        margin: 20px auto;
        padding: 20px;
        border-radius: var(--border-radius);
        display: flex;
        flex-direction: column;
    }
    
    .modal-scroll-container {
        flex: 1;
        max-height: none;
        padding-bottom: 20px;
    }
    
    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 24px;
    }
}

/* ===== BOTONES FLOTANTES ===== */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: var(--white);
}

.scroll-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 85px;
    right: 25px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.footer-main {
    background-color: var(--dark-color);
    padding: 90px 0 50px;
    position: relative;
}

.footer-top {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.footer-logo h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-logo p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.footer-logo .tagline {
    color: var(--accent-color);
    font-style: italic;
    font-size: 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
    padding: 0 15px;
}

.footer-info h3,
.footer-links h3,
.footer-social h3,
.footer-newsletter h3,
.footer-gallery h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-info h3::after,
.footer-links h3::after,
.footer-social h3::after,
.footer-newsletter h3::after,
.footer-gallery h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 50px;
}

.footer-info p {
    margin-bottom: 22px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-item:hover i {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.links-columns {
    display: flex;
    gap: 40px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--light-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links ul li a i {
    font-size: 0.85rem;
    margin-right: 10px;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-links ul li a:hover i {
    transform: translateX(5px);
}

.footer-social p {
    margin-bottom: 25px;
    max-width: 95%;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transform: scale(0);
    transition: var(--transition);
    border-radius: 50%;
}

.social-icons a:hover {
    transform: translateY(-5px);
    color: var(--white);
}

.social-icons a:hover::before {
    transform: scale(1);
}

.hashtag {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-top: 5px;
    margin-bottom: 30px;
}

.footer-newsletter h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
    font-family: var(--body-font);
    font-weight: 600;
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.footer-newsletter .form-group {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.footer-newsletter input,
.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-newsletter input:focus {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.newsletter-form .btn {
    align-self: flex-start;
    margin-top: 5px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.footer-gallery {
    margin-top: 40px;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.gallery-image {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: var(--border-radius-sm);
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    border-radius: var(--border-radius-sm);
}

.gallery-image:hover img {
    transform: scale(1.1);
}

.gallery-image:hover::before {
    opacity: 0.7;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 28px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    padding: 0 10px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-credits {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.2px;
}

.footer-credits a {
    color: #ffffff;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.footer-credits a:hover {
    color: #ffffff;
}

.footer-credits a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-credits a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

.footer-bottom-links a {
    color: var(--light-color);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

.scroll-top {
    position: absolute;
    right: 30px;
    bottom: 20px;
}

.scroll-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.scroll-top a:hover {
    transform: translateY(-5px);
}

/* Responsive styles for footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .gallery-images {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-main {
        padding: 70px 0 40px;
    }
    
    .footer-top {
        margin-bottom: 60px;
    }
    
    .footer-social {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image::before {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .ticket-card.featured {
        transform: none;
        order: -1;
        margin-bottom: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 10px;
    }
    
    .scroll-top {
        right: 20px;
    }
    
    .footer-main {
        padding: 60px 0 35px;
    }
    
    .footer-top {
        margin-bottom: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-info h3,
    .footer-links h3,
    .footer-social h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-info h3::after,
    .footer-links h3::after,
    .footer-social h3::after,
    .footer-newsletter h3::after,
    .footer-gallery h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }
    
    .footer-info p {
        text-align: center;
    }
    
    .footer-contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .links-columns {
        justify-content: center;
        width: 100%;
        gap: 30px;
    }
    
    .footer-social {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        margin: 0 auto;
    }
    
    .footer-info h3,
    .footer-links h3,
    .footer-social h3 {
        padding-bottom: 15px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .footer-newsletter h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .hashtag {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .links-columns {
        gap: 25px;
    }
    
    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-top {
        margin-bottom: 40px;
    }
    
    .logo-circle {
        width: 110px;
        height: 110px;
    }
    
    .logo-circle::before {
        width: 130px;
        height: 130px;
    }
    
    .footer-logo h2 {
        font-size: 2.2rem;
    }
    
    .footer-logo p {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .footer-copyright p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .footer-credits {
        font-size: 13px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
        margin-top: 8px;
    }
    
    .footer-newsletter h4 {
        font-size: 1.05rem;
    }
    
    .newsletter-form input {
        padding: 10px 12px;
    }
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 0;
}

.modal-wrapper {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    width: 100%;
}

.modal-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: fadeIn 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    box-sizing: border-box;
}

.modal-scroll-container {
    overflow-y: auto;
    max-height: calc(85vh - 60px);
    padding-right: 10px;
    margin-right: -10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.modal-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.modal-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.modal-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.modal-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Artist Profile Modal Styles */
.artist-profile-modal {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2100;
}

.close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.artist-profile-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 3px solid var(--white);
    position: relative;
    z-index: 1;
    margin: 0 auto 15px;
    flex-shrink: 0;
}

.artist-profile-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
}

.artist-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.artist-name {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 10px 0 5px;
    text-align: center;
    width: 100%;
}

.artist-country {
    font-size: 1rem;
    color: var(--dark-color);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
    position: relative;
    padding-bottom: 15px;
}

.artist-country::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.artist-country i {
    color: var(--primary-color);
    margin-right: 8px;
}

.artist-bio {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.artist-bio h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.artist-bio p {
    text-align: left;
    padding: 0 5px;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.artist-bio h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.artist-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.artist-action {
    text-align: center;
    margin-top: 15px;
    width: 100%;
}

.artist-action .btn {
    width: 80%;
    max-width: 250px;
    padding: 12px 20px;
    margin: 0 auto;
    display: block;
}

/* Modal Message Styles */
.modal-message {
    text-align: center;
    padding: 20px 10px;
}

.modal-message h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.modal-message p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Ticket Features Styles */
.ticket-body ul {
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
}

.ticket-body ul li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--dark-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.ticket-body ul li:last-child {
    border-bottom: none;
}

.ticket-body ul li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.ticket-body ul li::before {
    content: '\2022';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
    opacity: 0.8;
}

/* Gallery Modal Styles */
.gallery-modal-content {
    width: 100%;
}

.gallery-modal-content img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.gallery-modal-caption {
    margin-top: 15px;
    text-align: center;
}

.gallery-modal-caption h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.gallery-modal-caption p {
    color: var(--dark-color);
    font-size: 1rem;
    opacity: 0.8;
}

@media (max-width: 576px) {
    .modal-wrapper {
        padding: 0;
        min-height: 100vh;
    }
    
    .modal-content {
        padding: 15px;
        width: 92%;
        max-width: 340px;
        max-height: none;
        margin: 10px auto;
        border-radius: 15px;
    }
    
    .modal-scroll-container {
        padding-right: 5px;
        margin-right: -5px;
        width: 100%;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 1.3rem;
        width: 30px;
        height: 30px;
        line-height: 30px;
        background-color: var(--white);
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .artist-profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .artist-profile-image {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100px;
        height: 100px;
    }
    
    .artist-country {
        justify-content: center;
    }
    
    .artist-profile-info h2 {
        font-size: 1.5rem;
    }
    
    .artist-bio h3 {
        font-size: 1.1rem;
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .artist-bio p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: left;
    }
    
    .modal-message h3 {
        font-size: 1.4rem;
    }
    
    .modal-message p {
        font-size: 0.95rem;
    }
    
    .artist-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .artists-grid,
    .payment-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }
    
    .video-container {
        max-width: 100%;
        margin: 0 auto;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .video-section::before,
    .video-section::after {
        width: 150px;
        height: 150px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        box-shadow: var(--box-shadow);
        padding: 30px 0;
        transition: var(--transition);
        z-index: -1;
    }
    
    .nav-links.active {
        top: 70px;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        color: var(--dark-color);
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image::before {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .artists-grid,
    .payment-options,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .payment-method-options {
        flex-direction: column;
        gap: 10px;
    }
}
