* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  background: #fbbc04;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 0 20px;
}

.logo {
  color: black;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: black;
  font-weight: bold;
}

.hero-banner {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}

.hero-banner img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #fbbc04;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
}

main {
  padding: 0 20px;
}

section {
  margin: 3rem 0;
  padding: 1.5rem;
  border-radius: 10px;
}

.feature-section { background-color: #f9f9f9; }
.highlight-section { background-color: #fff6ef; }
.collection-section { background-color: #eef7ff; }
.tips-section, .care-section { background-color: #fdf8ff; }
.text-center-section { background-color: #f2f2f2; text-align: center; }
.testimonials-section { background-color: #f5f5f5; }
.cta {
  background: #000;
  color: #fff;
  text-align: center;
}

.feature-grid {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}


.shoe-card-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.shoe-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem;
  width: 100%;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.shoe-card:hover {
  transform: translateY(-5px);
}
.shoe-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.shoe-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.shoe-card p {
  color: #666;
  font-size: 0.95rem;
}

.feature-card {
  background-color: white;
  border: 1px solid #ddd;
  padding: 1rem;
  flex: 1 1 22%;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.5rem;
}

.feature-card img {
  max-width: 100%;
  height: 100px;
  border-radius: 8px;
}

.feature-card div {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: bold;
}

.feature-card small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.collection-list,
.tips-list,
.care-list {
  list-style: none;
  padding-left: 0;
}

.collection-list li,
.tips-list li,
.care-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

li i {
  color: #000;
  margin-right: 10px;
  font-size: 1.1rem;
}

.testimonial-box {
  background: white;
  border-left: 5px solid #000;
  padding: 1rem;
  margin: 1rem 0;
  font-style: italic;
}

.dual-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.text-content {
  flex: 1 1 50%;
}

.image-content {
  flex: 1 1 45%;
}

.image-content img {
  width: 100%;
  max-width: 250px; 
  height: auto;    
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  background: #f4f4f4;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .hero-content{
    font-size: 0.5rem;
  }

  .hero-content h1{
    font-size: 1.0rem;
  }

  .feature-grid {
    flex-direction: column;
  }
  .dual-layout {
    flex-direction: column;
  }
  .hero-banner img {
    height: 60vh;
  }
}
