@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  --bg-color: #050505;
  --text-color: #ffffff;
  --text-muted: #888888;
  --accent: #d4af37; /* Muted Champagne Gold */
  --accent-rgb: 212, 175, 55;
  --primary-glow: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  --card-bg: rgba(15, 15, 15, 0.6);
  --card-border: rgba(255, 255, 255, 0.08);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none; /* Hide default cursor for custom cursor experience */
}

html, body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Noise overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}

/* Custom Cursor */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-glow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275), width 0.3s, height 0.3s;
}

/* Cursor Hover states */
.custom-cursor.hovered {
  width: 24px;
  height: 24px;
  background-color: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--accent);
}
.custom-cursor-glow.hovered {
  width: 60px;
  height: 60px;
  border-color: var(--accent);
}

/* Background Mesh Gradients & Blobs */
.background-canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  mix-blend-mode: screen;
  pointer-events: none;
}

.blob-1 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent) 0%, rgba(0,0,0,0) 70%);
  top: -10%;
  left: -10%;
  animation: float-blob-1 25s infinite alternate ease-in-out;
}

.blob-2 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, #5b42f3 0%, rgba(0,0,0,0) 70%);
  bottom: -20%;
  right: -10%;
  animation: float-blob-2 30s infinite alternate ease-in-out;
}

.blob-3 {
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, #00f2fe 0%, rgba(0,0,0,0) 70%);
  top: 40%;
  left: 30%;
  animation: float-blob-3 20s infinite alternate ease-in-out;
}

/* Grid overlay for luxurious alignment */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
  opacity: 0.02;
}

.grid-line {
  border-right: 1px solid var(--text-color);
  height: 100%;
}
.grid-line:last-child {
  border-right: none;
}

/* Layout Utilities */
.section {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 10% 4rem 10%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/* Header & Navigation */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(5, 5, 5, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-color);
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1000;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, #5b42f3 100%);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}

/* Magnetic / CTA Buttons */
.btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-color);
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--text-color);
  color: var(--bg-color);
  border-color: var(--text-color);
}

.btn-primary:hover {
  background: transparent;
  color: var(--text-color);
  border-color: var(--accent);
}

.btn-outline:hover {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-accent {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  font-weight: 600;
}

.btn-accent:hover {
  background: transparent;
  color: var(--text-color);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

/* Titles & Headers */
.section-tag {
  font-family: var(--font-heading);
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 3rem;
  letter-spacing: -2px;
}

.section-desc {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

/* Email CTA Card Premium Hover Animation */
.email-cta-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s, box-shadow 0.5s !important;
}

.email-cta-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent) !important;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15) !important;
}

.email-cta-card:hover .mail-icon-wrapper {
  background: rgba(212, 175, 55, 0.15) !important;
  transform: scale(1.08) rotate(3deg);
  border-color: var(--accent) !important;
}

.email-cta-card:hover .card-hover-glow {
  opacity: 1 !important;
}

/* Navigation Highlight Button */
.btn-nav-highlight {
  background: var(--accent) !important;
  color: #050505 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  font-family: var(--font-heading) !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  transition: all 0.3s ease !important;
}

.btn-nav-highlight:hover {
  background: transparent !important;
  color: var(--accent) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
  border: 1px solid var(--accent) !important;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 10%;
  text-align: center;
  z-index: 10;
}



