: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/2015/03/01/11/29/mockup-654585_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);
}


  /* =====================================
   FOUNDER JOURNEY SECTION
   ADD TO CSS
===================================== */

.founder-series{
    padding:80px 0;
    background:#ffffff;
}

.founder-series-card{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:40px;
    align-items:center;
    background:#111111;
    color:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.founder-series-image img{
    width:100%;
    height:100%;
    min-height:500px;
    object-fit:cover;
    display:block;
}

.founder-series-content{
    padding:50px;
}

.founder-label{
    display:inline-block;
    background:#7A1020;
    color:white;
    padding:8px 14px;
    border-radius:999px;
    font-size:.8rem;
    font-weight:700;
    margin-bottom:20px;
}

.founder-series-content h2{
    font-size:3rem;
    line-height:1.1;
    margin-bottom:20px;
}

.founder-series-content p{
    color:#d1d5db;
    font-size:1.05rem;
    margin-bottom:30px;
}

.founder-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-bottom:30px;
}

.founder-stat{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    padding:16px;
    text-align:center;
}

.founder-stat-number{
    display:block;
    font-size:1.5rem;
    font-weight:800;
    color:#ffffff;
}

.founder-stat-label{
    font-size:.8rem;
    color:#9ca3af;
}

.founder-btn{
    display:inline-block;
    background:#7A1020;
    color:white;
    text-decoration:none;
    padding:14px 24px;
    border-radius:10px;
    font-weight:700;
}

@media(max-width:900px){

    .founder-series-card{
        grid-template-columns:1fr;
    }

    .founder-series-image img{
        min-height:300px;
    }

    .founder-series-content{
        padding:30px;
    }

    .founder-series-content h2{
        font-size:2rem;
    }

    .founder-stats{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ========================================== FOUNDER JOURNAL PLAYLIST SECTION ========================================== */
 .founder-journal-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:35px; } 
 .founder-journal-card{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:16px; overflow:hidden; transition:.25s; } 
 .founder-journal-card:hover{ transform:translateY(-4px); } .founder-journal-card img{ width:100%; height:180px; object-fit:cover; display:block; }
  .founder-journal-card-content{ padding:20px; } .founder-journal-card-content h4{ font-size:1.05rem; line-height:1.35; margin-bottom:12px; color:#fff; } 
  .founder-journal-card-content p{ color:#cfcfcf; font-size:.92rem; margin-bottom:18px; } 
  .journal-read-more{ display:inline-flex; align-items:center; gap:6px; color:#fff; background:#7A1020; text-decoration:none; padding:10px 14px; border-radius:8px; font-size:.9rem; font-weight:700; } 
  .journal-read-more:hover{ background:#94182a; } .founder-journal-footer{ margin-top:30px; } 
  .view-all-founder-posts{ display:inline-block; text-decoration:none; color:#fff; background:#7A1020; padding:14px 24px; border-radius:10px; font-weight:700; }
   .view-all-founder-posts:hover{ background:#94182a; }
   
   @media(max-width:900px){ .founder-journal-grid{ grid-template-columns:1fr; } }




/* =========================
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;
  }
}
