/* ===================================
   DARK LUXURY DESIGN SYSTEM
   Nils Taranger | Presence Guide
   Based on Reference Design
   =================================== */

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

/* ===================================
   CSS CUSTOM PROPERTIES
   =================================== */
:root {
  /* Dark Luxury Color Palette - Matching Reference */
  --color-black: #000000;
  --color-deep-black: #0a0a0a;
  --color-pale-gold: #c9a961;
  --color-light-gold: #d4b574;
  --color-warm-white: #f5f5f5;
  --color-soft-gray: #999999;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Animation Timing */
  --timing-slow: 2.5s;
  --timing-medium: 1.5s;
  --timing-fast: 0.8s;
  --ease-luxury: cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-warm-white);
  background: var(--color-black);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* ===================================
   STARFIELD BACKGROUND WITH DIAMONDS
   =================================== */
.ambient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: #000000;
}

.ambient-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%,
      rgba(201, 169, 97, 0.02) 0%,
      transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.6;
  }
}

/* Floating Orbs - Very Subtle */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: float var(--timing-slow) ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-pale-gold), transparent);
  top: -20%;
  left: -10%;
  animation-delay: 0s;
  animation-duration: 30s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-pale-gold), transparent);
  bottom: -25%;
  right: -15%;
  animation-delay: 5s;
  animation-duration: 35s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-pale-gold), transparent);
  top: 50%;
  right: 10%;
  animation-delay: 10s;
  animation-duration: 40s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* ===================================
   MAIN CONTAINER
   =================================== */
.container {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 4rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  text-align: left;
  max-width: 600px;
  animation: fadeInUp var(--timing-medium) var(--ease-luxury);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Profile Image - Right Side */
.profile-container {
  justify-self: end;
  animation: fadeIn var(--timing-slow) var(--ease-luxury);
  order: 2;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.profile-image {
  width: auto;
  height: 500px;
  border-radius: 8px;
  object-fit: contain;
  border: 1px solid rgba(201, 169, 97, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(201, 169, 97, 0.05);
  transition: all var(--timing-fast) var(--ease-luxury);
}

.profile-image:hover {
  transform: scale(1.02);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(201, 169, 97, 0.1);
}

/* Typography */
.name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  position: relative;
  line-height: 1.1;

  /* Shimmering Gold Effect with Whiter Highlight */
  background: linear-gradient(110deg,
      #b8941f 0%,
      #c9a961 20%,
      #d4b574 35%,
      #f5f5dc 50%,
      #d4b574 65%,
      #c9a961 80%,
      #b8941f 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  animation:
    fadeInUp var(--timing-medium) var(--ease-luxury) 0.2s backwards,
    shimmerGold 8s linear infinite;

  /* Enhanced Text Shadow */
  filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.4));
}

@keyframes shimmerGold {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Divider */
.divider {
  width: 60px;
  height: 1px;
  background: var(--color-pale-gold);
  margin: var(--spacing-md) 0;
  animation: expandWidth var(--timing-medium) var(--ease-luxury) 0.4s backwards;
}

@keyframes expandWidth {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 60px;
    opacity: 1;
  }
}

.tagline {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 300;
  color: var(--color-warm-white);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  letter-spacing: 0.05em;
  animation: fadeInUp var(--timing-medium) var(--ease-luxury) 0.6s backwards;
}

.description {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 300;
  color: var(--color-soft-gray);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
  max-width: 500px;
  animation: fadeInUp var(--timing-medium) var(--ease-luxury) 0.8s backwards;
}

/* ===================================
   INQUIRE BUTTON
   =================================== */
.inquire-button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-pale-gold);
  background: transparent;
  border: 1px solid var(--color-pale-gold);
  border-radius: 4px;
  transition: all var(--timing-fast) var(--ease-luxury);
  animation: fadeInUp var(--timing-medium) var(--ease-luxury) 1s backwards;
  position: relative;
  overflow: hidden;
}

.inquire-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-pale-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--timing-fast) var(--ease-luxury);
  z-index: -1;
}

.inquire-button:hover::before {
  transform: scaleX(1);
}

.inquire-button:hover {
  color: var(--color-black);
  border-color: var(--color-light-gold);
}

.inquire-button:active {
  transform: translateY(0);
}

.inquire-icon {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  stroke: currentColor;
}

.button-text {
  position: relative;
  z-index: 1;
}

/* ===================================
   FLOATING PARTICLES (DIAMOND SPARKLES)
   =================================== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: transparent;
  opacity: 0;
  animation: diamondSparkle 3s ease-in-out infinite;

  /* Diamond shape using clip-path */
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: radial-gradient(circle, rgba(255, 215, 0, 0.95), rgba(201, 169, 97, 0.7));
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.8), 0 0 24px rgba(201, 169, 97, 0.6);
}



@keyframes gentleRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
    padding: 3rem;
    gap: 3rem;
  }

  .profile-container {
    justify-self: center;
    order: 0;
    margin-bottom: 2rem;
  }

  .profile-image {
    width: 280px;
    height: 280px;
  }

  .hero {
    text-align: center;
    margin: 0 auto;
  }

  .divider {
    margin: var(--spacing-md) auto;
  }

  .description {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 2rem;
  }

  .profile-image {
    width: 220px;
    height: 220px;
  }

  .name {
    font-size: 3rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .inquire-button {
    padding: 0.9rem 2rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .profile-image {
    width: 180px;
    height: 180px;
  }

  .name {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1rem;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles */
.inquire-button:focus-visible {
  outline: 2px solid var(--color-pale-gold);
  outline-offset: 4px;
}