/* Font & reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f5f7fa;
  color: #333;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #007bff;
}

.navbar .logo a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5em;
}

.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar .nav-links a:hover {
  color: #ffd700;
}

/* HERO SECTION */
.hero-section {
     background:
    linear-gradient(45deg, rgba(214, 10, 163, 0.884), rgba(0,0,0,0.7)),
    url("../extras/brand-cover.png");
  background-size: cover;
  background-position: center;
 color: #fff;
  text-align: center;
  padding: 60px 20px 40px 20px;
  position: relative;
}

.hero-section h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.hero-button {
  display: inline-block;
  text-decoration: none;
  background-color: #ffd700;
  color: #007bff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  transition: all 0.3s;
}

.hero-button i {
  margin-right: 8px;
}

.hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* STORE CARDS */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.store-card {
  text-decoration: none;
  color: inherit;
}

.card-content {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.card-icon {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.card-content h2 {
  margin-bottom: 15px;
  font-size: 1.6em;
  color: #007bff;
}

.card-content p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.card-button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
  cursor: pointer;
}

.card-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* FOOTER */
.main-footer {
  text-align: center;
  padding: 25px 20px;
  margin-top: 50px;
  border-top: 1px solid #ddd;
  font-size: 0.95em;
  color: #777;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .hero-section h1 {
    font-size: 2.2em;
  }

  .hero-section p {
    font-size: 1.1em;
  }
}


/* FOOTER */
.main-footer {
    background-color: #007bff; /* deep blue background */
    color: #fff;               /* white text */
    text-align: center;
    padding: 30px 20px;        /* more spacious padding */
    margin-top: 50px;
    font-size: 0.95em;
    position: relative;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1); /* subtle shadow at top */
}

/* Optional: add links inside footer */
.main-footer a {
    color: #ffd700;           /* golden links for contrast */
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
    transition: color 0.3s;
}

.main-footer a:hover {
    color: #fff;              /* hover effect */
}

/* Optional small print */
.main-footer p {
    margin-bottom: 10px;
}

/* ==================== Store Insights (informational) styles ==================== */
.store-insights { background: #ffffff; color: #111; padding: 70px 20px; }
.store-insights .container { max-width: 1000px; margin: 0 auto; text-align: left; line-height: 1.8; font-size: 16px; }
.store-insights h2 { font-size: 28px; margin-bottom: 14px; color: #003366; }
.store-insights h3 { font-size: 18px; margin-top: 16px; margin-bottom: 8px; color: #0056b3; }
.store-insights p { margin-bottom: 12px; color: #444; }

/* Ensure navbar does not overlap content when sticky or on small screens */
.navbar { position: sticky; top: 0; z-index: 1000; }
/* give the main content a safe top spacing equal to navbar height */
main.store-grid { margin-top: 20px; }
.store-insights { margin-top: 20px; }

@media (max-width: 768px) {
  .store-insights { padding: 40px 16px; }
  .store-insights .container { font-size: 15px; }
}

