/* ============================================================
   Hotel Avanya Crestview — Custom CSS Design System
   ============================================================ */

/* ── Prevent Alpine Cloak Flashing ────────────────────────── */
[x-cloak] {
  display: none !important;
}

/* ── Scrollbar Styling ────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
  background: #c9a96e;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e8d5b7;
}

/* ── Selection ────────────────────────────────────────────── */
::selection {
  background: rgba(201, 169, 110, 0.3);
  color: #e8d5b7;
}

/* ── Base Typography ──────────────────────────────────────── */
html,
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0a0a0f;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  /* hard clamp — nothing can exceed viewport width */
}

/* ── Fixed header: solid-dark by default (no JS dependency) ─── */
#navbar {
  max-width: 100vw;
  box-sizing: border-box;
  /* Solid scrolled state is the CSS default — renders before Alpine loads */
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

/* ── Navigation ───────────────────────────────────────────── */
/* Applied by Alpine only at scroll-top (higher specificity overrides default) */
#navbar.navbar-transparent {
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.6) 0%, transparent 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom-color: transparent;
}

/* .navbar-scrolled — kept for Alpine binding; styles live on #navbar default */
.navbar-scrolled {
  /* intentional no-op: #navbar already carries these styles */
}

/* ── Base Typography ──────────────────────────────────────── */
h1,
h2,
h3,
h4,
.font-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ── Utility: Text Gradient ───────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, #e8d5b7 0%, #c9a96e 50%, #a07840 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Typewriter Animation ─────────────────────────────────── */
.typewriter-heading {
  overflow: hidden;
  white-space: normal;        /* allow wrapping on mobile */
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Trigger the type-in only when AOS has made the element visible */
.typewriter-heading.aos-animate {
  animation: typeIn 3.2s steps(40, end) both;
}

/* Blinking cursor via ::after */
.typewriter-heading::after {
  content: '|';
  color: #c9a96e;
  font-weight: 300;
  margin-left: 3px;
  opacity: 0;
  animation: none;
}

.typewriter-heading.aos-animate::after {
  opacity: 1;
  animation:
    cursorBlink 0.7s step-end 5,          /* blink while typing */
    cursorFade  0.4s ease 3.5s forwards;  /* fade out after done */
}

@keyframes typeIn {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0);   }
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes cursorFade {
  to { opacity: 0; }
}

.nav-link {
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a96e;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0a0a0f;
  background: linear-gradient(135deg, #e8d5b7 0%, #c9a96e 60%, #a07840 100%);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-gold:hover::before {
  transform: translateX(100%);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a96e;
  background: transparent;
  border: 1px solid #c9a96e;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold-outline:hover {
  background: #c9a96e;
  color: #0a0a0f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
}

/* ── Preloader ────────────────────────────────────────────── */
.preloader-ring {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(201, 169, 110, 0.15);
  border-top-color: #c9a96e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Mobile: stack title above booking form ─────────────────────────────── */
@media (max-width: 767px) {
  .hero {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    /* clear fixed navbar */
  }

  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 24px;
  }

  .hero-booking-widget {
    position: relative !important;
    width: 100%;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    padding-bottom: 32px;
  }
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 18s infinite;
  transform: scale(1.05);
  transition: transform 18s ease;
}

.hero-bg-item.active {
  transform: scale(1.0);
}

.hero-bg-item:nth-child(1) {
  animation-delay: 0s;
}

.hero-bg-item:nth-child(2) {
  animation-delay: 6s;
}

.hero-bg-item:nth-child(3) {
  animation-delay: 12s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  35% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 15, 0.5) 0%,
      rgba(10, 10, 15, 0.3) 40%,
      rgba(10, 10, 15, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
  animation: heroSlideUp 1s ease 0.3s both;
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c9a96e;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: #c9a96e;
  opacity: 0.6;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-title strong {
  display: block;
  font-weight: 700;
  color: #e8d5b7;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232, 213, 183, 0.7);
  margin: 20px 0 40px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ── Section Common ─────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  color: #c9a96e;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #f5f0e8;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, #c9a96e, transparent);
  margin: 16px 0 24px;
}

.section-divider.centered {
  margin: 16px auto 24px;
}

/* ── Features Strip ─────────────────────────────────────── */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(201, 169, 110, 0.15);
  transition: background 0.3s;
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: rgba(201, 169, 110, 0.05);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  font-size: 1.25rem;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.feature-item:hover .feature-icon {
  background: rgba(201, 169, 110, 0.1);
  border-color: #c9a96e;
}

/* ── Room Cards ─────────────────────────────────────────── */
.room-card {
  background: #14141e;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 169, 110, 0.1);
}

.room-image-wrap {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.room-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-image-wrap img {
  transform: scale(1.08);
}

.room-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.room-card:hover .room-image-overlay {
  opacity: 1;
}

.room-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #c9a96e;
  line-height: 1;
}

.room-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(201, 169, 110, 0.6);
  font-weight: 400;
  margin-left: 4px;
}

/* ── Gallery Grid ────────────────────────────────────────── */
.gallery-grid {
  columns: 1;
  gap: 12px;
}

@media (min-width: 640px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    columns: 3;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  display: block;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ── Testimonial Carousel ────────────────────────────────── */
.testimonial-card {
  background: #14141e;
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 4px;
  padding: 40px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: rgba(201, 169, 110, 0.1);
  position: absolute;
  top: -20px;
  left: 24px;
  line-height: 1;
  pointer-events: none;
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 10s ease;
}

.page-hero-bg:hover {
  transform: scale(1.0);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.4) 60%, rgba(10, 10, 15, 0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 48px;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.6);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(201, 169, 110, 0.6);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #c9a96e;
}

.breadcrumb-sep {
  color: rgba(201, 169, 110, 0.3);
}

/* ── Amenity Cards ───────────────────────────────────────── */
.amenity-card {
  background: #14141e;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.amenity-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-4px);
  background: rgba(201, 169, 110, 0.05);
}

.amenity-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.amenity-card:hover .amenity-icon {
  background: rgba(201, 169, 110, 0.1);
  border-color: #c9a96e;
}

/* ── Stat Cards ──────────────────────────────────────────── */
.stat-card {
  text-align: center;
  padding: 32px;
  border-right: 1px solid rgba(201, 169, 110, 0.15);
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #c9a96e;
  line-height: 1;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #e8d5b7;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.footer-link {
  color: #9a8a78;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}

.footer-link:hover {
  color: #c9a96e;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a8a78;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #0a0a0f;
  transform: translateY(-2px);
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9a8a78;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-input {
  width: 100%;
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 3px;
  padding: 12px 16px;
  color: #f0ece4;
  font-size: 0.85rem;
  transition: all 0.3s;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.form-input:focus {
  border-color: #c9a96e;
  background: rgba(201, 169, 110, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-input::placeholder {
  color: rgba(154, 138, 120, 0.5);
}

select.form-input option {
  background: #14141e;
  color: #f0ece4;
}

/* ── Alert / Message ─────────────────────────────────────── */
.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
  padding: 14px 20px;
  border-radius: 3px;
  font-size: 0.85rem;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 14px 20px;
  border-radius: 3px;
  font-size: 0.85rem;
}

/* ── Image Slider ────────────────────────────────────────── */
.slider-wrap {
  position: relative;
  overflow: hidden;
  background: #0a0a0f;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-slide {
  min-width: 100%;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  color: #c9a96e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.slider-btn:hover {
  background: #c9a96e;
  color: #0a0a0f;
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: #c9a96e;
  width: 20px;
  border-radius: 3px;
}

/* ── Room Tag Pills ─────────────────────────────────────── */
.room-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: #9a8a78;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ── Admin Panel ─────────────────────────────────────────── */
.admin-sidebar {
  background: #111118;
  border-right: 1px solid rgba(201, 169, 110, 0.1);
  width: 260px;
  min-height: 100vh;
  flex-shrink: 0;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 0.82rem;
  color: #9a8a78;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  text-decoration: none;
}

.admin-nav-link:hover,
.admin-nav-link.active {
  color: #c9a96e;
  background: rgba(201, 169, 110, 0.06);
  border-left-color: #c9a96e;
}

.admin-stat-card {
  background: #14141e;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 4px;
  padding: 24px;
  transition: border-color 0.3s;
}

.admin-stat-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
}

/* ── Contact Info Card ───────────────────────────────────── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── AOS Custom ──────────────────────────────────────────── */
[data-aos] {
  will-change: transform, opacity;
}

/* ── Responsive helpers ──────────────────────────────────── */
@media (max-width: 768px) {
  .page-hero-content {
    padding: 32px 20px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  }

  .feature-item:last-child {
    border-bottom: none;
  }
}

/* ── Gold Divider Line ───────────────────────────────────── */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  margin: 4px 0;
}

/* ── Animate Counters ────────────────────────────────────── */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.count-animated {
  animation: countUp 0.6s ease both;
}

/* ── Filter Tab Buttons ──────────────────────────────────── */
.filter-tab {
  padding: 8px 20px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 2px;
  color: #9a8a78;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-tab:hover,
.filter-tab.active {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #0a0a0f;
}