/*
Theme Name: SpartanAutos Theme
Author: Santiago Hernandez
Description: Wordpress theme for SpartanAutos
Version: 1.0
*/

/* Import Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap');

/* Estilo personalizado para usar la fuente Inter */
body {
    font-family: 'Inter', sans-serif;
    background-color: #111827; /* bg-gray-900 */
}

/* Estilo para el scroll suave */
html {
    scroll-behavior: smooth;
}

/* Clases para sombra de texto */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-shadow-lg {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Mejorar visibilidad del carrusel */
.carousel-slide {
    z-index: 1;
}

.carousel-slide video {
    object-fit: cover;
}

/* Botones del carrusel */
#prev-btn, #next-btn {
    z-index: 10;
    backdrop-filter: blur(5px);
}

#prev-btn:hover, #next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Contenedor para video responsivo */
.aspect-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}
.aspect-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}