/* ensure app.css loads after theme.css */

:root {
  --bg: #030202;
  --panel: rgba(255, 255, 255, 0.05);
  --border-faint: rgba(255, 255, 255, 0.08);
  --text-muted: #c5c9d4;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: #f6f6f6;
  font-family: "Montserrat", sans-serif;
}

.navbar-brand {
  letter-spacing: 0.4rem;
  font-size: 0.85rem;
}

.navbar-nav .nav-link {
  letter-spacing: 0.2rem;
  font-size: 0.8rem;
}

/* HERO SECTION FIX */

.hero-section {
  background-color: #6b0000;
  color: #ffffff;
}

.hero-section h1 {
  font-family: "Lora", serif;
  font-size: clamp(2.75rem, 4vw, 4.2rem);
  letter-spacing: 0.02em;
  color: #fff;
}

.hero-section h1, .hero-section h2, .hero-section h3, .hero-section p, .hero-section span {
  color: #ffffff;
}

.hero-section .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.hero-image-wrapper {
  max-width: 360px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 1.5rem;
  background: linear-gradient( 180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01) );
  border: 1px solid var(--border-faint);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-image {
  border-radius: 1.25rem;
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.65);
}

/* FIX Raffy Chan section text */

#raffychan {
  color: var(--bs-body-color);
}

#raffychan h1, #raffychan h2, #raffychan h3 {
  color: var(--bs-body-color);
}

.highlight-grid {
  margin-top: 3.5rem;
}

.stat-card {
  background: var(--panel);
  border-radius: 1.5rem;
  border: 1px solid var(--border-faint);
  padding: 1.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
}

.stat-title {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.65rem;
  color: #aeb2bb;
}

.stat-value {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
}

.stat-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.subheading {
  color: #b7babf;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1rem;
  border: 1px solid var(--border-faint);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer {
  background: transparent;
}

.gallery-card img {
  cursor: pointer;
}

#galleryModal .modal-content {
  background: transparent;
  border: 0;
}

#galleryModal .modal-body {
  padding: 0;
}

#galleryModal .modal-caption {
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
}

#galleryModal .modal-caption h3 {
  font-family: "Lora", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: 0.03em;
}

#galleryModal .modal-caption p {
  font-size: 1rem;
  opacity: 0.8;
}

#galleryModal .modal-caption .category-pill {
  background: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.35em;
  padding: 0.35rem 0.95rem;
}

