/* ====== Global Reset ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
  scroll-behavior: smooth;
}

/* ====== Container ====== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ====== Header ====== */
header {
  position: fixed;
  width: 100%;
  background: rgba(34, 34, 34, 0.9);
  color: #fff;
  padding: 15px 0;
  z-index: 1000;
  transition: 0.3s ease;
}

header.scrolled {
  background: #222;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  transition: all 0.3s ease;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: #ffcc00;
  color: #222;
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* ====== Hero Section ====== */
.hero {
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease forwards;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: slideDown 1.2s ease forwards;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  animation: slideUp 1.2s ease forwards;
}

.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #ffcc00;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: #e6b800;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ====== About Preview ====== */
.about-preview {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  margin-top: 40px;
  animation: fadeIn 1.5s ease forwards;
}

.btn-secondary {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #222;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #444;
  transform: translateY(-2px);
}

/* ====== Stores Preview ====== */
.stores-preview {
  padding: 60px 20px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.store-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.store-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.store-card h4 {
  margin-bottom: 12px;
  color: #222;
}

.store-card a {
  display: inline-block;
  margin-top: 12px;
  color: #ffcc00;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.store-card a:hover {
  transform: scale(1.1);
  color: #e6b800;
}

/* ====== Why Us Section ====== */
.why-us {
  padding: 60px 20px;
  background: #222;
  color: #fff;
  text-align: center;
  border-radius: 12px;
}

.why-us ul {
  list-style: none;
  margin-top: 25px;
  display: inline-block;
  text-align: left;
}

.why-us li {
  margin-bottom: 12px;
  font-size: 1.2rem;
  position: relative;
  padding-left: 25px;
}

.why-us li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffcc00;
}

/* ====== Footer ====== */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  margin-top: 50px;
}

.footer-links a {
  color: #fff;
  margin: 0 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc00;
  transform: scale(1.05);
}

/* ====== Animations ====== */
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes slideDown {
  0% {opacity: 0; transform: translateY(-50px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes slideUp {
  0% {opacity: 0; transform: translateY(50px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #333;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px;
    padding: 20px;
    border-radius: 5px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
