/* GLOBAL */
body {
  background: #050505;
  color: white;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

.navbar {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  background: url("DarkPinkandWhiteNeonAnimatedComingSoonVideo-ezgif.com-resize.gif")
    center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "BBH Sans Bogle", sans-serif;
  font-size: 5rem;
}

.hero p {
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

/* LIQUID GLASS BUTTON */
.liquid-glass-btn {
  margin-top: 1.2rem;
  padding: 0.9rem 3.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.1)
  );
  backdrop-filter: blur(14px);
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.liquid-glass-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
}

/* FILTER BAR */
.filter-bar {
  margin-top: -40px;
  display: flex;
  justify-content: center;
}

.filter-shell {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  display: flex;
  gap: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.filter-pill,
.filter-search {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
}

.filter-pill:focus,
.filter-search:focus {
  outline: none;
}

/* RESULTS */
.results-section {
  padding: 6rem 2rem;
}

.results-shell {
  max-width: 1300px;
  margin: auto;
  padding: 2.5rem;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(20px);
}

.results-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.card {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease;
}

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

/* FOOTER MOMENT */
.easter-egg {
  padding: 4rem 2rem 6rem;
  text-align: center;
}

.easter-egg p {
  opacity: 0.7;
  margin-bottom: 1rem;
}

.gif-box {
  max-width: 800px;
  margin: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(255, 0, 255, 0.4);
}

.gif-box img {
  width: 100%;
  display: block;
}
/* ===============================
   MODERN RESULTS CARDS
================================ */

/* Card shell */
.results-section .card {
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.95),
    rgba(10, 10, 10, 0.95)
  );

  border-radius: 14px; /* sharper than before */
  border: 1px solid rgba(255, 255, 255, 0.12);

  overflow: hidden;
  position: relative;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);

  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* Hover lift (controlled, not floaty) */
.results-section .card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
}

/* Card image */
.results-section .card-img-top {
  height: 190px;
  object-fit: cover;

  filter: saturate(1.05) contrast(1.05);
}

/* Body */
.results-section .card-body {
  padding: 1.1rem 1.2rem;
}

/* Title */
.results-section .card-title {
  font-family: "BBH Sans Bogle", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;

  margin-bottom: 0.4rem;
  color: white;
}

/* Description */
.results-section .card-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);

  margin-bottom: 0.6rem;
}

/* Phone / meta text */
.results-section .card-text strong {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.results-section .card-footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding: 0.7rem 1.2rem;
}

/* Promo text */
.results-section .card-footer small {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Website button */
.results-section .card a.btn {
  margin-top: 0.4rem;

  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;

  border-radius: 999px;
  padding: 0.35rem 1.1rem;

  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  transition: background 0.2s ease, color 0.2s ease;
}

.results-section .card a.btn:hover {
  background: white;
  color: black;
}
/* ===============================
   DETAIL CARD (EXPANDED)
================================ */

.detail-page {
  background: #050505;
  min-height: 100vh;
  padding: 6rem 1.5rem;
}

.detail-wrapper {
  display: flex;
  justify-content: center;
}

.detail-card {
  max-width: 900px;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 28px;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25),
    0 40px 90px rgba(0, 0, 0, 0.9);
}

/* IMAGE */
.detail-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* BODY */
.detail-body {
  padding: 3rem;
  color: white;
}

.detail-body h1 {
  font-family: "BBH Sans Bogle", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}

/* DESCRIPTION */
.detail-description {
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

/* META INFO */
.detail-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

/* ACTIONS */
.detail-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.fade-card {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.detail-btn {
  padding: 0.8rem 2.6rem;
  border-radius: 999px;
  background: white;
  color: black;
  text-decoration: none;

  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  transition: transform 0.25s ease;
}

.detail-btn:hover {
  transform: translateY(-2px);
}

.detail-back {
  font-size: 0.85rem;
  opacity: 0.7;
  text-decoration: none;
  color: white;
}

.detail-back:hover {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 700px) {
  .detail-image {
    height: 300px;
  }

  .detail-body {
    padding: 2rem;
  }

  .detail-body h1 {
    font-size: 2.2rem;
  }
}
