/* Raydiem Group - Static Export Styles */

/* CSS Variables */
:root {
  --background: hsl(235 45% 14%);
  --foreground: hsl(0 0% 98%);
  --card: hsl(235 50% 10%);
  --card-foreground: hsl(0 0% 98%);
  --primary: hsl(36 91% 53%);
  --primary-foreground: hsl(235 45% 14%);
  --secondary: hsl(235 40% 22%);
  --secondary-foreground: hsl(0 0% 98%);
  --muted: hsl(235 35% 28%);
  --muted-foreground: hsl(235 15% 60%);
  --border: hsl(235 35% 25%);
  --font-display: 'Oswald', Impact, sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

body > * {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* Utilities */
.divider-line {
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.text-gradient-gold {
  background: linear-gradient(135deg, hsl(36 91% 58%) 0%, hsl(30 95% 48%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-highlight {
  color: var(--foreground);
  font-weight: 500;
}

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

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(235, 45%, 14%, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(235, 35%, 25%, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav {
  display: none;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--foreground);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(36, 91%, 53%, 0.05), transparent, transparent);
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: linear-gradient(to top left, hsla(36, 91%, 53%, 0.03), transparent, transparent);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: linear-gradient(var(--foreground) 1px, transparent 1px), linear-gradient(90deg, var(--foreground) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero-text {
  max-width: 56rem;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-label span {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.75rem;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-description {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-cta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background: hsla(36, 91%, 53%, 0.9);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

/* Sections */
.section {
  padding: 7rem 0 0rem;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0 0rem;
  }
    #ventures-games.section,
    #exits.section
    {padding-bottom: 5rem;}    
}

.section-ventures {
  background: hsla(235, 40%, 22%, 0.3);
}
.section-header {
  margin-bottom: 1rem;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}

.section-label span {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Venture Cards */
.ventures-grid {
    display: flex;
    flex-flow: row;
    gap: 1.5rem;
    align-items: stretch;
    align-content: start;
    justify-content: space-between;
    justify-items: stretch;
}
@media (max-width: 768px) {
.ventures-grid {
    display: grid;
  }
}
.venture-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media (min-width: 768px) {
  .venture-card {
    padding: 2.5rem;
  }
}

.venture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -15px hsla(36, 91%, 53%, 0.15);
}

.venture-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(36, 91%, 53%, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.venture-card:hover::before {
  opacity: 1;
}

.number-accent {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: hsla(36, 91%, 53%, 0.08);
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 0;
}

.card-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, hsla(36, 91%, 53%, 0.5), var(--primary), hsla(36, 91%, 53%, 0.5));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.venture-card:hover .card-accent-line {
  transform: scaleX(1);
}

.card-content {
  position: relative;
  z-index: 10;
}

.card-content-exit {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .card-content-exit {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.card-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.card-title {
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .card-title {
    font-size: 2.25rem;
  }
}

.badge-active {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: hsla(36, 91%, 53%, 0.15);
  color: var(--primary);
  border: 1px solid hsla(36, 91%, 53%, 0.3);
}

.card-description {
  color: var(--muted-foreground);
  line-height: 1.75;
  max-width: 36rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.card-link:hover {
  color: hsla(36, 91%, 53%, 0.8);
}

.card-link svg {
  width: 1rem;
  height: 1rem;
}

.exit-details {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.exit-year {
  font-family: var(--font-display);
  font-size: 3rem;
  color: hsla(235, 35%, 28%, 0.5);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .exit-year {
    font-size: 3.75rem;
  }
}

/* Footer */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 28rem;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-legal {
    align-items: flex-end;
  }
}

.footer-legal p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
