* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f8f9fb;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  position: relative; /* Needed for overlay positioning */
  background: url(/assets/images/lethon-bg-hero.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}

/* Black overlay at 50% opacity */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* 50% black overlay */
  z-index: 0;
}

/* Hero content above overlay */
.hero .hero-content {
  position: relative;
  z-index: 1;
}

/* Make the whole card clickable */
.store-card-link {
  display: block;
  text-decoration: none; /* Remove underline */
  color: inherit; /* Keep text color */
}

.store-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.store-card img {
  max-width: 100%;
  margin-bottom: 1rem;
}

.store-card h4 {
  margin-bottom: 0.5rem;
}

.store-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Hover effect for entire card */
.store-card-link:hover .store-card {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


.hero .logo {
  max-width: 250px;
  margin: 0 auto 2rem;
  display: block;
}

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

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn {
  background: #fff;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #272727;
  color: #fff;
}


/* .hero {
  background: linear-gradient(90deg, #000000, #282828);
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn {
  background: #fff;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #272727;
  color: white;
} */

.stores {
  padding: 4rem 0;
  text-align: center;
}

.stores h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.store-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.store-card:hover {
  transform: translateY(-5px);
}

.store-card img {
  width: 100px;
  margin-bottom: 1rem;
}

.store-card h4 {
  color: #000;
  margin-bottom: 1rem;
}

.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary:hover {
  text-decoration: underline;
}

.footer {
  background: #fff;
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid #eee;
  color: #555;
}
