
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /*background-color: #cff7ff;*/
  /*background-image: url('bgimage2.jpg'); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;*//*
  color: #333;
  line-height: 1.6;
}*/
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay */
  z-index: -1;
}

/* Header Bar */
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(21, 0, 143);
  color: white;
  padding: 10px 20px;
}

.header-bar h2, .header-bar h3, .header-bar h4 {
  font-size: 1rem;
  margin: 0;
}

.header-bar a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.header-bar a:hover {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  padding: 2px 6px;
}

/* Navigation */
.main-nav {
  background-color: #654bf8;
  padding: 10px 20px;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-family: "Menlo", Courier, monospace;
  transition: 0.3s;
}

.nav-links a:hover {
  background-color: #000;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.search-box {
  padding: 5px 10px;
  border: 1px solid #888;
  border-radius: 5px;
}

.cart-link {
  font-size: 1.2rem;
  text-decoration: none;
  color: black;
}

.cart-link:hover {
  color: white;
  background-color: black;
  border-radius: 4px;
  padding: 4px 6px;
}

/* Product Section */
.mens-shoes {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.mens-shoes h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

/* Grid layout */
.shoe-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.shoe-card {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.shoe-card:hover {
  transform: translateY(-5px);
}

.shoe-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}

.shoe-card h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.price {
  font-size: 1.1rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Buy Button */
.buy-btn {
  background-color: #ff4d4f;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.buy-btn:hover {
  background-color: #d43c3e;
}

/* Responsive Fixes */
@media (max-width: 600px) {
  .nav-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
    margin-top: 10px;
  }

  .shoe-card img {
    height: 140px;
  }
}
.footer {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 30px 20px;
  text-align: center;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  margin: 15px 0;
}

.footer-links a {
  color: #000000;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #0b00d7;
  text-decoration: underline;
}

.social-media {
  margin-top: 15px;
}

.social-media a img {
  width: 24px;
  height: 24px;
  margin: 0 8px;
  vertical-align: middle;
  transition: transform 0.3s;
}

.social-media a img:hover {
  transform: scale(1.2);
}
