/* Real Vida - Media Website */
/* Color Scheme: Black, Gold, White */

:root {
  --gold: #C5A028;
  --gold-light: #E8C96A;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --white: #FFFFFF;
  --white-muted: #B0B0B0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(197, 160, 40, 0.2);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(
    90deg,
    #B8860B 0%,
    #DAA520 20%,
    #FFD700 40%,
    #FFF8DC 50%,
    #FFD700 60%,
    #DAA520 80%,
    #B8860B 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  text-shadow: 0 0 8px rgba(197, 160, 40, 0.3);
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image:
    linear-gradient(rgba(197, 160, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 160, 40, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
  animation: grid-move 20s linear infinite;
  pointer-events: none;
}

@keyframes grid-move {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
  box-shadow: 0 0 6px rgba(197, 160, 40, 0.6);
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  5% { opacity: 0.5; }
  95% { opacity: 0.5; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 160, 40, 0.06) 0%, transparent 60%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-logo {
  width: 280px;
  max-width: 80vw;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 30px rgba(197, 160, 40, 0.4));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  25% { transform: translateY(-12px) rotateY(2deg); }
  50% { transform: translateY(-5px) rotateY(0deg); }
  75% { transform: translateY(-15px) rotateY(-2deg); }
}

.hero h1 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero h1 span {
  background: linear-gradient(
    90deg,
    #B8860B 0%,
    #DAA520 20%,
    #FFD700 40%,
    #FFF8DC 50%,
    #FFD700 60%,
    #DAA520 80%,
    #B8860B 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  text-shadow: 0 0 20px rgba(197, 160, 40, 0.4), 0 0 40px rgba(197, 160, 40, 0.2);
}

.hero-tagline {
  font-size: 1.3rem;
  color: var(--white-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(197, 160, 40, 0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(197, 160, 40, 0.5), 0 0 60px rgba(197, 160, 40, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(197, 160, 40, 0.3);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

.btn-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Styles */
section {
  padding: 5rem 2rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--gold);
  text-shadow: 0 0 15px rgba(197, 160, 40, 0.3);
}

.section-subtitle {
  text-align: center;
  color: var(--white-muted);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* About Section */
.about {
  background: var(--black-light);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(197, 160, 40, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.about-text p {
  color: var(--white-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-image {
  text-align: center;
  perspective: 1000px;
}

.about-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(197, 160, 40, 0.15);
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

.about-image:hover img {
  transform: rotateY(5deg) rotateX(5deg) scale(1.02);
}

/* Media/Podcast Section */
.media {
  background: var(--black);
  position: relative;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  perspective: 1200px;
}

.media-card {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(197, 160, 40, 0.15);
  transition: all 0.4s ease;
  text-align: center;
  transform-style: preserve-3d;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.media-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 40, 0.05), transparent);
  transition: left 0.6s ease;
}

.media-card:hover::before {
  left: 100%;
}

.media-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  border-color: var(--gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(197, 160, 40, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.media-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.media-card:nth-child(2) .media-icon { animation-delay: 0.5s; }
.media-card:nth-child(3) .media-icon { animation-delay: 1s; }
.media-card:nth-child(4) .media-icon { animation-delay: 1.5s; }

.media-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.media-card p {
  color: var(--white-muted);
  margin-bottom: 1.5rem;
}

/* Platforms Section */
.platforms {
  background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.platforms::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(197, 160, 40, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.platform-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  perspective: 1000px;
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(197, 160, 40, 0.2);
  transition: all 0.4s ease;
  min-width: 120px;
  transform-style: preserve-3d;
  backdrop-filter: blur(10px);
}

.platform-link:hover {
  border-color: var(--gold);
  transform: translateY(-8px) rotateX(10deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(197, 160, 40, 0.15);
}

.platform-link svg {
  width: 40px;
  height: 40px;
  fill: var(--gold);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(197, 160, 40, 0.3));
}

.platform-link:hover svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(197, 160, 40, 0.6));
}

.platform-link span {
  font-weight: 600;
  font-size: 0.85rem;
}

/* Contact Section */
.contact {
  background: var(--black-light);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 4px rgba(197, 160, 40, 0.3));
}

.contact-item div {
  color: var(--white-muted);
}

.contact-item strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-form {
  background: rgba(10, 10, 10, 0.8);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(197, 160, 40, 0.15);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}

.contact-form:hover {
  border-color: rgba(197, 160, 40, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(197, 160, 40, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(197, 160, 40, 0.3);
  background: rgba(26, 26, 26, 0.8);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(197, 160, 40, 0.15);
}

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

/* Footer */
footer {
  background: var(--black);
  border-top: 1px solid rgba(197, 160, 40, 0.2);
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  filter: drop-shadow(0 0 10px rgba(197, 160, 40, 0.2));
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: var(--white-muted);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-4px) scale(1.15);
}

.footer-social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-copy {
  color: var(--white-muted);
  font-size: 0.9rem;
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Neon glow animation */
@keyframes neon-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(197, 160, 40, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .platform-links {
    gap: 1rem;
  }

  .platform-link {
    min-width: 100px;
    padding: 1rem;
  }

  .hero-grid {
    background-size: 40px 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Active Nav Link */
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  width: 100%;
}

/* Page Hero (smaller hero for subpages) */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 160, 40, 0.06) 0%, transparent 60%);
  animation: pulse 8s ease-in-out infinite;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.page-hero h1 span {
  background: linear-gradient(
    90deg,
    #B8860B 0%,
    #DAA520 20%,
    #FFD700 40%,
    #FFF8DC 50%,
    #FFD700 60%,
    #DAA520 80%,
    #B8860B 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  text-shadow: 0 0 20px rgba(197, 160, 40, 0.4), 0 0 40px rgba(197, 160, 40, 0.2);
}
.page-hero p {
  font-size: 1.2rem;
  color: var(--white-muted);
  font-weight: 300;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.gallery-item {
  text-align: center;
}
.gallery-item img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}
.gallery-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 50px rgba(197, 160, 40, 0.15);
}
.gallery-item p {
  margin-top: 0.75rem;
  color: var(--white-muted);
  font-size: 0.95rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.team-card {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 40, 0.15);
  transition: all 0.4s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(197, 160, 40, 0.1);
}
.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.team-card p {
  padding: 1.25rem;
  color: var(--white-muted);
  font-size: 0.95rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-5px);
  box-shadow: 0 0 10px rgba(197, 160, 40, 0.4);
}
.timeline-item h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.timeline-item p {
  color: var(--white-muted);
  line-height: 1.7;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-card {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(197, 160, 40, 0.15);
  transition: all 0.4s ease;
}
.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(197, 160, 40, 0.1);
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(197, 160, 40, 0.3);
}
.stat-label {
  color: var(--white-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
  background: var(--black-light);
}
.testimonial-card {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(197, 160, 40, 0.15);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: var(--gold);
}
.testimonial-card blockquote {
  color: var(--white-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-card .author {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(197, 160, 40, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 160, 40, 0.5);
}

/* Beliefs */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.belief-item {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(197, 160, 40, 0.15);
  transition: all 0.3s ease;
}
.belief-item:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.belief-item h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.belief-item p {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.belief-item .scripture {
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.5rem;
  }
  .page-hero {
    min-height: 40vh;
    padding: 6rem 1.5rem 3rem;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Video Embed */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(197, 160, 40, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}
