@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}

.header {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('Img/Sneakers menu.jpg');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img{
    width: 40px;
}
.logo {
    color: #fffdfc;
    font-size: 25px;
    font-weight: 800;
}
.menu .navbar ul li {
    position: relative;
    float: left;
}
.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #fffdfc;
    display: block;
    font-weight: 600;
}

.menu .navbar ul li a:hover{
    color: #ce967b;
}
#menu {
    display: none;
}

.menu-icono{
    width: 25px;
}
.menu label {
    cursor: pointer;
    display: none;
}
.header-content {
    text-align: center;
    color: #f9fafc;
    margin: 0 auto;
    max-width: 800px;
    width: 100%; /* Asegurar que el contenido esté centrado y ocupe todo el ancho */
}

.header-content h1 {
    font-size: 60px;
    line-height: 80px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.header-content p {
    font-size: 16px;
    color: #c5c5c5;
    margin-bottom: 25px;
}

/* botones */
.btn-1 {
    display: inline-block;
    padding: 11px 35px;
    background-color: #ce967b;
    color: #f9fafc;
    text-transform: uppercase;
}

.btn-1:hover {
    background-color: #e6a382;
}

.Sneakers-content {
    text-align: center;
}

.Sneakers-group {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.Sneakers-1,
.Sneakers-2,
.Sneakers-3 {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    flex: 1;
    margin: 0 10px;
    max-width: 300px;
    margin-bottom: 15px;
}

.Sneakers-1:hover,
.Sneakers-2:hover,
.Sneakers-3:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.Sneakers-1 img,
.Sneakers-2 img,
.Sneakers-3 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    
}

.Sneakers-1 h3,
.Sneakers-2 h3,
.Sneakers-3 h3 {
    font-size: 20px;
    color: #323337;
    margin-bottom: 10px;
}

.Sneakers-1 p,
.Sneakers-2 p,
.Sneakers-3 p {
    line-height: 1.6;
    color: #666;
}

.Sneakers-1 .btn-1,
.Sneakers-2 .btn-1,
.Sneakers-3 .btn-1 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ce967b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.Sneakers-1 .btn-1:hover,
.Sneakers-2 .btn-1:hover,
.Sneakers-3 .btn-1:hover {
    background-color: #e99f7a;
}

/* Main Services */
.servicios {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(247, 240, 240, 0.7)), url('Img/Sneakers menu.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    margin-top: 50px; /* Ajusta este valor según sea necesario */
}

.servicios-content {
    text-align: center;
}

.servicios-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.servicios-1 {
    background: #444;
    padding: 20px;
    border-radius: 10px;
    max-width: 200px;
}

.servicios-1 img {
    width: 100%;
    border-radius: 10px;
}

.servicios-1 .btn-1 {
    display: inline-block;
    margin-top: 10px;
    background: #f60;
}

.servicios-1 .btn-1:hover {
    background: #e50;
}

/* Section Blog */
.blog {
    padding: 50px;
    text-align: center;
  }
  
  .blog-content {
    display: flex;
    justify-content: space-between;
  }
  
  .blog-1 {
    padding: 20px;
    background-color: #f9f9f9; /* Color de fondo suave */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: box-shadow 0.3s ease; /* Transición suave al pasar el ratón */
  
    /* Añadir margen inferior para separar los elementos */
    margin-bottom: 20px;
  }
  
  .blog-1:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Cambiar la sombra al pasar el ratón */
  }
  
  .blog-1 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px; 
  }
  
  .blog-1 h3 {
    font-size: 20px; 
    color: #323337;
    margin-bottom: 10px; 
  }
  
  .blog-1 p {
    line-height: 1.6; 
    color: #666; 
  }
  .blog-2 {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    margin-bottom: 20px;
  }
  
  .blog-2:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }
  
  .blog-2 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .blog-2 h3 {
    font-size: 20px;
    color: #323337;
    margin-bottom: 10px;
  }
  
  .blog-2 p {
    line-height: 1.6;
    color: #666;
  }
  .blog-3 {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    margin-bottom: 20px;
  }
  
  .blog-3:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }
  
  .blog-3 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .blog-3 h3 {
    font-size: 20px;
    color: #323337;
    margin-bottom: 10px;
  }
  
  .blog-3 p {
    line-height: 1.6;
    color: #666;
  }

/* Footer Styles */
.footer {
    padding: 100px 0;
    background-color: #000000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer section {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer section h3 {
    margin-right: 20px;
}

footer section a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer p {
    margin-top: 20px;
}
/* Responsive Styles */
@media (max-width: 991px) {
    .menu {
        padding: 30px;

    }

    .menu label {
        display: initial;

    }

    .menu-icono {
        display: block;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color:#323337;
        display: none;
        
    }


    .menu .navbar ul li {
        width: 100%;
        
    }

   

    #menu:checked ~ .navbar {
        display: initial;
    }

    .header {
        min-height: 0vh;
    }
    .header-content {
        padding: 100px 30px;
    }

    .header-content p {
        padding: 0;
    }
   

    .Sneakers-group,
    .servicios-group,
    .blog-content {
        flex-direction: column;
        align-items: center;
    }
}
