/* Custom CSS for Bunker Studios Landing Page */

/* Global font family - Force Exo 2 */
* {
    font-family: 'Exo 2', sans-serif !important;
}

body {
    font-family: 'Exo 2', sans-serif !important;
    font-weight: 400;
}

/* Headers with stronger Exo 2 weight */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif !important;
    font-weight: 700;
}

/* Medium weight for some elements */
.fw-bold, .lead, .btn {
    font-weight: 600;
}

/* Navbar specific font styling */
.navbar-brand, .nav-link {
    font-family: 'Exo 2', sans-serif !important;
}

/* Override Bootstrap font family */
.btn, .card, .lead, p, span, div {
    font-family: 'Exo 2', sans-serif !important;
}

/* Global fixes for mobile */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

* {
    box-sizing: border-box;
}

/* Prevent horizontal scroll on all sections */
section {
    overflow-x: hidden;
    max-width: 100%;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #141318 0%, #2c2c2c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loading-text {
    color: #ff700a;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: typing 1.5s infinite;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 112, 10, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff700a, #DC2751);
    width: 0%;
    border-radius: 2px;
    animation: loadingProgress 1.5s ease-in-out;
}

/* Keyframe Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes typing {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

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

.slide-in-scale {
    animation: slideInScale 0.8s ease forwards;
}

.animation-delay-1 { animation-delay: 0.1s; }
.animation-delay-2 { animation-delay: 0.2s; }
.animation-delay-3 { animation-delay: 0.3s; }
.animation-delay-4 { animation-delay: 0.4s; }
.animation-delay-5 { animation-delay: 0.5s; }
.animation-delay-6 { animation-delay: 0.6s; }

/* Counter Animation */
.counter {
    font-weight: bold;
    color: #ff700a;
}

/* Logo Styles */
.logo-img {
    height: 40px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-logo {
    height: 30px;
    width: auto;
    max-width: 30px;
    object-fit: contain;
    border-radius: 3px;
}

/* Variables de colores del sistema */
:root {
    --primary-color: #ff700a;
    --secondary-color: #d85a00;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --dark-color: #141318;
    --light-color: #f8f9fa;
    --accent-color: #DC2751;
    --gradient-primary: linear-gradient(135deg, #ff700a 0%, #d85a00 100%);
    --gradient-dark: linear-gradient(135deg, #141318 0%, #2c2c2c 100%);
    --gradient-music: linear-gradient(135deg, #ff700a 0%, #DC2751 50%, #d85a00 100%);
}

/* Custom Hamburger Menu */
.custom-toggler {
    border: none;
    background: transparent;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-toggler:focus {
    box-shadow: none;
    outline: none;
}

.custom-toggler:hover {
    background-color: rgba(255, 112, 10, 0.1);
}

.custom-toggler-icon {
    display: block;
    width: 26px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.custom-toggler-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    left: 0;
}

.custom-toggler-icon span:nth-child(1) {
    top: 0;
    width: 100%;
}

.custom-toggler-icon span:nth-child(2) {
    top: 8px;
    width: 80%;
}

.custom-toggler-icon span:nth-child(3) {
    top: 16px;
    width: 90%;
}

.custom-toggler[aria-expanded="true"] .custom-toggler-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.custom-toggler[aria-expanded="true"] .custom-toggler-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.custom-toggler[aria-expanded="true"] .custom-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
    width: 100%;
}

/* Hover effect for hamburger */
.custom-toggler:hover .custom-toggler-icon span:nth-child(2) {
    width: 100%;
}

.custom-toggler:hover .custom-toggler-icon span {
    background: var(--accent-color);
}

/* Modern Navbar Styles */
.modern-navbar {
    background: transparent !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 112, 10, 0.5);
    transition: all 0.3s ease;
    padding: 0.8rem 0;
}

.modern-navbar.scrolled {
    background: rgba(20, 19, 24, 0.95) !important;
    padding: 0.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 112, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Specific styles for legal pages */
.legal-page .modern-navbar {
    background: rgba(20, 19, 24, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page .navbar-brand img {
    filter: brightness(1.2);
}

.legal-page .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.legal-page .nav-link:hover {
    color: #ff700a !important;
}

.legal-page .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.legal-page .custom-toggler-icon span {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Modern Navigation Links */
.modern-nav {
    gap: 1.5rem;
}

.modern-link {
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    overflow: hidden;
}

/* Estado inicial de la navbar - texto súper blanco y ancho */
.modern-navbar:not(.scrolled) .modern-link {
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
   
}

/* Estado con scroll - texto normal */
.modern-navbar.scrolled .modern-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-shadow: none;
}

.modern-link:hover {
    color: var(--primary-color) !important;
    background: rgba(255, 112, 10, 0.05);
    transform: translateY(-2px);
}

.link-text {
    position: relative;
    z-index: 2;
}

.link-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.modern-link:hover .link-underline {
    width: 80%;
}

/* Contact CTA Button */
.contact-cta {
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 0.7rem 1.5rem !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 112, 10, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.contact-cta:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255, 112, 10, 0.4) !important;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color)) !important;
    color: white !important;
}

.contact-cta .link-underline {
    display: none;
}

/* Navbar Backdrop Effect */
.navbar-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 112, 10, 0.02) 0%, 
        rgba(220, 39, 81, 0.02) 50%, 
        rgba(213, 90, 0, 0.02) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Logo Enhancement */
.navbar-brand {
    transition: all 0.3s ease;
}

/* Logo en estado inicial - más brillante */
.modern-navbar:not(.scrolled) .navbar-brand img {
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* Logo en estado con scroll - normal */
.modern-navbar.scrolled .navbar-brand img {
    filter: brightness(1) contrast(1);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Hero Section with Studio Background */
.hero-section-with-bg {
    background-image: url('../img/0056-AA-BUNKER-STUDIOS-scaled.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: 1;
}

.hero-content-minimal {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1.2s ease-out;
}

.hero-content-minimal::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -40px;
    right: -40px;
    bottom: -20px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 80%
    );
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 20px;
    z-index: -1;
}

.hero-content-minimal h1 {
    background: 50% 100% / 50% 50% no-repeat
                radial-gradient(ellipse at bottom, #fff, transparent, transparent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        2px 2px 8px rgba(0, 0, 0, 0.7),
        4px 4px 16px rgba(0, 0, 0, 0.5);
    animation: reveal 3000ms ease-in-out forwards 200ms,
               glow 2500ms linear infinite 2000ms;
}

@keyframes reveal {
    80% {
        letter-spacing: 8px;
    }
    100% {
        background-size: 300% 300%;
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.6),
            0 0 20px rgba(255, 255, 255, 0.4),
            2px 2px 8px rgba(0, 0, 0, 0.9),
            4px 4px 16px rgba(0, 0, 0, 0.7);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.5),
            0 0 40px rgba(255, 215, 0, 0.3),
            2px 2px 10px rgba(0, 0, 0, 1),
            4px 4px 18px rgba(0, 0, 0, 0.8);
    }
}

.hero-content-minimal p {
    font-size: 1.3rem;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 8px rgba(0, 0, 0, 0.6),
        0 0 16px rgba(0, 0, 0, 0.4);
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1.5s ease-out 1s both;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.5s both;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.hero-section-with-bg .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.studio-highlight {
    background: rgba(20, 19, 24, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 112, 10, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.studio-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 112, 10, 0.2);
    border-color: rgba(255, 112, 10, 0.5);
}

.hero-content {
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

/* Original Hero Section Styles */
.hero-section {
    background: var(--gradient-music);
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-image {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}



.navbar-brand {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.card-img-top-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.card-img-top-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    transition: opacity 0.3s ease;
}

.service-card:hover .card-img-top-container::after {
    opacity: 0.7;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

/* Project Cards */
.project-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.project-card .card-img-top {
    transition: transform 0.3s ease;
}

.project-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Stats Section */
.stat-item {
    padding: 2rem 1rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 112, 10, 0.1) 0%, rgba(220, 39, 81, 0.1) 100%);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(255, 112, 10, 0.2) 0%, rgba(220, 39, 81, 0.2) 100%);
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.02);
}

/* Contact Section */
.contact-item {
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

/* Modern Contact Actions Grid */
.contact-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-action-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 112, 10, 0.1), 
        transparent
    );
    transition: left 0.5s ease;
}

.contact-action-card:hover::before {
    left: 100%;
}

.contact-action-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(255, 112, 10, 0.1);
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 112, 10, 0.2);
}

.contact-action-card.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.contact-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-action-card.whatsapp .contact-action-icon {
    background: #25D366;
}

.contact-action-card:hover .contact-action-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-action-content {
    flex: 1;
}

.contact-action-content h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-action-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive adjustments for contact actions */
@media (max-width: 768px) {
    .contact-actions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-action-card {
        padding: 1rem;
    }
    
    .contact-action-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }
    
    .contact-action-content h6 {
        font-size: 1rem;
    }
    
    .contact-action-content p {
        font-size: 0.85rem;
    }
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-music);
    box-shadow: 0 4px 15px rgba(255, 112, 10, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 112, 10, 0.4);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 112, 10, 0.4);
}

/* Specific colors for each social network */
.social-link:nth-child(1):hover {
    background: #1877f2; /* Facebook */
    border-color: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-link:nth-child(2):hover {
    background: #E4405F; /* Instagram */
    border-color: #E4405F;
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.4);
}

.social-link:nth-child(3):hover {
    background: #FF0000; /* YouTube */
    border-color: #FF0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Mobile adjustments for social links */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Badges */
.badge {
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Studio-specific styles */

/* Artist Cards */
.artist-card {
    transition: transform 0.3s ease;
    padding: 1rem;
}

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

.artist-photo {
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-photo {
    transform: scale(1.1);
}

/* Artist Cards - Aesthetic Full Width */
.artists-section {
    position: relative;
    overflow: hidden;
}

.artist-card-aesthetic {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.artist-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: all 0.5s ease;
    filter: brightness(0.8) contrast(1.1);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.7) 80%,
        rgba(0, 0, 0, 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0.8;
    transition: all 0.5s ease;
}

.artist-info {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.artist-name {
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}

.artist-genre {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Hover Effects */
.artist-card-aesthetic:hover .artist-image {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.artist-card-aesthetic:hover .artist-overlay {
    opacity: 1;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 112, 10, 0.1) 30%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.artist-card-aesthetic:hover .artist-info {
    transform: translateY(0);
}

.artist-card-aesthetic:hover .artist-name {
    color: var(--primary-color) !important;
    text-shadow: 2px 2px 8px rgba(255, 112, 10, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .artist-image-container {
        height: 300px;
    }
    
    .artist-name {
        font-size: 1.25rem;
    }
    
    .artist-genre {
        font-size: 0.9rem;
    }
    
    .artist-overlay {
        padding: 1.5rem;
    }
}

/* Equipment Cards - Similar to Artist Cards */
.equipment-card-aesthetic {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.equipment-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.equipment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
    filter: brightness(0.6) contrast(1.1) blur(2px);
}

.equipment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 30%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0.9;
    transition: all 0.5s ease;
}

.equipment-info {
    text-align: center;
    transform: translateY(0);
    transition: all 0.5s ease;
    width: 100%;
}

.equipment-name {
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}

.equipment-description {
    font-size: 0.85rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

/* Equipment List Styling */
.equipment-list {
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.3;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.equipment-list ul {
    margin: 0;
    padding-left: 1rem;
    list-style-type: disc;
    color: rgba(255, 255, 255, 0.9);
    columns: 2;
    column-gap: 1.5rem;
    column-fill: balance;
    width: 100%;
}

/* Lista corta sin columnas */
.equipment-list ul.equipment-list-short {
    columns: 1;
    text-align: center;
    padding-left: 0;
}

.equipment-list li {
    margin-bottom: 0.4rem;
    font-size: 0.75rem;
    break-inside: avoid;
    page-break-inside: avoid;
}

/* Equipment Hover Effects */
.equipment-card-aesthetic:hover .equipment-image {
    transform: scale(1.05);
    filter: brightness(0.8) contrast(1.2) blur(0.5px);
}

.equipment-card-aesthetic:hover .equipment-overlay {
    opacity: 1;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 112, 10, 0.1) 30%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.equipment-card-aesthetic:hover .equipment-info {
    transform: translateY(0);
}

.equipment-card-aesthetic:hover .equipment-name {
    color: var(--primary-color) !important;
    text-shadow: 2px 2px 8px rgba(255, 112, 10, 0.3);
}

/* Equipment Responsive adjustments */
@media (max-width: 768px) {
    /* Fix mobile horizontal overflow */
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }
    
    [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .equipment-image-container {
        height: 300px;
    }
    
    .equipment-name {
        font-size: 1.25rem;
    }
    
    .equipment-description {
        font-size: 0.8rem;
    }
    
    .equipment-overlay {
        padding: 1.5rem;
    }
}

/* Studio Gallery */
.studio-img {
    border-radius: 15px;
    transition: all 0.3s ease;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}

.studio-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.instalacion-img-container {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    background: #222;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .instalacion-img-container {
        height: 160px;
        border-radius: 10px;
        margin-bottom: 12px;
    }
    .studio-img {
        height: 160px;
        border-radius: 10px;
    }
    #instalaciones .row.g-4 {
        gap: 0.5rem !important;
    }
}

/* Video Container */
.video-container {
    position: relative;
}

.video-container iframe {
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-container:hover iframe {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Studio Features */
.studio-feature {
    padding: 0rem 0rem;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.studio-feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 112, 10, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.studio-feature i {
    transition: all 0.3s ease;
}

.studio-feature:hover i {
    transform: scale(1.1);
    color: var(--secondary-color) !important;
}

/* Equipment Section */
.nav-pills .nav-link {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-right: 10px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Music-themed animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.contact-item i {
    animation: pulse 2s infinite;
}

/* Audio waveform effect */
@keyframes waveform {
    0%, 100% {
        height: 20px;
    }
    50% {
        height: 40px;
    }
}

.hero-image i::before {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--primary-color);
    animation: waveform 1s infinite;
}

/* Vinyl record effect */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.navbar-brand i {
    animation: spin 10s linear infinite;
}

/* Sound wave background pattern */
.studio-section {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 112, 10, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(220, 39, 81, 0.1) 0%, transparent 50%);
}

/* Equipment list styling */
.list-unstyled li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 112, 10, 0.1);
    transition: all 0.3s ease;
}

.list-unstyled li:hover {
    background: rgba(255, 112, 10, 0.05);
    padding-left: 1rem;
}

/* Musical note animations */
@keyframes musical-note {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-50px) rotate(360deg);
        opacity: 0;
    }
}

.hero-section::after {
    content: '♪ ♫ ♪ ♫';
    position: absolute;
    top: 50%;
    right: 10%;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: musical-note 8s infinite;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-section-with-bg {
        background-attachment: scroll;
        padding-top: 60px;
        min-height: 60vh;
        justify-content: center;
    }
    
    .hero-section-with-bg h1 {
        font-size: 2.5rem;
    }
    
    .hero-section-with-bg p {
        font-size: 1rem;
    }
    
    .hero-content-minimal h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        white-space: nowrap;
        letter-spacing: 1px;
        text-align: center;
    }
    
    .hero-content-minimal {
        text-align: center;
        padding: 1rem 0;
    }
    
    .studio-highlight {
        margin-top: 2rem;
    }
}

/* Para tablets y móviles medianos */
@media (max-width: 576px) and (min-width: 481px) {
    .hero-section-with-bg {
        min-height: 55vh;
    }
    
    .hero-content-minimal h1 {
        font-size: 2rem !important;
        letter-spacing: 1px;
        white-space: nowrap;
        word-spacing: 0.1em;
        text-align: center;
    }
    
    .hero-content-minimal {
        text-align: center;
    }
}

/* Extra responsive para móviles pequeños */
@media (max-width: 480px) {
    .hero-section-with-bg {
        min-height: 50vh;
        padding-top: 50px;
    }
    
    .hero-content-minimal h1 {
        font-size: 1.8rem !important;
        letter-spacing: 0.5px;
        white-space: nowrap;
        word-spacing: 0.1em;
        max-width: 95vw;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-content-minimal {
        padding: 1rem 10px;
        text-align: center;
    }
    
    .hero-content-minimal p {
        font-size: 0.9rem;
        text-align: center;
    }
}


/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Section Spacing */
section {
    scroll-margin-top: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Text Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Focus States */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Modern Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 20px rgba(255, 112, 10, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top-btn:hover {
    background: var(--accent-color);
    transform: translateY(0) scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 112, 10, 0.4);
    color: white;
}

.scroll-to-top-btn:active {
    transform: translateY(0) scale(0.95);
}

.scroll-to-top-btn.show {
    transform: translateY(0);
    opacity: 1;
}

.scroll-to-top-btn i {
    transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover i {
    transform: translateY(-2px);
}

/* Mobile adjustments for scroll button */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Equipment Section - Dark Theme */
.section-badge {
    display: inline-block;
    background: var(--bs-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.equipment-dark {
    background: #000;
    color: white;
    position: relative;
    overflow: hidden;
}

.equipment-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(199, 125, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.equipment-dark .container {
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(135deg, #4A90E2, #C77DFF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.equipment-dark .nav-pills .nav-link {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 0.5rem;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
}

.equipment-dark .nav-pills .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.equipment-dark .nav-pills .nav-link.active {
    background: var(--bs-primary);
    color: white;
    border-color: var(--bs-primary);
}

.equipment-dark .list-unstyled li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.equipment-dark .list-unstyled li:last-child {
    border-bottom: none;
}

.equipment-dark .list-unstyled li i {
    color: var(--bs-primary);
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 144, 226, 0.3);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.stat-card h3 {
    color: var(--bs-primary);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.floating-element {
    position: absolute;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Equipment Categories Display */
.equipment-category {
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 15px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.equipment-category:hover {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 112, 10, 0.1);
    transform: translateY(-5px);
}

.category-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.equipment-category .equipment-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.equipment-category .equipment-item:last-child {
    border-bottom: none;
}

.equipment-category .equipment-item i {
    color: var(--bs-primary);
    flex-shrink: 0;
}

.equipment-category .equipment-item span {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Logo Large */
.footer-logo-large {
    height: 80px;
    width: auto;
    max-width: 200px;
}

/* Mobile navbar spacing fixes */
@media (max-width: 991.98px) {
    /* Fix navbar transparency in mobile when at top */
    .modern-navbar:not(.scrolled) {
        background: rgba(20, 19, 24, 0.85) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    /* Ensure navbar has proper background when menu is open */
    .modern-navbar.show:not(.scrolled),
    .modern-navbar[aria-expanded="true"]:not(.scrolled) {
        background: rgba(20, 19, 24, 0.95) !important;
    }
    
    /* Add margin between logo and collapsed menu */
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 112, 10, 0.2);
        background: rgba(20, 19, 24, 0.9);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 0 0 10px 10px;
    }
    
    /* Ensure proper spacing for navbar items in mobile */
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }
    
    /* Adjust navbar brand for mobile */
    .navbar-brand {
        margin-right: auto;
    }
    
    /* Custom toggler positioning */
    .navbar-toggler {
        margin-left: auto;
        border: none;
        padding: 0.25rem 0.5rem;
    }
}

/* Legal pages styling */
.legal-content {
    line-height: 1.8;
}

.legal-content h3 {
    color: #ff700a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Footer legal links */
.footer-bottom a {
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ff700a !important;
}
