body {
  background: #000;
  color: #fff;
}
:root {
  /* --pureRed: */
  --red: #c0192c;
  --dark: #111;
  --white:#fff;
}
/* ─── NAVBAR ─── */
.site-nav {
  background: #050505;
}
.navbar-brand-text {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  color: var(--red);
  line-height: 1.1;
  font-weight: 700;
}
.navbar-brand:focus,
.navbar-brand:hover {
  color: red !important;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff !important;
  padding: 0.5rem 0.85rem !important;
  position: relative;
  padding-bottom: 8px !important;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #e63939; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.btn-collaborate {
  display: inline-flex;
  align-items: center;
  background: #f8f9fa;
  color: #333;
  border: 2px solid #e63939;
  border-radius: 50px;
  padding-right: 8px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(230, 57, 57, 0.15);
}
.btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #e63939;
  color: white;
  border-radius: 50%;
  font-size: 1.4rem;
  margin-right: 14px;
  transition: all 0.4s ease;
  z-index: 2;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.btn-collaborate::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e63939;
  transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.btn-collaborate:hover::before {
  left: 0;
}
.btn-collaborate:hover {
  color: white !important;
  box-shadow: 0 12px 30px rgba(230, 57, 57, 0.35);
  transform: translateY(-3px);
}
.btn-collaborate:hover .btn-circle {
  background: white;
  color: #e63939;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}




.hero-eyebrow {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.hero-h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 4.5vw, 3rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}
.hero-h1 em {
  font-style: italic;
}
.hero-p {
  color: #bbb;
  font-size: 0.98rem;
  max-width: 340px;
  line-height: 1.7;
}

/* ─── FILTER BAR ─── */

.filter-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.filter-tabs::-webkit-scrollbar {
  display: none;
}
.ftab {
  display: inline-block;
  padding: 0.85rem 1.05rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #666;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.18s;
}
.ftab:hover {
  color: var(--red);
}
.ftab.active {
  color: var(--red);
  border-bottom-color: var(--red);
  font-weight: 700;
}
.search-box {
  font-size: 0.78rem;
  padding: 0.38rem 2rem;
  outline: none;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
}
.sort-sel {
  font-size: 0.78rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.38rem 0.7rem;
  color: #444;
  background-color: transparent;
  border-radius: 20px;
}

.nav-tabs .nav-link {
  color: #aaa;
  border: none;
  white-space: nowrap;
}
.nav-tabs .nav-link.active {
  color: white;
  border-bottom: 3px solid #ff2d55;
  background: transparent;
}
.creator-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.creator-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.11);
  transform: translateY(-3px);
}
.c-img {
  aspect-ratio: 5/5;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-init {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 700;
}
.c-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.7rem 0.75rem 0.45rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}
.c-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0;
}
.c-check {
  color: var(--red);
  font-size: 0.75rem;
}
.c-body {
  padding: 0.6rem 0.75rem 0.75rem;
}
.stat-row {
  display: flex;
  gap: 0.9rem;
  font-size: 0.73rem;
  color: #555;
  margin-bottom: 0.45rem;
}
.stat-row span {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.stat-row .bi-instagram {
  color: #e1306c;
}
.stat-row .bi-youtube {
  color: #f00;
}
.tag {
  background: #f0f0f0;
  color: #555;
  font-size: 0.68rem;
  padding: 0.15rem 0.5rem;
  border-radius: 40px;
}
.view-link {
  font-size: 0.76rem;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}
.view-link:hover {
  text-decoration: underline;
}

.creator-card {
  background: #050505;
  border: 1px solid #1e1e1e;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.creator-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 20;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
}

.creator-hero {
  position: relative;
  height: 300px;
}

.creator-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    #050505 5%,
    rgba(0, 0, 0, 0.7) 35%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.creator-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.creator-overlay h2 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 10px;
}

.verified {
  color: #fff;
  font-size: 14px;
}

.creator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.creator-tags span {
  background: #181818;
  border: 1px solid #2a2a2a;
  font-size: 11px;
  padding: 5px 10px;
}

.creator-overlay p {
  font-size: 13px;
  color: #cfcfcf;
  line-height: 1.7;
  margin: 0;
}

.creator-body {
  padding: 20px;
}

.section-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}

.creator-table {
  color: #fff;
  margin-bottom: 25px;
}

.creator-table th {
  color: #8d8d8d;
  font-size: 12px;
  border-color: #222;
}

.creator-table td {
  border-color: #222;
  font-size: 13px;
}

.instagram {
  color: #ff3b7f;
  margin-right: 8px;
}

.youtube {
  color: red;
  margin-right: 8px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 25px;
  color: #d4d4d4;
  font-size: 15px;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.sample-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

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

.sample-card span {
  position: absolute;
  left: 8px;
  bottom: 8px;
  font-size: 12px;
  color: #fff;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d61d2b;
  text-decoration: none;
  font-size: 14px;
  margin-top: 18px;
}

.work-title {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 400;
}

.inquire-btn {
  width: 100%;
  background: #a30f1a;
  border: none;
  color: #fff;
  padding: 14px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.inquire-btn:hover {
  background-color: white;
  color: red;
  transition: background-color 0.9s ease;
}

@media (max-width: 576px) {
  .creator-overlay h2 {
    font-size: 28px;
  }

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

  .creator-hero {
    height: 250px;
  }
}

.creator-table {
  background: #000 !important;
  color: #fff !important;
  margin-bottom: 25px;
}

.creator-table thead,
.creator-table tbody,
.creator-table tr,
.creator-table th,
.creator-table td {
  background: #000 !important;
  color: #fff !important;
  border-color: #222 !important;
}

.creator-table th {
  color: #9a9a9a !important;
  font-size: 12px;
  font-weight: 500;
}

.creator-table td {
  font-size: 13px;
}

.creator-table > :not(caption) > * > * {
  background: #000 !important;
  box-shadow: none !important;
}

/* ─── LOAD MORE ─── */
.btn-load {
  border: 1.5px solid #333;
  background: #fff;
  color: #333;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.65rem 2rem;
  border-radius: 5px;
  letter-spacing: 0.04em;
  transition: all 0.18s;
}
.btn-load:hover {
  background: #333;
  color: #fff;
}

.cta-band {
  padding: 4.5rem 0;
  background-color: #ffe9c8;
}
.cta-h {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
}
.cta-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.look-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: #444;
  margin-bottom: 0.55rem;
}
.look-icon {
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.cta-img-col {
  background: linear-gradient(170deg, #2a1a2a, #6a3a5a);
  border-radius: 10px;
  min-height: 200px;
}

/* ===== CURSOR TRAIL ===== */
.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.trail-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #c81e4a; /* Matches your red accent */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(200, 30, 74, 0.6);
  opacity: 0.85;
  transition: transform 0.1s ease-out;
}

/* Optional: Make trail more visible on hover over CTA section */
.cta-band:hover ~ .cursor-trail .trail-dot {
  background: #9c2542;
  box-shadow: 0 0 15px rgba(156, 37, 66, 0.8);
}

/* Premium Hero Image Hover Effect */
.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-wrapper:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.hero-img {
  width: 100%;

  object-fit: cover;
  height: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-wrapper {
  height: 280px;
}

@media (max-width: 992px) {
  .hero-image-wrapper {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .hero-image-wrapper {
    height: 180px;
  }
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.08); /* Smooth zoom */
}

/* Elegant Overlay */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(200, 30, 74, 0.15),
    rgba(140, 20, 60, 0.25)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.hero-image-wrapper:hover .image-overlay {
  opacity: 1;
}

/* Optional Shine Effect */
.hero-image-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-25deg);
  transition: all 0.7s ease;
  opacity: 0;
  z-index: 2;
}

.hero-image-wrapper:hover::before {
  left: 120%;
  opacity: 1;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: #888;
  padding: 3rem 0 1.5rem;
}
.foot-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  color: var(--red);
  font-weight: 700;
}
.foot-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #555;
}
.foot-social a {
  color: #666;
  font-size: 1.05rem;
  margin-right: 0.75rem;
  text-decoration: none;
  transition: color 0.18s;
}
.foot-social a:hover {
  color: #fff;
}
.foot-head {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot-links li {
  margin-bottom: 0.4rem;
}
.foot-links a {
  color: #666;
  font-size: 0.8rem;
  text-decoration: none;
}
.foot-links a:hover {
  color: #fff;
}
.foot-divide {
  border-top: 1px solid #222;
  margin: 1.5rem 0 1rem;
}
.foot-bottom {
  font-size: 0.73rem;
  color: #444;
}
.foot-bottom a {
  color: #444;
  text-decoration: none;
}
.foot-bottom a:hover {
  color: #888;
}

.copyright-text {
  position: relative;
  color: #b0b0b0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.foot-social {
  display: flex;
  gap: 15px;
}

.foot-social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  text-decoration: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}

.foot-social a:hover {
  transform: translateY(-5px) scale(1.12);
  background: #ffffff;
  color: #000000;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.foot-social a i {
  transition: transform 0.35s ease;
}

.foot-social a:hover i {
  transform: rotate(360deg);
}
