/* === Navbar Styling === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 1px 10px;
  flex-wrap: wrap;
  border-bottom: 2px solid red;

  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar {
  position: fixed;           /* Fixes navbar to top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;             /* Keeps it above all other content */
  background-color: white;   /* Ensure background doesn't turn transparent */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 10px;
  flex-wrap: wrap;
  border-bottom: 2px solid red;
}

.navbar .logo img {
  height: 90px;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: red;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #d40000;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: yellow;
  min-width: 180px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 5px;
}

.dropdown-content a {
  display: block;
  color: red;
  padding: 12px 18px;
  text-decoration: none;
  font-size: 16px;
}

.dropdown-content a:hover {
  background-color: #ffefaf;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* CTA Button */
.cta-button a {
  background-color: yellow;
  color: red;
  padding: 12px 22px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.cta-button a:hover {
  background-color: #ffeb3b;
  color: #c10000;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
  }

  .cta-button {
    margin-top: 10px;
    align-self: flex-end;
  }
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.shop-heading-section {
  background-color: #FFD700; /* Bright Yellow */
  text-align: center;
  padding: 100px 20px 40px;
}

.shop-heading {
  color: white;
  font-size: 60px;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.shop-image-display {
  text-align: center;
  background-color: #FFD700; /* Match section background */
  padding: 40px 0;
}

.shop-image-display img {
  width: 500px;
  max-width: 90%;
  height: auto;
}
.footer {
  background-color: #1a002d; /* very very dark purple */
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

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

.footer-column {
  flex: 1 1 220px;
}

.footer-column h4 {
  color: #ffea00;
  margin-bottom: 15px;
  font-size: 18px;
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

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

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

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  /* REMOVE filters */
  filter: none;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  color: #999;
}