/* ===================================
   RESET & BASE STYLES
   =================================== */

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  font-family: "Georgia", "Times New Roman", Times, serif;
  background-color: #0a0a0a;
  color: #d0d0d0;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ===================================
   GRAIN TEXTURE OVERLAY
   =================================== */

.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.04"/></svg>');
  background-repeat: repeat;
  opacity: 1;
}

/* ===================================
   PARTICLE CANVAS
   =================================== */

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ===================================
   FLOATING NAVIGATION ORB
   =================================== */

.nav-orb {
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  z-index: 1000;
  width: 80px;
  height: 80px;
}

.orb-center {
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(139, 0, 0, 0.8),
    rgba(0, 0, 0, 0.9)
  );
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 0, 0.3);
  box-shadow:
    0 0 30px rgba(255, 0, 0, 0.4),
    inset 0 0 30px rgba(255, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-center:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 50px rgba(255, 0, 0, 0.6),
    inset 0 0 40px rgba(255, 0, 0, 0.3);
}

.nav-links {
  position: absolute;
  list-style: none;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.nav-orb:hover .nav-links {
  display: flex;
}

.nav-links li {
  opacity: 0;
  transform: translateX(20px);
  animation: navSlideIn 0.3s ease forwards;
}

.nav-links li:nth-child(1) {
  animation-delay: 0.05s;
}
.nav-links li:nth-child(2) {
  animation-delay: 0.1s;
}
.nav-links li:nth-child(3) {
  animation-delay: 0.15s;
}
.nav-links li:nth-child(4) {
  animation-delay: 0.2s;
}
.nav-links li:nth-child(5) {
  animation-delay: 0.25s;
}

@keyframes navSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links a:hover {
  color: #ff0000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(139, 0, 0, 0.15) 0%,
    transparent 70%
  );
  animation: pulseSlow 12s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulseSlow {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.hero-distortion {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 0, 0, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(139, 0, 0, 0.06) 0%,
      transparent 40%
    );
  animation: distortWave 8s ease-in-out infinite;
}

@keyframes distortWave {
  0%,
  100% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(10px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeInDown 1.2s ease-out;
}

.distorted-flame {
  margin-bottom: -20px;
  width: 100px;
  height: 150px;
  filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.5));
  animation: flameFlicker 2.5s ease-in-out infinite;
}

@keyframes flameFlicker {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotateZ(-1deg);
  }
  25% {
    opacity: 0.85;
    transform: scale(1.08) rotateZ(1deg);
  }
  50% {
    opacity: 0.9;
    transform: scale(0.95) rotateZ(-0.5deg);
  }
  75% {
    opacity: 0.88;
    transform: scale(1.05) rotateZ(0.5deg);
  }
}

.logo-text {
  font-family: sans-serif;
  /* font-family: "Georgia", serif; */
  font-size: 4rem;
  font-weight: 700;
  color: #ff0000;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow:
    0 0 15px rgba(255, 0, 0, 0.7),
    0 0 30px rgba(139, 0, 0, 0.5),
    0 0 50px rgba(255, 0, 0, 0.3);
  position: relative;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.glitch {
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  color: #888888;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  animation: glitchAnimation 4s ease-in-out infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
}

.glitch::before {
  animation: glitchTop 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  color: #ff0000;
  z-index: -1;
  text-shadow: -2px 0 #8b0000;
}

.glitch::after {
  animation: glitchBottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite
    reverse;
  color: #ff0000;
  z-index: -2;
  text-shadow: 2px 0 #8b0000;
}

@keyframes glitchTop {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
    transform: translate(0);
  }
  20% {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    transform: translate(-2px, -2px);
  }
  40% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translate(-2px, 2px);
  }
  60% {
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    transform: translate(2px, -2px);
  }
  80% {
    clip-path: polygon(0 10%, 100% 10%, 100% 50%, 0 50%);
    transform: translate(2px, 2px);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
    transform: translate(0);
  }
}

@keyframes glitchBottom {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transform: translate(0);
  }
  20% {
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    transform: translate(2px, 2px);
  }
  40% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translate(2px, -2px);
  }
  60% {
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    transform: translate(-2px, 2px);
  }
  80% {
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    transform: translate(-2px, -2px);
  }
  100% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transform: translate(0);
  }
}

@keyframes glitchAnimation {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.scroll-prompt {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 1.2s ease-out 0.5s both;
}

.prompt-text {
  font-size: 0.95rem;
  color: #999999;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding: 8px 0;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: #ff0000;
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

.hero-glass-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(0.5px);
  pointer-events: none;
}

/* ===================================
   GLASSMORPHISM UTILITY
   =================================== */

.glass {
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(20px) saturate(80%);
  -webkit-backdrop-filter: blur(20px) saturate(80%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ===================================
   FEATURED SECTION
   =================================== */

.featured {
  min-height: 100vh;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.section-title {
  font-family: "Georgia", serif;
  font-size: 3rem;
  color: #ff0000;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  animation: fadeInDown 0.8s ease-out;
}

.featured-carousel {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  perspective: 1000px;
}

.featured-card {
  border-radius: 12px;
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  animation: slideInUp 0.8s ease-out forwards;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-card:nth-child(1) {
  animation-delay: 0.1s;
}
.featured-card:nth-child(2) {
  animation-delay: 0.2s;
}
.featured-card:nth-child(3) {
  animation-delay: 0.3s;
}

.featured-card:hover {
  transform: translateY(-15px);
  box-shadow:
    0 20px 60px rgba(255, 0, 0, 0.2),
    0 0 40px rgba(255, 0, 0, 0.15);
}

.featured-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.placeholder-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  color: #3a3a3a;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: bold;
}

.featured-info {
  padding: 2rem;
}

.featured-info h3 {
  font-family: "Georgia", serif;
  font-size: 1.8rem;
  color: #ff0000;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.featured-lore {
  font-size: 0.95rem;
  color: #a0a0a0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reactions {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #777777;
  font-family: Arial, sans-serif;
}

.reaction {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery {
  min-height: 100vh;
  background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

/* Anti-grid staggering for desktop */
@media (min-width: 1025px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .artwork-card:nth-child(3n + 1) {
    transform: translateY(30px);
  }

  .artwork-card:nth-child(3n + 2) {
    transform: translateY(0);
  }

  .artwork-card:nth-child(3n) {
    transform: translateY(-30px);
  }
}

.artwork-card {
  background: rgba(20, 20, 20, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px);
  position: relative;
  cursor: pointer;
}

.artwork-card.visible {
  opacity: 1;
  transform: translateY(var(--transform-y, 0));
}

.artwork-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Arial, sans-serif;
  font-size: 2rem;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: bold;
}

.artwork-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.15) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.artwork-card:hover {
  transform: translateY(calc(var(--transform-y, 0) - 15px));
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 0, 0, 0.2),
    inset 0 0 20px rgba(255, 0, 0, 0.05);
}

.artwork-card:hover .artwork-overlay {
  opacity: 1;
}

.artwork-info {
  padding: 1.5rem;
  position: relative;
  z-index: 3;
}

.artwork-info h3 {
  font-family: "Georgia", serif;
  font-size: 1.5rem;
  color: #ff0000;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.artwork-card:hover .artwork-info h3 {
  color: #ff6666;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.artwork-info p {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #888888;
  line-height: 1.6;
}

/* Glitch effect on hover */
.glitch-on-hover:hover .artwork-info h3 {
  animation: glitchSmall 0.3s ease-out;
}

@keyframes glitchSmall {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(2px, -2px);
  }
  60% {
    transform: translate(-2px, -2px);
  }
  80% {
    transform: translate(2px, 2px);
  }
  100% {
    transform: translate(0);
  }
}

/* ===================================
   LORE SECTION
   =================================== */

.lore {
  min-height: auto;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
  padding: 4rem 2rem;
  position: relative;
  scroll-snap-align: start;
}

.lore-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.lore-entry {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.lore-trigger {
  width: 100%;
  padding: 1.5rem;
  background: rgba(30, 10, 10, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 0, 0, 0.1);
  border-radius: 8px;
  color: #d0d0d0;
  font-family: "Georgia", serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lore-trigger:hover {
  background: rgba(40, 15, 15, 0.8);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

.lore-title {
  color: #ff0000;
}

.lore-toggle {
  color: #ff0000;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.lore-entry.active .lore-toggle {
  transform: rotate(45deg);
}

.lore-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(255, 0, 0, 0.05);
  border-top: none;
}

.lore-entry.active .lore-content {
  max-height: 500px;
}

.lore-content p {
  padding: 2rem;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.8;
}

/* ===================================
   ECHOES SECTION
   =================================== */

.echoes {
  min-height: auto;
  background: linear-gradient(180deg, #1a0000 0%, #0a0a0a 100%);
  padding: 4rem 2rem;
  position: relative;
  scroll-snap-align: start;
}

.echoes-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #888888;
  margin-bottom: 3rem;
  font-style: italic;
  font-family: Arial, sans-serif;
}

.echoes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.echo-card {
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(40px);
  animation: slideInUp 0.8s ease-out forwards;
}

.echo-card:nth-child(1) {
  animation-delay: 0.1s;
}
.echo-card:nth-child(2) {
  animation-delay: 0.15s;
}
.echo-card:nth-child(3) {
  animation-delay: 0.2s;
}
.echo-card:nth-child(4) {
  animation-delay: 0.25s;
}
.echo-card:nth-child(5) {
  animation-delay: 0.3s;
}
.echo-card:nth-child(6) {
  animation-delay: 0.35s;
}

.echo-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 0, 0, 0.15);
  border-color: rgba(255, 0, 0, 0.2);
}

.echo-avatar {
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 0, 0, 0.4),
    rgba(139, 0, 0, 0.6)
  );
  border: 2px solid rgba(255, 0, 0, 0.2);
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.echo-text {
  font-family: "Georgia", serif;
  font-size: 1rem;
  color: #c0c0c0;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}

.echo-name {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */

.newsletter {
  min-height: 500px;
  background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 50%, #1a0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.05) 0%,
    transparent 70%
  );
  animation: rotateSlow 15s linear infinite;
}

@keyframes rotateSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.newsletter-glass {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.newsletter-glass h2 {
  font-family: "Georgia", serif;
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.newsletter-glass p {
  font-size: 1.1rem;
  color: #a0a0a0;
  margin-bottom: 2rem;
  font-style: italic;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
  background: rgba(30, 10, 10, 0.5);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 6px;
  color: #d0d0d0;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: #666666;
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 0, 0, 0.5);
  background: rgba(40, 15, 15, 0.6);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #cc0000, #8b0000);
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.newsletter-privacy {
  font-size: 0.8rem;
  color: #666666;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(255, 0, 0, 0.1);
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  font-family: "Georgia", serif;
  color: #ff0000;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-section h3 {
  font-size: 1.5rem;
}

.footer-section h4 {
  font-size: 1.1rem;
}

.footer-section p {
  font-family: Arial, sans-serif;
  color: #888888;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #888888;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.footer-section ul li a:hover {
  color: #ff0000;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: #666666;
  transition: fill 0.3s ease;
}

.social-icon:hover {
  border-color: #ff0000;
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.social-icon:hover svg {
  fill: #ff0000;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 0, 0, 0.2),
    transparent
  );
  margin: 2rem 0;
}

.footer-bottom {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #ff0000;
  font-style: italic;
  font-size: 0.9rem;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 640px) {
  .logo-text {
    font-size: 2.5rem;
  }

  .distorted-flame {
    width: 70px;
    height: 105px;
  }

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

  .logo-container {
    flex-direction: column;
    gap: 1rem;
  }

  .featured-carousel {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .echoes-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .nav-orb {
    bottom: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .logo-text {
    font-size: 3rem;
  }

  .featured-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .echoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Scroll snap points */
@supports (scroll-snap-type: y mandatory) {
  section,
  header {
    scroll-snap-align: start;
  }
}
