/* ----------------- Estilos Generales ----------------- */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ----------------- Barra de Navegación ----------------- */
.navbar {
    background-color: #ffee00;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
    color: #000000;
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .nav-link {
    color: #000000;
    font-weight: bold;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #FFC107;
}

.navbar .btn-outline-success {
    border-color: #000000;
    color: #000000;
}

.navbar .btn-outline-success:hover {
    background-color: #FFC107;
    color: #212529;
}

/* ----------------- Hero Banner Principal ----------------- */
.hero {
    position: relative;
    color: #ffd000;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    z-index: -1;
}

.hero h2 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.medio {
    padding: 6rem 0;
    background-color: #1f1f1f;
    color: #e0e0e0;
}

.medio .row {
    align-items: center;
}

.medio img {
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.medio h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFC107;
    margin-bottom: 1.5rem;
}

.medio p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ----------------- Tarjetas de Productos ----------------- */
.abajo {
    padding: 3rem 0;
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 300px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card .btn-primary {
    background-color: #212529;
    border-color: #212529;
    font-weight: bold;
}

.card .btn-primary:hover {
    background-color: #343a40;
    border-color: #343a40;
}

/* ----------------- Footer ----------------- */
footer {
    background-color: #000000;
    color: #fff;
    margin-top: auto;
}

footer svg path {
    fill: #fff;
    transition: fill 0.3s ease;
}

footer a:hover svg path {
    fill: #FFC107;
}

/* ----------------- Estilos para el Carrusel ----------------- */
#zapatillasCarousel .carousel-caption {
    background-color: rgba(33, 37, 41, 0.7);
    border-radius: 8px;
    padding: 1.5rem;
    bottom: 20px;
}

#zapatillasCarousel .carousel-caption h5 {
    color: #FFC107;
    font-size: 1.5rem;
    font-weight: bold;
}

#zapatillasCarousel .carousel-caption p {
    color: #e0e0e0;
}

#zapatillasCarousel .carousel-control-prev-icon,
#zapatillasCarousel .carousel-control-next-icon {
    background-color: #FFC107;
    border-radius: 50%;
}

#zapatillasCarousel .carousel-item img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 3px solid #FFC107;
    max-height: 400px;
    object-fit: cover;
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto;
}

/* ----------------- Estilos para la sección de Contacto  ----------------- */
.contact-section {
    color: #000000;
}

.contact-title {
    color: #000000;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
    align-items: start; 
}

.contact-info-box {
    background-color: #1f1f1f;
    color: #e0e0e0;
}

.contact-subtitle {
    color: #FFC107;
}

/* ----------------- responsive para pantallas ----------------- */
@media (max-width: 992px) {

    /* para las tablets */
    .medio h3 {
        font-size: 2rem;
    }

    .medio p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; 
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .medio {
        padding: 4rem 0;
    }

    .medio .row {
        flex-direction: column;
    }

    .medio .col-md-6:first-child {
        margin-bottom: 2rem;
    }

    .medio img {
        margin-bottom: 2rem;
    }

    .medio h3 {
        font-size: 1.8rem;
    }

    .medio p {
        font-size: 0.95rem;
    }
}

