/* ================================
   HOME PAGE - DARK LUXURY THEME
================================ */

/* Page Background */
.home-page {
  background: var(--dark-bg);
  position: relative;
}

/* Animated Background Effect */
.home-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ================================
   HERO SLIDER - DARK THEME
================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 900px;
  z-index: 2;
}

.slide-subtitle {
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.slide-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.slide-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  color: var(--dark-bg);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

.slide-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.indicator.active {
  background: var(--primary-gold);
  width: 40px;
  border-radius: 6px;
}

.indicator:hover {
  background: rgba(212, 175, 55, 0.5);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 10;
  pointer-events: none;
}

.slider-nav-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: var(--text-white);
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.4s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav-btn:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--dark-bg);
  transform: scale(1.1);
}

/* ================================
   ABOUT SHOWCASE - DARK THEME
================================ */
.about-showcase {
  padding: 10rem 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
  position: relative;
  z-index: 1;
}

.about-showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-showcase-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-showcase-text .lead-text {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-showcase-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.learn-more-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-top: 1rem;
  transition: all 0.4s ease;
}

.learn-more-btn:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.about-showcase-image .image-wrapper {
  position: relative;
}

.image-placeholder-large {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-placeholder-large > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-placeholder-large .image-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

/* ================================
   STATS SECTION - DARK THEME
================================ */
.stats-section {
  padding: 6rem 0;
  background: var(--dark-bg);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ================================
   CATEGORIES PREVIEW - DARK THEME
================================ */
.categories-preview {
  padding: 10rem 0;
  background: linear-gradient(180deg, var(--dark-bg-light) 0%, var(--dark-bg) 100%);
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.categories-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-preview-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.category-preview-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.category-preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.category-preview-card:hover .category-preview-image {
  transform: scale(1.1);
}

.category-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 10, 10, 0.7) 60%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.category-preview-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  z-index: 2;
}

.category-preview-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.category-preview-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ================================
   CTA SECTION - DARK THEME
================================ */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--dark-bg-light) 0%, var(--dark-bg) 100%);
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-gold);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  color: var(--dark-bg);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .about-showcase-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 600px;
  }

  .slider-nav {
    display: none;
  }

  .about-showcase {
    padding: 6rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .categories-preview-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    min-height: 560px;
  }

  .slide-content {
    width: calc(100% - 2.2rem);
  }

  .slide-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    margin-bottom: 1rem;
  }

  .slide-description {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  .slide-button {
    width: 100%;
    max-width: 360px;
    padding: 1rem 1.4rem;
  }

  .slider-indicators {
    bottom: 1.6rem;
  }

  .about-showcase {
    padding: 5rem 0;
  }

  .about-showcase-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }

  .category-preview-content {
    padding: 2rem 1.6rem;
  }

  .cta-section {
    padding: 6rem 0;
  }

  .cta-button {
    width: 100%;
    max-width: 360px;
    padding: 1rem 1.4rem;
  }
}
