/* Global page styling */
:root {
  --rich-black: #0c0a08;
  --soft-gold: #d4af37;
  --light-gold: #e5c78c;
  --deep-red: #840f0f;
  --burnt-orange: #c14a11;
  --dark-gray: #1a1a1a;
  --glass-gray: rgba(18, 18, 18, 0.75);
  --shadow-soft: 0 25px 60px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #080705;
  color: #f7f2ea;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Header and navigation */
.site-header {
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  z-index: 999;
}
.navbar {
  background: transparent;
}
.site-header.scrolled .navbar {
  background: rgba(10, 8, 5, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}
.nav-link {
  transition: color 0.25s ease, transform 0.25s ease;
  letter-spacing: 0.05em;
}
.nav-link:hover {
  color: var(--soft-gold) !important;
  transform: translateY(-1px);
}
.logo {
  letter-spacing: 0.18em;
  font-family: 'Playfair Display', serif;
  color: #fff;
}
.logo-img,
.footer-logo-img {
  max-height: 42px;
  width: auto;
  display: block;
}
.footer-logo-img {
  max-height: 48px;
}
.navbar-toggler {
  color: #f7f2ea;
}

/* Hero section styling */
.hero-section {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(180deg, rgba(7, 5, 4, 0.45), rgba(7, 5, 4, 0.75)), url('https://images.unsplash.com/photo-1521334884684-d80222895322?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(12, 9, 7, 0.85));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.eyebrow {
  color: var(--light-gold);
  letter-spacing: 0.25em;
  font-size: 0.85rem;
}
.hero-description {
  color: #e9d7b4;
  font-size: 1.05rem;
  line-height: 1.8;
}
.btn-shop {
  border-color: rgba(212, 175, 55, 0.9);
  color: #fff;
  padding: 0.95rem 2rem;
  border-width: 1.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.btn-shop:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.18);
}

/* Shop section layout */
.shop-section {
  position: relative;
  background: linear-gradient(180deg, #0f0d0b, #110f0d 40%);
}
.section-header {
  max-width: 640px;
  margin: 0 auto;
}
.section-label {
  color: var(--soft-gold);
  letter-spacing: 0.3em;
  font-size: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
}
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 430px;
  background: #090705;
  box-shadow: var(--shadow-soft);
}
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.product-card:hover::after {
  opacity: 1;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.product-card:hover .product-image {
  transform: scale(1.08);
}

/* Scripture section styling */
.scripture-section {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.16), transparent 38%), linear-gradient(180deg, #0e0b09, #110f0d);
}
.quote-card {
  background: rgba(21, 18, 16, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.14);
}
.scripture-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  color: var(--soft-gold);
}
.scripture-text {
  font-size: 1.02rem;
  color: #f0e7ce;
  line-height: 1.88;
}

/* Cross image section styling */
.cross-section {
  background: #090705;
}
.cross-card {
  max-width: 580px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cross-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.cross-card:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}
.cross-caption {
  color: #d9c79f;
}

/* Memorabilia section styling */
.memorabilia-section {
  background: linear-gradient(180deg, #0f0d0b, #110f0d 40%);
  min-height: 80vh;
  padding: 5rem 0;
}
.tribute-card {
  background: rgba(21, 18, 16, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tribute-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}
.tribute-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.tribute-image {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}
.tribute-card:hover .tribute-image {
  transform: scale(1.05);
}
.tribute-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--soft-gold);
  margin-bottom: 0.5rem;
}
.tribute-title {
  font-size: 1.1rem;
  color: #e9d7b4;
  margin-bottom: 0;
}

/* Footer styling */
.footer-section {
  background: #070604;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.95rem;
  letter-spacing: 0.18em;
}
.footer-tagline {
  color: #d4b87b;
}
.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  color: #f5eee3;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.social-link:hover {
  transform: scale(1.06);
  border-color: var(--soft-gold);
  background: rgba(212, 175, 55, 0.08);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

/* Reveal animation for sections */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .product-card {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 1rem;
  }
  .product-card {
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 90vh;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .section-title {
    font-size: 2.4rem;
  }
}
