/* Sultan Lounge — Home Page Styles */

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 30% 60%, #6e1414, var(--red-deep) 55%),
    radial-gradient(ellipse at 80% 20%, #5a1010, transparent 60%);
  display: flex;
  align-items: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.hero .mandala {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 680px;
  height: 680px;
  opacity: .07;
  animation: spin-hero 80s linear infinite;
  pointer-events: none;
}

@keyframes spin-hero {
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero-content {
  max-width: 660px;
  position: relative;
  z-index: 2;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: 1.04;
  color: var(--off-white);
  margin-bottom: 1.3rem;
}

h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(197, 160, 89, .14);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}

.stat-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: .63rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
  display: block;
}

/* ── Cards Section ── */
.cards-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, var(--red-deep), #3a0a0a 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.link-card {
  background: rgba(110, 20, 20, .25);
  border: 1px solid rgba(197, 160, 89, .16);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: all .3s;
  display: block;
}

.link-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .45);
}

.lc-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(.82) saturate(1.1);
  transition: filter .3s;
}

.link-card:hover .lc-img {
  filter: brightness(.95) saturate(1.2);
}

.lc-body {
  padding: 1.3rem 1.4rem 1.5rem;
}

.lc-icon {
  font-size: 1.5rem;
  margin-bottom: .6rem;
  display: block;
}

.lc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--off-white);
  margin-bottom: .4rem;
}

.lc-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.lc-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lc-cta::after {
  content: '→';
  transition: transform .2s;
}

.link-card:hover .lc-cta::after {
  transform: translateX(4px);
}

/* ── Info Strip ── */
.info-strip {
  background: #3a0a0a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 5%;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .85rem;
  color: var(--text-muted);
}

.strip-item strong {
  color: var(--off-white);
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.strip-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 7rem 4% 4rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .info-strip {
    gap: 2rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
