/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #f8f8f8;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}
.logo span {
  font-size: 14px;
  font-weight: 400;
  display: block;
  color: #555;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
nav ul li a:hover {
  color: #f4c430;
}

.icons a {
  margin-left: 15px;
  font-size: 18px;
  text-decoration: none;
  color: #333;
}

/* Hero Banner */
.hero {
  background: url('../images/banner-shoes.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

/* Overlay for better text visibility */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  z-index: 1;
}
.hero h1 span {
  color: #f4c430;
}
.hero p {
  margin-top: 10px;
  font-size: 1.2rem;
  z-index: 1;
}
.hero-buttons {
  margin-top: 20px;
  z-index: 1;
}
.btn {
  padding: 12px 30px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}
.btn.dark {
  background: #000;
  color: #fff;
}
.btn.dark:hover {
  background: #f4c430;
  color: #000;
}
.btn.light {
  background: #fff;
  color: #000;
}
.btn.light:hover {
  background: #f4c430;
  color: #000;
}

/* Collections */
.collections {
  padding: 60px;
  text-align: center;
}
.collections h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}
.grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.item img {
  width: 250px;
  height: auto;
  border-radius: 10px;
}
.item h3 {
  margin: 15px 0;
}
.item .btn {
  background: #000;
  color: #fff;
}
.item .btn:hover {
  background: #f4c430;
  color: #000;
}

/* Why Choose Vello */
.why {
  background: #f8f8f8;
  padding: 60px;
  text-align: center;
}
.why h2 {
  margin-bottom: 30px;
}
.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.features div {
  max-width: 250px;
}

/* Sale Banner */
.sale {
  background: #f4c430;
  color: #000;
  text-align: center;
  padding: 60px;
}
.sale h2 {
  font-size: 2.5rem;
}
.sale p {
  margin: 15px 0;
  font-size: 1.2rem;
}
.sale .btn {
  background: #000;
  color: #fff;
}
.sale .btn:hover {
  background: #fff;
  color: #000;
}

/* Reviews */
.reviews {
  padding: 60px;
  text-align: center;
}
.reviews h2 {
  margin-bottom: 20px;
}
blockquote {
  font-style: italic;
  margin-top: 20px;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 30px;
}
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: #f8f8f8;
    padding: 20px;
    position: absolute;
    top: 70px;
    right: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  nav.active ul {
    display: flex;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
}
