:root {
            --primary: #f39c12; 
            --dark: #0a0a0a;
            --card-bg: #1a1a1a;
            --text: #ffffff;
            --gray: #a0a0a0;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, sans-serif; scroll-behavior: smooth; }

        body { background-color: var(--dark); color: var(--text); line-height: 1.6; overflow-x: hidden; 
              /* Creamos una capa negra con 60% de opacidad (0.6) sobre la imagen */
              background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), 
                    url('https://tjdance.de/hochzeiten-events/img/Julio_DJ_Boda_fuegos_Chispas_81.jpg');

  /* Ajustes para que el fondo cubra toda la pantalla y no se mueva */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /* Color de texto blanco para que resalte sobre el fondo oscuro */
  color: white;
  margin: 0;
  min-height: 100vh;
        }

     /* --- NAVEGACIÓN --- */
        nav {
            background-color: rgba(0,0,0,0.95);
            height: 70px; width: 100%; position: fixed;
            top: 0; z-index: 1001; border-bottom: 1px solid #333;
            display: flex; justify-content: space-between; align-items: center; padding: 0 5%;
        }

        .logo { color: var(--primary); font-size: 1.2rem; font-weight: bold; letter-spacing: 1px; }
        .nav-links { display: flex; list-style: none; }
        .nav-links li { margin-left: 25px; }
        .nav-links a {
            color: var(--text); text-decoration: none; font-size: 0.85rem;
            text-transform: uppercase; transition: 0.3s; font-weight: 600;
        }
        .nav-links a:hover { color: var(--primary); }

        .menu-toggle { display: none; color: var(--primary); font-size: 1.8rem; cursor: pointer; z-index: 1002; }

        /* --- HEADER --- */
        header {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?auto=format&fit=crop&w=1350&q=80');
            background-size: cover; background-position: center;
            display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 20px;
        }
        header h1 { font-size: 3.5rem; color: var(--primary); text-transform: uppercase; letter-spacing: 3px; line-height: 1.1; }
        .reveal-bottom { font-size: 1.1rem; color:#fff; letter-spacing: 3px; line-height: 1.1; }

        /* --- SECCIONES --- */
        section { padding: 80px 8%; }
        .section-title { text-align: center; color: var(--primary); font-size: 2.2rem; margin-bottom: 40px; text-transform: uppercase; }

        .profile-container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
        .profile-img img { width: 100%; max-width: 400px; border-radius: 15px; border: 3px solid var(--primary); }
        .profile-info { flex: 1; min-width: 300px; }

        /* --- SERVICIOS --- */
        #servicios { background: #111; }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
        .card { background: var(--card-bg); padding: 40px; border-radius: 10px; text-align: center; border: 1px solid #222; }
        .card i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }

        /* --- TABLA PRECIOS RESPONSIVE --- */
        .price-container { overflow-x: auto; }
        .price-table { width: 100%; border-collapse: collapse; background: var(--card-bg); min-width: 500px; }
        .price-table th, .price-table td { padding: 15px; text-align: center; border-bottom: 1px solid #333; }
        .price-table th { background: #222; color: var(--primary); }

        /* --- CONTACTO --- */
        .contact-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
        .contact-form { background: var(--card-bg); padding: 30px; border-radius: 15px; }
        .contact-form input, .contact-form textarea {
            width: 100%; padding: 12px; margin-bottom: 15px; background: #222; border: 1px solid #444; color: white; border-radius: 5px;
        }
        .btn-submit { background: var(--primary); color: black; border: none; padding: 15px; width: 100%; font-weight: bold; cursor: pointer; border-radius: 5px; }

        footer { background: #000; padding: 40px; text-align: center; border-top: 1px solid #222; }
        .social-links a { color: var(--primary); font-size: 1.8rem; margin: 0 15px; }

        /* --- RESPONSIVE (MÓVIL) --- */
        @media (max-width: 992px) {
            .menu-toggle { display: block; }
            .nav-links {
                position: fixed; right: -100%; top: 70px; 
                height: calc(100vh - 70px); background: rgba(10, 10, 10, 0.98); 
                width: 100%; flex-direction: column; align-items: center; 
                justify-content: center; transition: 0.4s ease-in-out;
            }
            .nav-active { right: 0; }
            .nav-links li { margin: 20px 0; }
            .nav-links a { font-size: 1.4rem; }
            header h1 { font-size: 2.2rem; }
            section { padding: 60px 5%; }
      
}


    /* --- COMENTARIOS GOOGLE --- */
    /* --- TESTIMONIOS STYLE --- */
        #testimonios { background: var(--dark); }
        .testimonials-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 30px; 
        }
        .testimonial-card { 
            background: var(--card-bg); 
            padding: 30px; 
            border-radius: 15px; 
            border: 1px solid #333; 
            position: relative;
            transition: 0.3s;
        }
        .testimonial-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .stars { color: var(--primary); margin-bottom: 15px; font-size: 0.9rem; }
        .testimonial-card p { font-style: italic; color: var(--gray); margin-bottom: 20px; }
        .client-info strong { display: block; color: var(--primary); font-size: 1.1rem; }
        .client-info span { font-size: 0.8rem; color: #777; }

        /* Ajuste para el menú (añadir "Testimonios" al menú móvil si deseas) */
        /* --- TERMINA COMENTARIOS GOOGLE --- */

    /* --- ESTILOS GALERÍA MEJORADA --- */
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
        
        .gallery-item { 
            height: 250px; position: relative; overflow: hidden; 
            border-radius: 10px; cursor: pointer; border: 1px solid #333;
        }
        
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        
        /* Efecto al pasar el mouse */
        .gallery-item .overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(243, 156, 18, 0.7); /* Color naranja transparente */
            display: flex; justify-content: center; align-items: center;
            opacity: 0; transition: 0.3s; color: #000; font-size: 2rem;
        }
        
        .gallery-item:hover .overlay { opacity: 1; }
        .gallery-item:hover img { transform: scale(1.1); }

        /* ESTILOS DEL LIGHTBOX (Imagen en grande) */
        .lightbox {
            display: none; position: fixed; z-index: 2000; top: 0; left: 0;
            width: 100%; height: 100%; background: rgba(0,0,0,0.9);
            justify-content: center; align-items: center; padding: 20px;
            cursor: zoom-out;
        }
        
        .lightbox img { 
            max-width: 90%; max-height: 80%; border-radius: 5px; 
            box-shadow: 0 0 20px rgba(243, 156, 18, 0.3);
            animation: zoomIn 0.3s ease;
        }
        
        .close-btn {
            position: absolute; top: 30px; right: 40px;
            color: var(--primary); font-size: 40px; font-weight: bold; cursor: pointer;
        }

        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }    
     /* TERMINA ESTILOS DEL LIGHTBOX (Imagen en grande) */

     /* --- NUEVA NAVEGACIÓN CON LOGO HORIZONTAL --- */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Espacio entre el icono y el texto */
}

.nav-logo {
    height:70px; /* Tamaño del icono */
    width:200PX;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.main-name {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.sub-name {
    color: var(--text);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}
  /* Ajuste para móviles */
        @media (max-width: 992px) { 
        .main-name { font-size: 1.2rem; }
        .sub-name { font-size: 0.9rem; }
        .nav-logo { height: 40px; }
    .nav-logo {
    height:70px; /* Tamaño del icono */
    width:AUTO;
}

.profile-img{ /* Centra la IMG de los perfiles */

  margin: auto;
  display: block;
                 }
    }

/* --- TERMINA NUEVA NAVEGACIÓN CON LOGO HORIZONTAL --- */


/* -- TABLA PARA DJ CHILI DE SU MUSICA -- */

  .dj-sound-section {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
  }
  .dj-sound-section h3 {
    color: #e67e22; /* Color naranja/dorado para resaltar */
    font-size: 1.2rem;
  }
  .dj-sound-list {
    list-style: none;
    padding: 0;
  }
  .dj-sound-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
  }
  .dj-sound-list li::before {
    content: "🎧"; /* Icono de auriculares */
    position: absolute;
    left: 0;
    font-size: 0.9rem;
  }

/* -- TABLA PARA DJ CHILI DE SU MUSICA -- */
