/* shops.css */
/* ---------------------------------------------
   Pine City Mall Shops Page Styles
   Palette:
   Dark Gray:  #333333
   Light BG:   #FFF8F9
   Accent Pink: #F8BBD0
   Cyan:       #00B8D4
   Deep Pink:  #E91E63
   White:      #FFFFFF
--------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff8f9;
  color: #333333;
  line-height: 1.6;
}

/* ---------------------------------------------
   NAVBAR (same as all pages)
--------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  background-color: #00b8d4;
  padding: 12px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.25s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f8bbd0;
}

nav img {
  border-radius: 10px;
  border: 2px solid rgba(248, 187, 208, 0.15);
}

/* ---------------------------------------------
   HERO SECTION
--------------------------------------------- */
.shops-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 184, 212, 0.15),
    rgba(233, 30, 99, 0.05)
  );
}

.shops-hero h1 {
  font-size: 2.4rem;
  color: #333333;
  margin-bottom: 12px;
}

.shops-hero p {
  font-size: 1.1rem;
  color: #555;
}

/* ---------------------------------------------
   SHOP LIST SECTION
--------------------------------------------- */
.shop-list {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
}

.shop-list h2 {
  color: #e91e63;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.shop-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
}

.shop-list li {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.shop-list li img {
  margin-bottom: 14px;
  border-radius: 8px;
}

.shop-list li h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.shop-list li p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #555;
}

/* Shop Button */
.shop-btn {
  display: inline-block;
  background-color: #00b8d4;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.shop-btn:hover {
  background-color: #e91e63;
  transform: translateY(-3px);
}

/* ---------------------------------------------
   FOOTER
--------------------------------------------- */
footer {
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  padding: 16px 0;
  margin-top: 50px;
  font-size: 0.95rem;
}

/* ---------------------------------------------
   RESPONSIVE DESIGN
--------------------------------------------- */
@media (max-width: 768px) {
  .shops-hero h1 {
    font-size: 2rem;
  }

  .shop-list ul {
    flex-direction: column;
    align-items: center;
  }

  .shop-list li {
    width: 85%;
  }
}
