/* ==========================================================================
   NIYATI KAPADIYA - PREMIUM AUTHOR WEBSITE
   Global Stylesheet (Vanilla CSS + Bootstrap)
   ========================================================================== */

/*
   BOOTSTRAP MIGRATION NOTES
   ==========================
   Replace these Tailwind classes with Bootstrap classes in your HTML:

   DISPLAY & FLEX:
     .flex              → d-flex
     .flex-col          → flex-column
     .items-center      → align-items-center
     .justify-between   → justify-content-between
     .justify-center    → justify-content-center
     .hidden            → d-none
     .block             → d-block
     .inline-block      → d-inline-block
     .lg:flex           → d-none d-lg-flex
     .lg:block          → d-none d-lg-block
     .lg:hidden         → d-lg-none

   GRID:
     .grid              → Use Bootstrap row/col system
     .grid-cols-1       → row > col-12
     .md:grid-cols-2    → row > col-12 col-md-6
     .md:grid-cols-3    → row > col-12 col-md-4
     .lg:grid-cols-3    → row > col-12 col-lg-4
     .lg:grid-cols-4    → row > col-12 col-lg-3
     .lg:grid-cols-5    → row > col-12 col-lg (with 5 cols custom)

   SPACING (Tailwind → Bootstrap):
     .mb-4  (1rem)    → mb-3
     .mb-6  (1.5rem)  → mb-4
     .mb-8  (2rem)    → mb-4 or custom
     .mb-10 (2.5rem)  → custom
     .mb-12 (3rem)    → mb-5
     .mb-16 (4rem)    → custom (see .mb-4-custom below)
     .mb-20 (5rem)    → custom (see .mb-5-custom below)
     .mt-4  (1rem)    → mt-3
     .mt-8  (2rem)    → mt-4
     .mx-auto          → mx-auto
     .py-4  (1rem)    → py-2
     .py-5  (1.25rem) → py-3
     .py-20 (5rem)    → custom (see .py-5-custom below)
     .py-24 (6rem)    → custom (see .py-6-custom below)
     .py-32 (8rem)    → custom (see .py-8-custom below)
     .py-40 (10rem)   → custom (see .py-10-custom below)
     .pt-32 (8rem)    → custom (see .pt-8-custom below)
     .pt-48 (12rem)   → custom (see .pt-12-custom below)
     .p-8   (2rem)    → p-4
     .p-12  (3rem)    → p-5
     .px-8  (2rem)    → px-4
     .py-3  (0.75rem) → py-2
     .gap-4  (1rem)   → gap-2
     .gap-6  (1.5rem) → gap-3
     .gap-8  (2rem)   → gap-4
     .gap-12 (3rem)   → gap-4 or custom
     .gap-16 (4rem)   → custom (see .gap-4-custom below)
     .gap-20 (5rem)   → custom (see .gap-5-custom below)
     .gap-24 (6rem)   → custom (see .gap-6-custom below)

   SIZING:
     .w-full    → w-100
     .h-full    → h-100
     .w-max     → w-auto
     .flex-1    → flex-grow-1 or flex-fill
     .mt-auto   → mt-auto

   POSITION:
     .relative  → position-relative
     .absolute  → position-absolute
     .fixed     → position-fixed
     .inset-0   → top-0 start-0 bottom-0 end-0
     .top-8     → top-2
     .right-8   → end-2
     .z-[100]   → z-3
     .z-[101]   → z-3 (or custom)

   TYPOGRAPHY:
     .text-center  → text-center
     .text-left    → text-start
     .text-right   → text-end
     .uppercase    → text-uppercase
     .italic       → fst-italic
     .font-bold    → fw-bold
     .text-xs      → fs-6 (or small)
     .text-sm      → fs-6 (or small)
     .text-lg      → fs-5
     .text-xl      → fs-4
     .text-2xl     → fs-3
     .text-3xl     → fs-2
     .leading-tight     → lh-1
     .leading-relaxed   → lh-base
     .leading-loose     → lh-lg (or custom .lh-loose below)
     .tracking-widest   → ls-2 (or custom .ls-widest below)

   BORDERS & RADIUS:
     .border        → border
     .border-t      → border-top
     .border-b      → border-bottom
     .rounded-lg    → rounded-3
     .rounded-full  → rounded-pill

   SHADOWS:
     .shadow-lg  → shadow
     .shadow-xl  → shadow-lg
     .shadow-2xl → shadow (or custom .shadow-2xl-custom below)

   EFFECTS:
     .grayscale       → Use custom .grayscale-custom below
     .object-cover    → object-fit-cover
     .aspect-video    → ratio ratio-16x9
     .resize-none     → Use style="resize:none"
     .bg-transparent  → bg-transparent

   TRANSITIONS:
     .transition-all       → transition (with style for duration)
     .transition-transform → transition (with style)
     .transition-colors    → transition (with style)
     .duration-500         → style="transition-duration:500ms"
     .duration-700         → style="transition-duration:700ms"

   HOVER STATES:
     .hover:-translate-y-2  → Add custom CSS below
     .hover:scale-105       → Add custom CSS below
     .hover:grayscale-0     → Add custom CSS below
     .hover:text-nk-gold    → Add custom CSS below

   RESPONSIVE:
     .md:flex-row     → flex-column flex-md-row
     .md:items-center → align-items-start align-items-md-center
     .md:items-end    → align-items-start align-items-md-end
     .md:text-left    → text-center text-md-start
     .md:text-right   → text-center text-md-end
     .md:mx-0         → mx-auto mx-md-0
     .md:mb-0         → mb-4 mb-md-0
     .md:w-1/2        → w-100 w-md-50
     .md:w-1/3        → w-100 w-md-33 (or col-md-4)
     .md:w-2/3        → w-100 w-md-66 (or col-md-8)
     .md:text-3xl     → fs-2 fs-md-2
     .md:text-5xl     → Custom (see below)
     .md:text-7xl     → Custom (see below)
     .md:text-8xl     → Custom (see below)
     .lg:w-1/2        → w-lg-50
     .lg:w-1/3        → w-lg-33 (or col-lg-4)
     .lg:w-2/3        → w-lg-66 (or col-lg-8)
     .lg:w-5/12       → Custom (see .w-lg-5-12 below)
     .lg:w-7/12       → Custom (see .w-lg-7-12 below)
     .lg:p-20         → Custom (see .p-5-custom below)
     .lg:p-24         → Custom (see .p-6-custom below)
     .lg:pt-24        → Custom (see .pt-6-custom below)
     .lg:text-5xl     → Custom (see below)
     .lg:text-7xl     → Custom (see below)
     .lg:text-8xl     → Custom (see below)
     .min-h-screen    → vh-100
     .min-h-[50vh]    → Custom (see .min-h-50vh below)
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&display=swap');

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Kept — Bootstrap doesn't know about these)
   ========================================================================== */
:root {
  /* Core Colors */
  --nk-bg: #FAF7F2;
  --nk-card: #FFFFFF;
  --nk-text: #1A1A1A;
  --nk-muted: #555555;
  --nk-accent: #B78460;
  --nk-gold: #C9A063;
  --nk-border: #EAE2D8;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-subheading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--nk-bg);
  color: var(--nk-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: var(--nk-gold);
  color: white;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
}

/* ==========================================================================
   CUSTOM PROPERTY-BASED UTILITIES
   (Kept because Bootstrap can't reference our CSS variables)
   ========================================================================== */

/* Font Families */
.font-heading {
  font-family: var(--font-heading);
}

.font-subheading {
  font-family: var(--font-subheading);
}

.font-body {
  font-family: var(--font-body);
}

.font-quote {
  font-family: 'Cormorant Garamond', serif;
}

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

/* Custom Colors */
.text-nk-text {
  color: var(--nk-text) !important;
}

.text-nk-muted {
  color: var(--nk-muted) !important;
}

.text-nk-accent {
  color: var(--nk-accent) !important;
}

.text-nk-gold {
  color: var(--nk-gold) !important;
}

.bg-nk-bg {
  background-color: var(--nk-bg) !important;
}

.bg-nk-text {
  background-color: var(--nk-text) !important;
}

/* ==========================================================================
   CUSTOM SPACING (Beyond Bootstrap's scale)
   ========================================================================== */
.mb-5-custom {
  margin-bottom: 2.5rem;
}

.mb-4-custom {
  margin-bottom: 4rem;
}

.mb-5-custom-lg {
  margin-bottom: 5rem;
}

.py-5-custom {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-6-custom {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-8-custom {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.py-10-custom {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.pt-8-custom {
  padding-top: 8rem;
}

.pt-12-custom {
  padding-top: 12rem;
}

.pt-6-custom {
  padding-top: 6rem;
}

.p-5-custom {
  padding: 5rem;
}

.p-6-custom {
  padding: 6rem;
}

/* Custom Gaps */
.gap-3-custom {
  gap: 3rem;
}

.gap-4-custom {
  gap: 4rem;
}

.gap-5-custom {
  gap: 5rem;
}

.gap-6-custom {
  gap: 6rem;
}

/* ==========================================================================
   CUSTOM TYPOGRAPHY SIZES (Beyond Bootstrap's scale)
   ========================================================================== */
.text-hero {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .text-hero {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .text-hero {
    font-size: 8rem;
  }
}

.text-section-title {
  font-size: 2.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .text-section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .text-section-title {
    font-size: 4rem;
  }
}

.text-5xl-custom {
  font-size: 3rem;
  line-height: 1;
}

.text-7xl-custom {
  font-size: 4.5rem;
  line-height: 1;
}

.text-8xl-custom {
  font-size: 6rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .md-text-5xl-custom {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .md-text-7xl-custom {
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }
  .md-text-8xl-custom {
    font-size: 6rem !important;
    line-height: 1 !important;
  }
}

@media (min-width: 1024px) {
  .lg-text-5xl-custom {
    font-size: 3rem !important;
    line-height: 1 !important;
  }
  .lg-text-7xl-custom {
    font-size: 4.5rem !important;
    line-height: 1 !important;
  }
  .lg-text-8xl-custom {
    font-size: 6rem !important;
    line-height: 1 !important;
  }
}

/* Custom Line Height */
.lh-loose {
  line-height: 2;
}

/* Custom Letter Spacing */
.ls-widest {
  letter-spacing: 0.1em;
}

/* Drop Cap */
.drop-cap::first-letter {
  font-size: 4.5rem;
  float: left;
  margin-right: 0.5rem;
  line-height: 0.8;
  font-family: var(--font-heading);
  color: var(--nk-gold);
}

/* ==========================================================================
   CUSTOM WIDTH UTILITIES
   ========================================================================== */
.w-lg-5-12 {
  width: 41.666667%;
}

.w-lg-7-12 {
  width: 58.333333%;
}

.min-h-50vh {
  min-height: 50vh;
}

/* ==========================================================================
   CUSTOM EFFECTS & HOVER STATES
   ========================================================================== */
.grayscale-custom {
  filter: grayscale(100%);
  transition: filter 0.7s ease;
}

.grayscale-custom:hover {
  filter: grayscale(0%);
}

.hover-lift {
  transition: transform 0.5s ease;
}

.hover-lift:hover {
  transform: translateY(-0.5rem);
}

.hover-scale {
  transition: transform 0.5s ease;
}

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

.hover-text-gold {
  transition: color 0.3s ease;
}

.hover-text-gold:hover {
  color: var(--nk-gold) !important;
}

.shadow-2xl-custom {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   INPUT OVERRIDES (Kept — specific to this project)
   ========================================================================== */
input,
textarea {
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  font-family: inherit;
}

.admin-input {
  width: 100%;
  border: 1px solid var(--nk-border);
  background: #fff;
  padding: 1rem;
  color: var(--nk-text);
  border-radius: 2px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  background: var(--nk-bg);
  border: 1px solid var(--nk-border);
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  color: var(--nk-text);
  outline: none;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: var(--nk-gold);
}

/* ==========================================================================
   LENIS SMOOTH SCROLLING
   ========================================================================== */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--nk-bg);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--nk-gold);
  letter-spacing: 0.1em;
  opacity: 0;
}

.preloader-line {
  width: 0;
  height: 2px;
  background: var(--nk-accent);
  margin-top: 1rem;
}

/* ==========================================================================
   MAGNETIC BUTTONS
   ========================================================================== */
.magnetic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 0.75rem 2rem;
  border: 1px solid var(--nk-border);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.magnetic-btn.bg-nk-text {
  background-color: var(--nk-text);
  color: white;
  border-color: var(--nk-text);
}

.magnetic-btn-inner {
  position: relative;
  z-index: 2;
  pointer-events: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.magnetic-btn.bg-nk-text .magnetic-btn-inner {
  color: white;
}

.magnetic-btn-bg {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--nk-gold);
  z-index: 1;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.1, 1, 0.3, 1);
}

.magnetic-btn:hover .magnetic-btn-bg {
  transform: translateY(-100%) scale(1.5);
  border-radius: 0;
}

.magnetic-btn:hover .magnetic-btn-inner {
  color: white;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.global-nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  z-index: 50;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.4s ease, background-color 0.4s ease, border-radius 0.4s ease, width 0.4s ease, top 0.4s ease;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .global-nav {
    padding: 1rem 3rem;
  }
}

.global-nav.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--nk-border);
  border-left: none;
  border-right: none;
  border-top: none;
  transform: translateX(-50%);
}

.global-nav.nav-hidden {
  transform: translate(-50%, -100%);
}

.nav-link {
  position: relative;
  color: var(--nk-text);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--nk-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  gap: 0.375rem;
  z-index: 50;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--nk-text);
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--nk-bg);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile-menu.translate-x-0 {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--nk-text);
  text-decoration: none;
}

.mobile-menu a.contact-link {
  color: var(--nk-accent);
  margin-top: 2rem;
}

/* ==========================================================================
   GLASS CARD COMPONENT
   ========================================================================== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
  margin: 1px;

}

.glass-card:hover {
  transform: translateY(-0.5rem);
}

.glass-card h3 {
  transition: color 0.3s ease;
}

.glass-card:hover h3 {
  color: var(--nk-gold);
}

/* ==========================================================================
   BOOK CARD 3D COMPONENT
   ========================================================================== */
.book-card-3d {
  position: relative;
  height: 500px;
  cursor: pointer;
  perspective: 1000px;
}

.book-card-3d-inner {
  position: absolute;
  inset: 0;
  background: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background-size: cover;
  background-position: center;
}

.book-card-3d:hover .book-card-3d-inner {
  transform: translateY(-1rem) rotateY(12deg);
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.15);
}

.book-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  pointer-events: none;
}

.book-content {
  position: relative;
  z-index: 10;
}

.book-card-3d .read-more {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.book-card-3d:hover .read-more {
  opacity: 1;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--nk-border);
  position: relative;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.hero-bg-zoom {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 6s linear;
  transform: scale(1);
}

.swiper-slide-active .hero-bg-zoom {
  transform: scale(1.15);
}

/* ==========================================================================
   BOOK CARD STANDARD COMPONENT
   ========================================================================== */
.book-card {
  display: block;
  text-decoration: none;
}

.book-image-wrapper {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.book-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.book-card:hover .book-image-wrapper img {
  transform: scale(1.05);
}

.book-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-card:hover .book-image-overlay {
  opacity: 1;
}

/* ==========================================================================
   TIMELINE COMPONENT
   ========================================================================== */
.timeline-container {
  position: relative;
  border-left: 1px solid rgba(201, 160, 99, 0.3);
  padding-left: 2rem;
  margin-left: 1rem;
}

@media (min-width: 768px) {
  .timeline-container {
    padding-left: 4rem;
    margin-left: 0;
  }
}

.timeline-line {
  position: absolute;
  top: 0;
  left: -1px;
  width: 2px;
  background: var(--nk-gold);
  height: 0;
}

.timeline-event {
  margin-bottom: 4rem;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -2.6rem;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--nk-bg);
  border: 2px solid var(--nk-gold);
}

@media (min-width: 768px) {
  .timeline-dot {
    left: -4.6rem;
  }
}

/* ==========================================================================
   FOOTER GRID LAYOUT (Custom — doesn't map cleanly to Bootstrap grid)
   ========================================================================== */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-col-2 {
    grid-column: span 2 / span 2;
  }
}

/* ==========================================================================
   SWIPER OVERRIDES
   ========================================================================== */
.swiper-pagination-bullet-active {
  background: var(--nk-gold) !important;
}

.featuredSwiper .swiper-wrapper,
.videoSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ==========================================================================
   SPACE-Y UTILITY (No Bootstrap equivalent for this specific pattern)
   ========================================================================== */
.space-y-6 > * + * {
  margin-top: 1.5rem;
}