/* ===========================
   Site Header
=========================== */
header.main-header {
  background-color: #1a1a1a;
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
body.home-page header.main-header {
  background-color: #002244;
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand a {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ffcc00;
}
/* -------------------------------
   Global Header/Footer Styling
-------------------------------- */


body {
  background-color: body {
  background-color: #ffffff;

}

header a,
footer a {
  color: #ffffff;
  text-decoration: none;
}

header a:hover,
footer a:hover {
  text-decoration: underline;
}


/* -------------------------------
   Footer Layout
-------------------------------- */

.main-footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h2,
.footer-column h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover {
  color: #ff9900;
}
/* --- Electronics Page Header Matches Footer --- */
body.electronics-page header.main-header {
  background-color:#f4f4f4 !important;
  color: #333 !important;
}

body.electronics-page .main-nav a {
  color: #333 !important;
}

body.electronics-page .main-nav a:hover {
  color: #ff9900 !important;
}

/* -------------------------------
   Homepage Layout
-------------------------------- */

/* Search Section */
.search-section {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 30px 20px;
  background-color: #fff;
}

.search-input {
  width: 300px;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.search-button {
  padding: 12px 20px;
  background-color: #ff9900;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}


/* Weekly Picks Section */
.weekly-picks {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.weekly-picks h2 {
  text-align: center;
  margin-bottom: 30px;
}


/* Category Grid */
.category-grid {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.category-card {
  background-color: #002244;
  color: white;
  padding: 20px 30px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.category-card:hover {
  background-color: #003366;
}


/* Newsletter Section */
.newsletter-section {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
}

.newsletter-input {
  width: 300px;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
}

.subscribe-button {
  padding: 12px 20px;
  background-color: #ff9900;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
/* -------------------------------
   Hero Banner
-------------------------------- */

.hero-banner {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('banner.jpg') center/cover no-repeat;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.hero-banner h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-banner p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-button {
  padding: 12px 24px;
  background-color: #ff9900;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #e68a00;
}
/* about section */
.about-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 8px;
  text-align: left;
  line-height: 1.6;
}

.about-section h2,
.about-section h3 {
  margin-bottom: 20px;
  color: #002244;

}
body.home-page header.main-header {
  background-color: #002244;
}
/* ===========================
   Page-Specific Styling
=========================== */

body.home-page {
  background-color: #ffffff;
}

body.outdoors-page {
  background-color: #e6f2ff;
}

body.electronics-page {
  background-color: #f9f9f9;
}

body.fashion-page {
  background-color: #fff0f5;
}

body.gardening-page {
  background-color: #f0fff0;
} 
body.fashion-page .main-header {
  background-color: #660066;

  body.outdoors-page .hero-banner {
  background-image: url('outdoors-banner.jpg');
}
/* --- Outdoors Page Footer Styling --- */
footer.main-footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 40px 20px;
}

footer.main-footer .footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

footer.main-footer .footer-section {
  flex: 1;
  min-width: 200px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.lighting-card {
  flex: 1 1 300px;
  max-width: 300px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.lighting-card img {
  width: 100%;
  height: auto;
}

.lighting-card .info {
  padding: 20px;
}

.lighting-card .cta {
  display: inline-block;
  margin-top: 10px;
  color: #0073e6;
  font-weight: bold;
}

 