/* Moved from index.html */

/* ==========
  hero */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.ring {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.35;
  animation: float 22s linear infinite;
}

.ring.r1 {
  width: 280px;
  height: 280px;
  left: 5%;
  top: 10%;
  box-shadow:
    0 0 0 14px rgba(255,255,255,0.2),
    0 0 60px 32px rgba(255,255,255,0.35);
}

.ring.r2 {
  width: 200px;
  height: 200px;
  left: 45%;
  top: 60%;
  box-shadow:
    0 0 0 12px rgba(255,255,255,0.18),
    0 0 50px 28px rgba(255,255,255,0.3);
  animation-delay: -6s;
}

.ring.r3 {
  width: 160px;
  height: 160px;
  right: 10%;
  top: 20%;
  box-shadow:
    0 0 0 10px rgba(255,255,255,0.16),
    0 0 40px 22px rgba(255,255,255,0.25);
  animation-delay: -12s;
}

@keyframes float {
  0%   { transform: translateY(0px) translateX(0px); }
  50%  { transform: translateY(-40px) translateX(20px); }
  100% { transform: translateY(0px) translateX(0px); }
}

/* ===== IMAGE BLEND FIX ===== */
.hero-img {
  mix-blend-mode: luminosity;
  filter: contrast(1.15) brightness(0.95);
  mask-image: radial-gradient(circle at center, black 70%, transparent 100%);
}

/* ===== PREMIUM BUTTON ===== */
.cta-btn {
  position: relative;
  overflow: hidden;
  background: white;
  color: black;
  transition: color 0.4s ease;
}

.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFBE49;
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  z-index: 0;
}

.cta-btn:hover::before {
  transform: translateX(0);
}

.cta-btn span {
  position: relative;
  z-index: 1;
}

.cta-arrow {
  background: #FFBE49;
  transition: background 0.4s ease;
}

.cta-btn:hover .cta-arrow {
  background: black;
  color: white;
}

/* ===============================
   BASE CARD (BEFORE HOVER)
   =============================== */
.card-base {
  background: #000;
  border-radius: 32px;
  box-shadow:
    /* bottom only */
    0 26px 45px rgba(255, 255, 255, 0.16),

    /* left side */
    -8px 0 22px rgba(255, 255, 255, 0.08),

    /* right side */
    8px 0 22px rgba(255, 255, 255, 0.08),

    /* inner soft edge */
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);

  transition: transform .5s ease, box-shadow .5s ease;
}

.card-base:hover {
  transform: translateY(-14px);
  box-shadow:
    0 45px 95px rgba(0, 0, 0, 0.95),
    0 20px 35px rgba(255, 186, 73, 0.38),
    inset 0 -8px 18px rgba(255, 186, 73, 0.55);
}

.card-shadow {
  background: #000;
  border-radius: 28px;
  box-shadow:
    /* bottom thick */
    0 26px 45px rgba(255, 255, 255, 0.16),

    /* left thin */
    -8px 0 22px rgba(255, 255, 255, 0.08),

    /* right thin */
    8px 0 22px rgba(255, 255, 255, 0.08),

    /* inner edge */
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);

  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* ==============================
   HOVER STATE (2nd IMAGE LOOK)
   ============================== */
.card-shadow:hover {
  transform: translateY(-14px);
  box-shadow:
    /* deeper bottom */
    0 40px 65px rgba(255, 186, 73, 0.35),

    /* side glow */
    -10px 0 24px rgba(255, 186, 73, 0.18),
    10px 0 24px rgba(255, 186, 73, 0.18),

    /* inner bottom glow */
    inset 0 -10px 20px rgba(255, 186, 73, 0.45);
}

/* =========================
   GLASS RING CIRCLES
========================= */
.glass-rings {
  position: absolute;
  border-radius: 50%;
  background: transparent;
  z-index: 0;
  pointer-events: none;
}

/* LEFT — medium ring */
.ring-left-1 {
  width: 200px;
  height: 200px;
  left: 80px;
  top: 300px;

  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.25),  /* ring thickness */
    0 0 40px 20px rgba(255, 255, 255, 0.35); /* blur spread */

  filter: blur(6px);
}

/* LEFT — small ring (chained) */
.ring-left-2 {
  width: 160px;
  height: 160px;
  left: -20px;
  top: 420px;
  opacity: 0.75;

  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.22),
    0 0 36px 18px rgba(255, 255, 255, 0.32);

  filter: blur(6px);
}

/* CENTER — subtle ring */
.ring-center {
  position: absolute;
  width: 260px;
  height: 260px;
  left: 50%;
  top: 250px;
  transform: translateX(-50%);
  opacity: 0.6;

  /* Foggy glass ring */
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.18),   /* ring thickness */
    0 0 48px 26px rgba(255, 255, 255, 0.30); /* soft blur halo */

  filter: blur(7px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* =========================
   ARROW BUTTON
========================= */
.arrow-btns {
  width: 68px;
  height: 68px;
  border-radius: 9999px;
  border: 2px solid white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.arrow-btns:hover {
  background: rgba(255,255,255,0.1);
}

/* Results section zig-zag layout */
.results-grid-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.results-zigzag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 80px;
  max-width: 1200px;
  width: 100%;
}

.results-zigzag-grid .result-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.results-zigzag-grid .result-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.results-zigzag-grid .result-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.results-zigzag-grid .result-item:nth-child(4) {
  grid-column: 1 / span 1;
  grid-row: 2;
  margin-left: calc(50% + 10px);
}

.results-zigzag-grid .result-item:nth-child(5) {
  grid-column: 2 / span 1;
  grid-row: 2;
  margin-left: calc(50% + 10px);
}

.result-item {
  max-width: 280px;
}

@media (max-width: 1024px) {
  .results-zigzag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    max-width: 700px;
  }
  
  .results-zigzag-grid .result-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  
  .results-zigzag-grid .result-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    margin-left: 0;
  }
  
  .results-zigzag-grid .result-item:nth-child(5) {
    grid-column: 1 / span 2;
    grid-row: 3;
    margin-left: 0;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .results-zigzag-grid {
    grid-template-columns: 1fr;
    gap: 50px 0;
    max-width: 320px;
  }
  
  .results-zigzag-grid .result-item {
    grid-column: 1 !important;
    margin-left: 0 !important;
  }
  
  .results-zigzag-grid .result-item:nth-child(1) { grid-row: 1; }
  .results-zigzag-grid .result-item:nth-child(2) { grid-row: 2; }
  .results-zigzag-grid .result-item:nth-child(3) { grid-row: 3; }
  .results-zigzag-grid .result-item:nth-child(4) { grid-row: 4; }
  .results-zigzag-grid .result-item:nth-child(5) { grid-row: 5; }
}

.result-circle {
  background: white;
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.05),
    0 0 40px rgba(255,255,255,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.result-item:hover .result-circle {
  transform: scale(1.12);
  box-shadow:
    0 0 0 8px rgba(255,255,255,0.08),
    0 0 60px rgba(255,255,255,0.5);
}

.glass-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.ring-lg {
  width: 260px;
  height: 260px;
  box-shadow:
    0 0 0 12px rgba(255,255,255,0.18),
    0 0 50px 28px rgba(255,255,255,0.35);
}

.ring-md {
  width: 180px;
  height: 180px;
  box-shadow:
    0 0 0 10px rgba(255,255,255,0.16),
    0 0 42px 22px rgba(255,255,255,0.3);
}

/* ========== REVIEW CARD ========== */
.review-card {
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

/* ========== ARROWS ========== */
.arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.3s ease;
}
.arrow-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* ========== TESTIMONIAL RESPONSIVE ========== */
.testimonial-frame {
  min-height: 400px;
}

.review-card {
  max-height: 80vh;
  overflow-y: auto;
}

/* =============================
   Mobile responsive tweaks
   (keeps UI style, improves fit)
============================= */
@media (max-width: 640px) {
  /* Prevent hero from colliding with navbar on small screens */
  .hero-section { padding-top: 6rem !important; }
  .hero-section .hero-grid { gap: 2rem !important; }

  .ring { filter: blur(4px); }
  .ring.r1 { width: 180px; height: 180px; left: 2%; top: 8%; }
  .ring.r2 { width: 140px; height: 140px; left: 52%; top: 66%; }
  .ring.r3 { width: 120px; height: 120px; right: 4%; top: 16%; }

  .ring-left-1, .ring-left-2 { transform: scale(0.85); }
  .ring-center { width: 220px; height: 220px; top: 220px; }

  .arrow-btns { width: 56px; height: 56px; font-size: 22px; }
  .arrow-btn { width: 36px; height: 36px; font-size: 16px; }

  .cta-btn { padding-left: 1.25rem; padding-right: 1.25rem; }
  
  /* Testimonial mobile adjustments */
  .testimonial-frame {
    min-height: 280px;
  }
  
  .testimonial-arrows {
    top: 0.5rem !important;
    right: 0.5rem !important;
  }
  
  .review-card {
    max-height: 65vh;
    font-size: 0.75rem;
  }
}

/* =============================
   Tablet (md) responsive fixes
   Keep UI style, improve fit
============================= */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Hero layout: make two columns on tablets */
  .hero-section { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .hero-section .hero-grid { grid-template-columns: 1fr 1fr !important; gap: 2.5rem !important; }
  .hero-section .hero-img { max-width: 420px !important; }

  /* Subtle ring size tweaks to avoid overlap */
  .ring { filter: blur(5px); }
  .ring.r1 { width: 220px; height: 220px; left: 6%; top: 12%; }
  .ring.r2 { width: 160px; height: 160px; left: 52%; top: 62%; }
  .ring.r3 { width: 140px; height: 140px; right: 6%; top: 22%; }

  /* Growth pillars: 2 columns on tablets, 3 on large */
  .pillars-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

/* Footer separation shadow */
footer {
  box-shadow:
    -14px -14px 28px rgba(255, 255, 255, 0.08), /* left/top glow */
    0 -10px 24px rgba(255, 255, 255, 0.12);      /* top lift */
}

/* Base body setup for overlays */
body {
  position: relative;
}

/* Subtle side glow for page edges */
body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 140px;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,255,255,0.10), rgba(255,255,255,0));
  z-index: 1;
}

body::before {
  left: 0;
  transform: translateX(-40px);
}

body::after {
  right: 0;
  transform: translateX(40px);
}

/* =============================
   Admin Login Page Styles
============================= */
:root {
  --accent: #FFBE49;
  --bg: #0b0b0b;
  --card: #121212;
  --soft: rgba(255,255,255,0.1);
}

.admin-login-page {
  min-height: 100vh;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(255,255,255,0.06), transparent),
              radial-gradient(900px 500px at 80% 20%, rgba(255,255,255,0.05), transparent),
              linear-gradient(180deg, #000 0%, #0b0b0b 100%);
  color: #fff;
  display: grid;
  place-items: center;
  position: relative;
}

.login-bg-rings .ring { opacity: 0.25; }
.login-container {
  width: 100%;
  max-width: 980px;
  padding: 2rem;
  z-index: 2;
}

.login-card {
  background: var(--card);
  border-radius: 28px;
  box-shadow:
    0 26px 45px rgba(0, 0, 0, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  padding: 2.25rem;
  display: grid;
  gap: 1.75rem;
}

.login-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark { display: flex; align-items: center; gap: 1rem; }
.brand-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #ffd27f);
  color: #111; font-weight: 800; letter-spacing: 0.5px;
  box-shadow: 0 16px 32px rgba(255,190,73,0.35);
}
.brand-title { font-size: 1.5rem; font-weight: 700; }
.brand-sub { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

.error-banner {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255, 95, 95, 0.12);
  border: 1px solid rgba(255, 95, 95, 0.35);
  color: #ff9a9a;
  border-radius: 14px;
  padding: 0.85rem 1rem;
}
.error-dot { width: 10px; height: 10px; border-radius: 9999px; background: #ff6b6b; box-shadow: 0 0 12px rgba(255,95,95,0.6); }

.login-form { display: grid; gap: 1rem; }
.input-group { display: grid; gap: 0.5rem; }
.input-group label { color: rgba(255,255,255,0.85); font-weight: 600; }

.password-wrap { position: relative; }
.password-wrap .show-toggle {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff; width: 36px; height: 36px; border-radius: 10px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  outline: none;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.login-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,190,73,0.22);
}

.form-actions { display: flex; justify-content: flex-end; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ffd27f);
  color: #111; font-weight: 700;
  border: none; border-radius: 14px;
  padding: 0.9rem 1.4rem;
  box-shadow: 0 16px 32px rgba(255,190,73,0.35);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 42px rgba(255,190,73,0.45); }

.login-footer { text-align: center; color: rgba(255,255,255,0.7); }
.hint { font-size: 0.95rem; }

@media (max-width: 640px) {
  .login-card { padding: 1.5rem; }
  .brand-title { font-size: 1.25rem; }
}

/* =============================
   Admin Dashboard Shell
============================= */
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; background: #0b0b0b; color: #fff; }
.admin-sidebar {
  background: linear-gradient(180deg, #0f0f0f 0%, #0b0b0b 100%);
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem; display: grid; gap: 1rem;
}
.admin-brand { display: flex; align-items: center; gap: 0.75rem; font-weight: 700; }
.admin-nav a { display: block; padding: 0.65rem 0.75rem; border-radius: 10px; color: rgba(255,255,255,0.85); text-decoration: none; }
.admin-nav a:hover { background: rgba(255,255,255,0.06); }

.admin-main { display: grid; grid-template-rows: auto 1fr; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); }
.admin-content { padding: 1.25rem; display: grid; gap: 1.25rem; }

.stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.stat-card { background: #121212; border-radius: 16px; padding: 1rem; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06); }
.stat-title { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.stat-value { font-size: 1.6rem; font-weight: 800; letter-spacing: 0.5px; }

@media (max-width: 1024px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
}

/* =============================
   Admin Actions (Blog/Workshop)
============================= */
.action-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem; }
.action-card {
  display: flex; align-items: center; gap: 1rem;
  background: #121212; border-radius: 16px; padding: 1rem 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  text-decoration: none; color: #fff;
  transition: transform .15s ease, box-shadow .25s ease, border-color .25s ease;
  border: 1px solid transparent;
}
.action-card:hover { transform: translateY(-2px); border-color: rgba(255,190,73,0.45); box-shadow: 0 12px 28px rgba(255,190,73,0.15), inset 0 0 0 1px rgba(255,255,255,0.08); }
.action-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), #ffd27f); color: #111; font-size: 28px; }
.action-title { font-weight: 700; font-size: 1.1rem; }
.action-desc { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

@media (max-width: 640px) { .action-grid { grid-template-columns: 1fr; } }

/* =============================
   Standardized Button Styles
============================= */

/* Primary Button - Gold/Yellow Accent */
.btn-primary,
button[type="submit"],
a.btn-primary,
.button-primary {
  position: relative;
  background: #FFBE49;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  outline: none;
}

.btn-primary:hover,
button[type="submit"]:hover,
a.btn-primary:hover,
.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 190, 73, 0.45);
  background: #ffd27f;
}

.btn-primary:active,
button[type="submit"]:active,
a.btn-primary:active,
.button-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 190, 73, 0.35);
}

.btn-primary:disabled,
button[type="submit"]:disabled,
.button-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Secondary Button - White/Ghost */
.btn-secondary,
a.btn-secondary,
.button-secondary {
  position: relative;
  background: transparent;
  color: #fff;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 10px 26px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  outline: none;
}

.btn-secondary:hover,
a.btn-secondary:hover,
.button-secondary:hover {
  border-color: rgba(255, 190, 73, 0.6);
  background: rgba(255, 190, 73, 0.1);
  box-shadow: 0 8px 24px rgba(255, 190, 73, 0.25);
  transform: translateY(-2px);
}

.btn-secondary:active,
a.btn-secondary:active,
.button-secondary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255, 190, 73, 0.15);
}

/* Tertiary Button - Minimal */
.btn-tertiary,
a.btn-tertiary,
.button-tertiary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  outline: none;
}

.btn-tertiary:hover,
a.btn-tertiary:hover,
.button-tertiary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Icon Button */
.btn-icon,
.button-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.btn-icon:hover,
.button-icon:hover {
  background: rgba(255, 190, 73, 0.2);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 190, 73, 0.25);
}

.btn-icon:active,
.button-icon:active {
  transform: scale(0.95);
}

/* CTA Button - Large prominent button */
.btn-cta,
.button-cta {
  position: relative;
  background: linear-gradient(135deg, #FFBE49, #ffd27f);
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 16px 48px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  outline: none;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(255, 190, 73, 0.35);
}

.btn-cta:hover,
.button-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 190, 73, 0.5);
}

.btn-cta:active,
.button-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 190, 73, 0.35);
}

/* Link Button - Text only */
.btn-link,
a.btn-link {
  background: none;
  color: #FFBE49;
  font-weight: 600;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  transition: all 0.2s ease;
  display: inline;
}

.btn-link:hover,
a.btn-link:hover {
  color: #ffd27f;
}

/* Loading state for all buttons */
button:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-tertiary:disabled,
.btn-cta:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Ensure consistency with Tailwind buttons */
.inline-flex.items-center.gap-4 button,
.inline-flex.items-center.gap-3 button {
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.inline-flex.items-center.gap-4 button:hover,
.inline-flex.items-center.gap-3 button:hover {
  transform: translateY(-2px);
}

/* Smooth transitions for all interactive elements */
button, a[href], input[type="button"], input[type="submit"] {
  transition: all 0.25s ease;
}

/* =============================
   Loading Animation / Splash Screen
============================= */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #000 0%, #0b0b0b 50%, #000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
}

/* Loader Logo Container */
.loader-logo-container {
  position: relative;
  margin-bottom: 10px;
  animation: logoFloatLoad 2s ease-in-out infinite;
}

/* Loader Logo Styling */
.loader-logo {
  width: 100px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 190, 73, 0.4));
  animation: logoFadeIn 0.6s ease-out;
}

@keyframes logoFloatLoad {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Ensure loader is above all content except mobile menu */
#page-loader {
  z-index: 9999 !important;
}

/* Enhanced Loader Spinner */
.loader-spinner {
  position: relative;
  width: 100px;
  height: 100px;
}

/* Outer rotating ring */
.loader-spinner::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: spin 3s linear infinite;
}

/* Inner rotating border with accent */
.loader-spinner::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 3px solid transparent;
  border-top-color: #FFBE49;
  border-right-color: #FFBE49;
  border-radius: 50%;
  animation: spin-reverse 1.2s linear infinite;
  box-shadow: 0 0 20px rgba(255, 190, 73, 0.6);
}

/* Middle decorative ring */
.loader-spinner {
  box-shadow: 
    inset 0 0 0 2px rgba(255, 190, 73, 0.2),
    0 0 40px rgba(255, 190, 73, 0.25);
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: inset 0 0 0 2px rgba(255, 190, 73, 0.2), 0 0 40px rgba(255, 190, 73, 0.25); }
  50% { box-shadow: inset 0 0 0 2px rgba(255, 190, 73, 0.4), 0 0 60px rgba(255, 190, 73, 0.4); }
}

/* Enhanced Loader Text */
.loader-text {
  position: relative;
  color: #FFBE49;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fade-pulse 1.5s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(255, 190, 73, 0.5);
}

/* Dot animation for loading text */
.loader-text::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #FFBE49;
  border-radius: 50%;
  left: 120%;
  top: 50%;
  transform: translateY(-50%);
  animation: dot-bounce 1.5s ease-in-out infinite;
  box-shadow: 
    6px 0 0 -2px #FFBE49,
    12px 0 0 -4px #FFBE49;
}

@keyframes fade-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes dot-bounce {
  0%, 100% { transform: translateY(-50%) scale(0.8); }
  50% { transform: translateY(-50%) scale(1.2); }
}

/* Background animation for loader */
#page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 190, 73, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 190, 73, 0.05) 0%, transparent 50%);
  animation: shift 6s ease-in-out infinite;
  z-index: -1;
}

@keyframes shift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
}

/* Loader overlay improvements */
#page-loader {
  backdrop-filter: blur(2px);
}

/* Keep drawer hidden until opened */
#mobile-menu {
  display: none;
}

body.menu-open #mobile-menu {
  display: flex;
}

/* Keep drawer fully hidden when in closed state */
#mobile-menu.pointer-events-none {
  visibility: hidden;
}

/* Hide the mobile drawer on tablet/desktop viewports */
@media (min-width: 768px) {
  #mobile-menu {
    display: none !important;
  }
}

/* Loading text with progress indicator */
.loader-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive loader sizing */
@media (max-width: 640px) {
  .loader-logo {
    width: 80px;
    height: 100px;
  }
  
  .loader-spinner {
    width: 70px;
    height: 70px;
  }
  
  .loader-text {
    font-size: 13px;
    letter-spacing: 2px;
  }
}

/* =============================
   Global Font Family Setup
============================= */
html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
}

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

.sans-font {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
}
