/* ===================================================
   Love & War Reviews — Design System
   Premium Dark Theme + Gold Accents
   =================================================== */

/* --- CSS Custom Properties --- */
:root {
  --dark-900: #0a0a0a;
  --dark-800: #111111;
  --dark-700: #1a1a1a;
  --dark-600: #1e1e1e;
  --dark-500: #252525;
  --dark-400: #2a2a2a;
  --dark-300: #333333;
  --gold-600: #b8922e;
  --gold-500: #d4a853;
  --gold-400: #e8c36a;
  --gold-300: #f0d78c;
  --gold-200: #f5e4aa;
  --accent-red: #c0392b;
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted: #6b6b6b;
  --glass-bg: rgba(26, 26, 26, 0.7);
  --glass-border: rgba(212, 168, 83, 0.15);
  --gold-glow: 0 0 20px rgba(212, 168, 83, 0.3);
  --gold-glow-strong: 0 0 40px rgba(212, 168, 83, 0.5);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-900);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--gold-500);
  color: var(--dark-900);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-800);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

.font-oswald {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Gold Gradient Text --- */
.gold-text {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-text-animated {
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500), var(--gold-300), var(--gold-500));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s ease-in-out infinite;
}

@keyframes goldShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- Gold Divider --- */
.gold-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  border: none;
  margin: 2rem 0;
}

.gold-divider-left {
  height: 3px;
  width: 80px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  border: none;
  margin: 1rem 0;
}

.gold-divider-center {
  height: 3px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  border: none;
  margin: 1rem auto;
}

/* --- Glass Morphism --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(212, 168, 83, 0.35);
  box-shadow: var(--gold-glow);
  transform: translateY(-4px);
}

/* --- Premium Cards --- */
.premium-card {
  background: linear-gradient(145deg, var(--dark-600), var(--dark-700));
  border: 1px solid var(--dark-400);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-600));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-card:hover {
  border-color: var(--gold-600);
  box-shadow: var(--card-shadow), var(--gold-glow);
  transform: translateY(-6px);
}

.premium-card:hover::before {
  opacity: 1;
}

/* --- Cinematic Hero --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.6) 40%,
    rgba(10, 10, 10, 0.85) 70%,
    rgba(10, 10, 10, 1) 100%
  );
  z-index: 1;
}

.hero-overlay-gold {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 83, 0.05) 0%,
    transparent 50%,
    rgba(212, 168, 83, 0.03) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* --- Hero Swiper Slider --- */
#hero {
  height: 550px;
  margin-top: 80px;
}

.hero-slider-swiper {
  width: 100%;
  height: 550px;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 40%,
    rgba(10, 10, 10, 0.85) 70%,
    rgba(10, 10, 10, 1) 100%
  );
  z-index: 1;
}

.hero-slide-gold-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 83, 0.06) 0%,
    transparent 50%,
    rgba(212, 168, 83, 0.04) 100%
  );
  z-index: 2;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
}


/* Page hero (sub-pages) */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: linear-gradient(
    135deg,
    var(--dark-900) 0%,
    var(--dark-800) 30%,
    var(--dark-700) 60%,
    var(--dark-800) 100%
  );
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--dark-900));
  pointer-events: none;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: var(--dark-900);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.nav-link {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-400);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  color: var(--gold-500);
  background: rgba(212, 168, 83, 0.05);
  padding-left: 1.8rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  border-left: 1px solid var(--glass-border);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  display: block;
  padding: 0.9rem 0;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--gold-500);
  padding-left: 0.5rem;
}

.mobile-dropdown-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-dropdown-title:hover {
  color: var(--gold-500);
}

.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 1rem;
}

.mobile-dropdown-content.active {
  max-height: 500px;
}

.mobile-dropdown-content a {
  display: block;
  padding: 0.6rem 0;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.mobile-dropdown-content a:hover {
  color: var(--gold-500);
  padding-left: 0.5rem;
}

/* --- Buttons --- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--dark-900);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow-strong);
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--gold-500);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid var(--gold-500);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.02em;
}

.btn-outline:hover {
  background: var(--gold-500);
  color: var(--dark-900);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

/* --- Section Styles --- */
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.8;
}

.section-pattern {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(212, 168, 83, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

/* --- Magazine Grid --- */
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.magazine-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

/* --- Card Image Overlay --- */
.card-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.card-image-wrapper img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.premium-card:hover .card-image-wrapper img {
  transform: scale(1.08);
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.8) 100%);
}

.card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(212, 168, 83, 0.9);
  color: var(--dark-900);
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  font-weight: 600;
  z-index: 2;
}

/* --- FAQ Accordion --- */
.faq-item {
  background: var(--dark-700);
  border: 1px solid var(--dark-400);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--gold-600);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold-500);
}

.faq-question i {
  color: var(--gold-500);
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), var(--gold-600), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--gold-500);
  border-radius: 50%;
  border: 3px solid var(--dark-900);
  box-shadow: 0 0 0 3px var(--gold-600);
}

.timeline-date {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* --- Stats Counter --- */
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* --- Form Styles --- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--dark-700);
  border: 1px solid var(--dark-400);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--accent-red);
}

.form-error {
  font-size: 0.8rem;
  color: var(--accent-red);
  margin-top: 0.3rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- Newsletter --- */
.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--dark-700);
  border: 1px solid var(--dark-400);
  border-radius: 50px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--gold-500);
}

/* --- Footer --- */
.footer {
  background: linear-gradient(180deg, var(--dark-900), #050505);
  border-top: 1px solid var(--dark-400);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold-500);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--dark-900);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  z-index: 900;
  font-size: 1.1rem;
  box-shadow: var(--gold-glow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--gold-glow-strong);
}

/* --- Loading Screen --- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--dark-500);
  border-top-color: var(--gold-500);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Swiper Customization --- */
.swiper-button-next,
.swiper-button-prev {
  color: var(--gold-500) !important;
  background: rgba(10, 10, 10, 0.7);
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem !important;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--gold-500);
  color: var(--dark-900) !important;
  border-color: var(--gold-500);
}

.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 0.5 !important;
  width: 10px !important;
  height: 10px !important;
  transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold-500) !important;
  opacity: 1 !important;
  width: 30px !important;
  border-radius: 5px !important;
}

/* --- LightGallery Overrides --- */
.lg-backdrop {
  background-color: rgba(10, 10, 10, 0.95) !important;
}

.lg-toolbar,
.lg-actions .lg-next,
.lg-actions .lg-prev {
  background-color: rgba(10, 10, 10, 0.6) !important;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--gold-500);
}

.breadcrumb .separator {
  color: var(--gold-600);
}

/* --- Tag Badges --- */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  background: rgba(212, 168, 83, 0.1);
  color: var(--gold-500);
  border: 1px solid rgba(212, 168, 83, 0.2);
}

/* --- Article Styles --- */
.article-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.article-content h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
}

.article-content h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin: 2rem 0 0.75rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content blockquote {
  border-left: 3px solid var(--gold-500);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--dark-700);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-primary);
}

/* --- Gallery Masonry --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--gold-500);
}

/* --- Floating Particles (decorative) --- */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-500);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25% { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
  50% { transform: translateY(-15px) translateX(-10px); opacity: 0.4; }
  75% { transform: translateY(-40px) translateX(5px); opacity: 0.5; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .magazine-featured {
    grid-template-columns: 1fr;
  }
  
  .magazine-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .hero-section {
    min-height: 90vh;
  }
  
  .page-hero {
    padding: 8rem 0 3rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .magazine-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 85vh;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .btn-gold, .btn-outline {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* --- Utility Animations --- */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Image placeholder shimmer --- */
.img-placeholder {
  background: linear-gradient(90deg, var(--dark-600) 25%, var(--dark-500) 50%, var(--dark-600) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --- Video Play Button --- */
.video-play-btn {
  width: 70px;
  height: 70px;
  background: rgba(212, 168, 83, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-900);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4);
  animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(212, 168, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0); }
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: var(--gold-500);
}

/* --- Filter Buttons --- */
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--dark-400);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--dark-900);
  background: var(--gold-500);
  border-color: var(--gold-500);
}

/* --- Quote block --- */
.quote-block {
  position: relative;
  padding: 2rem 2.5rem;
  background: var(--dark-700);
  border-radius: 16px;
  border-left: 4px solid var(--gold-500);
}

.quote-block::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold-500);
  opacity: 0.3;
  line-height: 1;
}

/* --- Notification Toast --- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 2rem;
  background: var(--dark-600);
  border: 1px solid var(--gold-600);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.9rem;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: var(--gold-glow);
}

.toast.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
