.dh-parallax {
    position: relative;
    padding: 100px 0;
    background-image: url('/img/oxitipa/downhill-parallax.jpg'); /* Asegúrate de tener esta imagen */
    background-size: cover;
    background-position: center;
    /* ESTO CREA EL EFECTO: */
    background-attachment: fixed; 
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Capa oscura para que el texto blanco de las categorías resalte */
.dh-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Ajusta la opacidad según la imagen */
    z-index: 1;
}

.dh-contenedor-principal {
    position: relative;
    z-index: 2; /* Por encima de la capa oscura */
    width: 100%;
	max-width: 1200px; 
    margin: 0 auto;
	display: flex;
	justify-content: space-between;
    flex-direction: column; /* Título arriba, Grid abajo */
    align-items: center;    /* Centra el título horizontalmente */
	padding: 0 20px;
}

.dh-description {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.dh-description p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Estilo del Link de Instagram */
.dh-ig-link {
    color: var(--primary); /* Tu naranja/rojo */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 5px 15px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.dh-ig-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

/* Contenedor del Video para que sea responsivo */
.dh-video-container {
    width: 100%;
    max-width: 720px;
    margin: 40px auto;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    display: block;
}

.dh-video-responsive {
    position: relative;
    width: 100%;             /* IMPORTANTE: debe tener ancho */
    padding-bottom: 56.25%;  /* Proporción 16:9 */
    height: 0;               /* La altura la da el padding */
    overflow: hidden;
    background: #000;        /* Fondo negro mientras carga */
}

.dh-video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

@media (max-width: 768px) {
	.dh-video-container iframe {
        height: 300px;
    }
    .dh-description p {
        font-size: 1.1rem;
    }
}