/* Fashion Page */

.category-hero {
  position: relative;
  width: 100%;
  height: 80vh; /* almost full screen */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.fashion-hero {
  background-image: url(images/peacock\ \(2\).jpg); /* replace with your fashion hero image */
}

.hero-overlay {
  text-align: center;
  background: rgba(0,0,0,0.35); /* subtle dark overlay for text readability */
  padding: 2rem;
  border-radius: 12px;
}

.hero-overlay h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.model-profile-book {
  background: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.model-profile-book h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}

.model-profile-book .intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

.model-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.model-card {
  background: #f7f7f7;
  border-radius: 12px;
  overflow: hidden;
  max-width: 300px;
  flex: 1 1 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.model-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.model-info {
  padding: 1.5rem;
}

.model-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.3rem;
}

.model-info p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.btn-profile {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: #000;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-profile:hover {
  background: #F5A623;
  color: #000;
}

/* -------------------------------
   Responsive Adjustments
-------------------------------- */
@media (max-width: 992px) {
  .hero-overlay h1 {
    font-size: 2.2rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
  .model-profile-book {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .category-hero {
    height: 60vh; /* shorter hero */
  }
  .hero-overlay {
    padding: 1.5rem;
  }
  .hero-overlay h1 {
    font-size: 1.8rem;
  }
  .hero-overlay p {
    font-size: 0.95rem;
  }
  .model-profile-book h2 {
    font-size: 2rem;
  }
  .model-profile-book .intro {
    font-size: 1rem;
  }
  .model-card img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .category-hero {
    height: 50vh;
  }
  .hero-overlay h1 {
    font-size: 1.5rem;
  }
  .hero-overlay p {
    font-size: 0.9rem;
  }
  .model-profile-book h2 {
    font-size: 1.6rem;
  }
  .model-profile-book {
    padding: 3rem 1rem;
  }
  .model-grid {
    gap: 1.2rem;
  }
  .model-card {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .model-card img {
    height: 220px;
  }
  .btn-profile {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}


/* --- Fashion Section Styling --- */
.fashion-section {padding:4rem 0; background:#f8f8f8;}
.container {max-width:1100px; margin:0 auto; padding:0 1rem; display:grid; grid-template-columns:1fr; gap:3rem;}

/* --- Headline Blocks --- */
.headline-block {background:#fff; padding:2rem; border-radius:12px; box-shadow:0 4px 15px rgba(0,0,0,0.05); transition:transform 0.3s;}
.headline-block:hover {transform:translateY(-5px);}
.headline-label {text-transform:uppercase; font-weight:700; color:#ff0066; margin-bottom:0.5rem; font-size:0.9rem;}
.headline-block h2 {font-size:2rem; margin-bottom:1rem; color:#111;}
.headline-block p {color:#333; font-size:1rem; line-height:1.6; margin-bottom:1.5rem;}
.btn-readmore {padding:0.7rem 1.5rem; background:#111; color:#fff; border-radius:50px; font-weight:600; text-transform:uppercase; text-decoration:none; transition:background 0.3s;}
.btn-readmore:hover {background:#444;}

/* --- Sneaker Grid --- */
.sneaker-grid {display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:2rem; margin-top:2rem;}
.sneaker-card {background:#fafafa; border-radius:10px; padding:1rem; box-shadow:0 2px 10px rgba(0,0,0,0.05); transition:transform 0.3s,box-shadow 0.3s;}
.sneaker-card:hover {transform:translateY(-3px); box-shadow:0 6px 20px rgba(0,0,0,0.1);}
.sneaker-card img {border-radius:10px; margin-bottom:1rem;}
.sneaker-card h3 {margin-bottom:0.5rem;}
.sneaker-card p {margin-bottom:1rem;}
.affiliate-link {display:inline-block; padding:0.5rem 1.2rem; background:#111; color:#fff; border-radius:50px; font-weight:600; text-transform:uppercase; transition:background 0.3s;}
.affiliate-link:hover {background:#444;}

/* --- Responsive --- */
@media(max-width:768px) {.sneaker-grid {grid-template-columns:1fr;}}