@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@200;300;400&display=swap');

html, body {
  background-color: #fafafa;
  color: black;
  scroll-behavior: smooth;
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.glass-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.luxury-glow {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.pearl-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #fdfdfd 100%);
}

.ivory-glow {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.icy-gradient {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.perspective-1000 {
  perspective: 1000px;
}

::selection {
  background: #000;
  color: #fff;
}

/* Professional luxury editorial justification */
.editorial-justify {
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  text-rendering: optimizeLegibility;
  line-break: relaxed;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}

