/* =========================================
   15. ABOUT PAGE STYLES
   ========================================= */
/* Background & Particles */
.about-page-wrapper {
  position: relative;
  overflow: hidden;
}
.about-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(217, 156, 46, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.about-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -1;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(217, 156, 46, 0.03) 2px, transparent 4px),
    radial-gradient(circle at 85% 30%, rgba(217, 156, 46, 0.04) 2px, transparent 4px),
    radial-gradient(circle at 50% 80%, rgba(217, 156, 46, 0.02) 2px, transparent 4px);
  background-size: 100% 100%;
  filter: blur(1px);
}

/* Animations */
@keyframes fadeUpLoad {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-load {
  animation: fadeUpLoad 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-delay-1 {
  animation-delay: 0.15s;
}
.animate-delay-2 {
  animation-delay: 0.3s;
}
.cta-icon {
  width: 20px;
  height: 20px;
}

/* Hero */
.about-hero {
  border-bottom: none;
  padding-bottom: 3rem;
  padding-top: 3rem;
  position: relative;
}
.about-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.about-hero-title::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(217, 156, 46, 0.15) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
  filter: blur(20px);
}
.about-hero-subtitle {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 0;
}

/* Content Container */
.about-container {
  max-width: 100%;
  padding: 50px;
  margin-bottom: 80px;
  background: rgba(18, 17, 15, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(61, 50, 29, 0.5);
  border-radius: 16px;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  /* initial state for reveal */
  opacity: 0;
  transform: translateY(30px);
}
.about-container:hover {
  border-color: rgba(217, 156, 46, 0.4);
  box-shadow: 0 0 30px rgba(217, 156, 46, 0.05);
}

/* Typography */
.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 24px;
}
.about-text.mb-35 {
  margin-bottom: 40px;
}
.about-text b {
  color: var(--text);
}

/* Section Reveal Classes (for JS) */
.reveal-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-section.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.about-section-title {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(61, 50, 29, 0.5);
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-section-title svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

/* Features Grid */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.about-feature-item {
  background: rgba(26, 26, 26, 0.6);
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid rgba(61, 50, 29, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  font-weight: 500;
  font-size: 15px;
}
.about-feature-icon {
  color: var(--gold);
}
.about-feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 156, 46, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(217, 156, 46, 0.05);
}

/* Tags Container */
.about-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.about-tag {
  background: rgba(217, 156, 46, 0.15);
  color: var(--gold);
  border: 1px solid rgba(217, 156, 46, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.about-tag:hover {
  transform: scale(1.05);
  background: var(--gold);
  color: #000;
}

.about-text-italic {
  font-size: 16px;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 40px;
  font-style: italic;
}

/* CTA Box */
.about-cta-box {
  text-align: center;
  padding: 40px 30px;
  background: rgba(26, 26, 26, 0.4);
  border-radius: 16px;
  border: 1px solid rgba(61, 50, 29, 0.4);
  margin-top: 20px;
}
.about-cta-title {
  font-size: 24px;
  margin: 0 0 12px;
  font-weight: 700;
}
.about-cta-desc {
  color: #aaa;
  margin: 0 0 24px;
  font-size: 16px;
}
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(217, 156, 46, 0.2);
  border-radius: 8px;
}
.about-cta-btn .cta-arrow {
  transition: transform 0.3s ease;
}
.about-cta-btn:hover {
  box-shadow: 0 6px 20px rgba(217, 156, 46, 0.4);
  filter: brightness(1.1);
}
.about-cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}
.about-cta-btn:active {
  transform: scale(0.97);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-load,
  .reveal-section,
  .about-container,
  .about-feature-item,
  .about-tag,
  .about-cta-btn,
  .about-cta-btn .cta-arrow {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
