:root {
  --primary: #702E3B;
  --primary-dark: #541f2a;
  --black: #111111;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-text: #666666;
  --border: #ececec;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: var(--black);
}


/* =========================
GLOBAL
========================= */

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

section {
  padding: 5rem 1.5rem;
}

.section-heading {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.center-heading {
  justify-content: center;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: var(--gray-text);
  max-width: 650px;
}

.view-more-btn {
  background: var(--primary);
  color: white;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.view-more-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}


/* =========================
HERO
========================= */

.atl-hero {
  position: relative;
  min-height: 85vh;
  background-image:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://cdn.pixabay.com/photo/2020/01/03/02/36/atlanta-4737253_1280.jpg');

  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem;
}

.atl-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  color: white;
}

.hero-badge {
  display: inline-block;
  padding: 0.55rem 1rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.atl-hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  max-width: 800px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-description {
  max-width: 650px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}


/* =========================
FEATURED GRID
========================= */

.featured-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.featured-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.featured-card:hover {
  transform: translateY(-6px);
}

.featured-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.featured-content {
  padding: 1.5rem;
}

.card-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.featured-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.featured-content p {
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}


/* =========================
FASHION SECTION
========================= */

.fashion-section {
  background: var(--primary);
  color: white;
}

.light {
  color: rgba(255,255,255,0.8);
}

.fashion-header {
  max-width: 850px;
  margin: 0 auto 3rem;
  text-align: center;
}

.fashion-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.fashion-tagline {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.fashion-description {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.fashion-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.fashion-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  color: black;
}

.fashion-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.fashion-content {
  padding: 1.5rem;
  text-align: center;
}

.fashion-content h3 {
  margin-bottom: 0.5rem;
}

.fashion-content p {
  font-weight: 700;
  margin-bottom: 1rem;
}

.fashion-content button {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.fashion-cta {
  text-align: center;
  margin-top: 2rem;
}

.white-btn {
  background: white;
  color: var(--primary);
}


/* =========================
CATEGORIES
========================= */

.categories-section {
  background: white;
}

.categories-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.category-card {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.category-title {
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
}


/* =========================
STICKY SUBSCRIBE
========================= */

.sticky-subscribe-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 1rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: 0.3s ease;
}

.sticky-subscribe-btn:hover {
  transform: translateY(-3px);
  background: var(--primary-dark);
}


/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

  .featured-grid,
  .fashion-grid,
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .fashion-header h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {

  section {
    padding: 4rem 1rem;
  }

  .atl-hero {
    min-height: 75vh;
  }

  .atl-hero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .featured-grid,
  .fashion-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .featured-card img {
    height: 240px;
  }

  .fashion-card img {
    height: 300px;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .fashion-header h2 {
    font-size: 2rem;
  }

  .sticky-subscribe-btn {
    right: 15px;
    left: 15px;
    bottom: 15px;
    justify-content: center;
  }
}
