:root {
  --bs-primary: #703081;
  --bs-secondary: #E1007E;
  --bs-primary-rgb: 112, 48, 129;
  --bs-secondary-rgb: 225, 0, 126;
  --bs-body-bg: #000;
  --bs-body-color: #fff;
  --bs-link-color: #E1007E;
  --bs-link-color-rgb: 225, 0, 126;
  --bs-link-hover-color: #EF7D31;
  --bs-link-hover-color-rgb: 239, 125, 49;
  --bs-body-font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  --bs-warning: #EF7D31;
  --bs-warning-rgb: 239, 125, 49;
}

/* Global transition */
a {
  transition: all 0.5s ease;
  text-decoration: none;
}

/* Button icon slide on hover */
.btn svg {
  transition: transform 0.3s ease;
}
.btn:hover svg {
  transform: translateX(5px);
}


.font-serif {
  font-family: "Playfair Display", serif;
}

/* Typography scale */
h2, .h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);   /* 28px → 48px */
  font-weight: 700;
}
h3, .h3 {
  font-size: clamp(1.375rem, 3vw, 2.25rem); /* 22px → 36px */
  font-weight: 700;
}

/* Utilities */
.ls-1 { letter-spacing: .1em; }
.ls-4 { letter-spacing: .4em; }
.w-60  { width: 60% !important; }
.fs-7  { font-size: 0.875rem !important; } /* 14px */
.fs-8  { font-size: 0.75rem !important; }  /* 12px */
.text-hover-opacity-100:hover { --bs-text-opacity: 1; }
.text-hover-warning:hover { color: var(--bs-warning) !important; border-color: var(--bs-warning) !important; }
.text-gradient {
  background: linear-gradient(to right, var(--bs-warning), var(--bs-secondary), var(--bs-primary));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

/* Navbar scroll state */
#navbar {
  transition: padding .3s ease, background .3s ease;
}
#navbar.scrolled {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--bs-body-color);
  font-size: 0.875rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--bs-secondary);
}

/* Button overrides */
.btn {
  --bs-btn-padding-x: 1.2rem;
  --bs-btn-padding-y: .5rem;
  --bs-btn-font-size: 0.875rem;
  text-transform: uppercase;
}

.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-warning);
  --bs-btn-hover-border-color: var(--bs-warning);
  --bs-btn-active-bg: var(--bs-warning);
  --bs-btn-active-border-color: var(--bs-warning);
}

.btn-link {
  --bs-link-hover-color: var(--bs-warning);
}

/* Hero */
.hero-section {
  min-height: 100vh;
}

.bg-glow::before,
.bg-glow::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
/* top-right — purple */
.bg-glow::before {
  top: -10%;
  right: -10%;
  background-color: color-mix(in oklab, var(--bs-primary) 20%, transparent);
}
/* bottom-left — pink */
.bg-glow::after {
  bottom: -10%;
  left: -10%;
  background-color: color-mix(in oklab, var(--bs-secondary) 10%, transparent);
}

/* Icon box */
.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}


/* Service list chevron via CSS */
.list-styled {
  list-style: none;
  padding-left: 0;
}
.list-styled li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.list-styled li::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23E1007E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}



.card {
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  transition: border-color .3s, transform .3s;
}

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

/* Progress bar */
.progress {
  height: 4px;
  background: rgba(255, 255, 255, .1);
}

.progress-bar {
  background: var(--bs-secondary);
}

/* Reusable transform transition (apply to any element you want to animate scale/translate on hover) */
.transition-transform {
  transition: transform .3s;
}

/* YouTube thumbnails */
.yt-thumb img {
  height: 220px;
}

.yt-thumb:hover img {
  transform: scale(1.05);
}

.gradient-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 80%);
}

.play-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: var(--bs-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.yt-thumb:hover .play-btn {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Media queries
   ========================================================================== */

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: .75rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
  }
}

@media (min-width: 768px) {
  .btn-lg {
    --bs-btn-padding-x: 2rem;
    --bs-btn-padding-y: 1rem;
    --bs-btn-font-size: 1rem;
    border-radius: .75rem;
  }
}

@media (min-width: 992px) {
  .w-lg-60 { width: 60% !important; }
}
