/* Global Styles and Variables */
:root {
  --background: #FDFCFB; /* Warm off-white for premium feel */
  --foreground: #1A1A1A;
  --primary: #FB9C2A;
  --primary-soft: rgba(251, 156, 42, 0.05);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Vertical Text Utility */
.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* Editorial Grid Lines */
.grid-line-v {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.05);
}

.grid-line-h {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.05);
}

/* Oversized Typography */
.text-huge {
  font-size: clamp(2.5rem, 5vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.no-scroll {
  overflow: hidden;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll Revel Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

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

.hero-image {
  transform: scale(1.2);
}

.hero-image.active {
  transform: scale(1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--background);
}
::-webkit-scrollbar-thumb {
  background: #E5E5E5;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}
