/* -------------------------
   GLOBAL STYLES
--------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background: #0d0d0d;
    /* color: #fff; */
    overflow-x: hidden;
  }
  
  section {
    padding: 60px 6%;
  }
  
  /* -------------------------
     PARALLAX SECTION
  --------------------------*/
  .parallax {
    background: url('fashion-bg.webp') center/cover fixed no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  
  .parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
  }
  
  .parallax-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-animated-line span {
    font-size: 4rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #fff;
    animation: glow 3s ease-in-out infinite alternate;
  }
  
  @keyframes glow {
    0% { text-shadow: 0 0 10px #ff66c4; }
    100% { text-shadow: 0 0 25px #ff1493; }
  }
  
  .hero-text-scroll {
    margin-top: 20px;
    font-size: 1.1rem;
    overflow: hidden;
    white-space: nowrap;
  }
  
  .hero-text-scroll span {
    display: inline-block;
    animation: scrollText 12s linear infinite;
  }
  
  @keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
  
  /* -------------------------
     NEW SEASON CARDS
  --------------------------*/
  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .card {
    background: #716d6d;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
  }
  
  .card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 4px 25px rgba(255, 20, 147, 0.4);
  }
  
  /* -------------------------
     RUNWAY SLIDER
  --------------------------*/
  .runway-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
  }
  
  .runway-item img {
    width: 340px;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  /* -------------------------
     CATEGORY FLIP CARDS
  --------------------------*/
  .category-container {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  .category-card {
    width: 100%;
    height: 320px;
    perspective: 1000px;
  }
  
  .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .category-card:hover .card-inner {
    transform: rotateY(180deg);
  }
  
  .card-front,
  .card-back {
    position: absolute;
    backface-visibility: hidden;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
  }
  
  .card-front {
    background-size: cover;
    background-position: center;
  }
  
  .card-front h3 {
    font-size: 1.8rem;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 8px 20px;
    border-radius: 8px;
  }
  
  .card-back {
    background: linear-gradient(135deg, #ff1493, #6a0080);
    transform: rotateY(180deg);
    color: #fff;
  }
  
  .card-back .btn {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 18px;
    background: #fff;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
  }
  
  /* -------------------------
     ANNOUNCEMENT BAR
  --------------------------*/
  .announcement-bar {
    background: linear-gradient(90deg, #ff1493, #ff66c4);
    padding: 12px 0;
    text-align: center;
    font-size: 1.1rem;
  }
  
  .announcement-text {
    animation: scrollText 12s linear infinite;
  }
  
  /* -------------------------
     RESPONSIVE MEDIA QUERIES
  --------------------------*/
  
  /* ---------- TABLET VIEW (768px – 1024px) ---------- */
  @media (max-width: 1024px) {
    .cards {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .category-container {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .hero-animated-line span {
      font-size: 3rem;
    }
  }
  
  /* ---------- MOBILE VIEW (below 768px) ---------- */
  @media (max-width: 768px) {
  
    .parallax {
      height: 60vh;
      background-attachment: scroll;
    }
  
    .hero-animated-line span {
      font-size: 2.2rem;
    }
  
    .cards {
      grid-template-columns: 1fr;
    }
  
    .category-container {
      grid-template-columns: 1fr;
    }
  
    .runway-track {
      gap: 10px;
    }
  
    .runway-item img {
      width: 260px;
      height: 340px;
    }
  
    section {
      padding: 40px 5%;
    }
  }
  
  /* ------- SMALL MOBILE VIEW (below 480px) ------- */
  @media (max-width: 480px) {
    .hero-animated-line span {
      font-size: 1.8rem;
    }
  
    .card img {
      height: 200px;
    }
  
    .category-card {
      height: 280px;
    }
  }
  