html {
  background-color: #000; /* o el color dominante de tu imagen, evita que se vea blanco */
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  overscroll-behavior-y: none; /* evita el rebote elástico en vertical */
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('bk3-min.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
  

/*Image Grids Responsive*/
div {
    padding-inline: 6px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Flexible columns */
    gap: 6px; /* Space between images */
    max-width: 100%; /* Prevents overflow */
}

/* Limit to a maximum of 6 columns */
@media (min-width: 768px) {
    div {
        grid-template-columns: repeat(4, 1fr); /* Maximum of 4 columns */
    }
}

img {
    border-radius: 0px;
    width: 100%; /* Ensures images fit their container */
    height: auto;
}
/*Image Grids Responsive*/

header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.home {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    font-size: 16px;
}

.home img {
    width: 24px; /* Adjust icon size */
    height: auto;
    margin-right: 5px; /* Space between image and text */
}

header a img {
    width: 40px;
    height: 40px;
}

#logo {
    width: 150px;
    height: auto ;
}

#sneaker-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#customize {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid black;
    border-radius: 25px;
    background: linear-gradient(to right, #a0e8af, #9f98e8);
    cursor: pointer;
}

footer {
    margin-top: 20px;
    font-size: 20px;
    font-family: helvetica;
    font-weight: bold;
    font-style: italic;
}


#footer-logo {
    width: 200px;
    opacity: 0.5;
}


/* parte del centro */

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#logo {
    width: 150px; /* Adjust size as needed */
    margin-bottom: 20px; /* Space below logo */
}

#sneaker-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
}

#sneaker {
    width: 100%;
    border-radius: 10px;
}

#customize {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    border: 2px solid black;
    border-radius: 25px;
    background: linear-gradient(to right, #a0e8af, #9f98e8);
    cursor: pointer;
    margin-top: 0; /* Keeps button stuck to the image */
}

/* parte del footer sin espacio */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes content up, prevents extra space */
    min-height: 100vh; /* Ensures the body takes the full viewport height */
}

footer {
    font-family: Helvetica;
    text-align: center;
    margin-top: auto; /* Pushes footer to the bottom */
    padding-bottom: 10px; /* Small padding to avoid it touching the edge */
    color: white;
}

/* la imagen del footer se hace responsive */
footer img {
    width: 100%; /* Makes the image scale based on the parent width */
    max-width: 250px; /* Prevents the image from getting too large */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes any extra spacing below the image */
    margin: 0 auto; /* Centers the image */
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: flex;
    
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    
    
}

.social-icons a img {
    width: 40px;
   
}
