/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* Base Styles */
:root {
  --primary: #B8860B;
  --gold-gradient: linear-gradient(135deg, #C9A96E 0%, #B8860B 50%, #8B6508 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0D0D0D;
  color: #E8E8E8;
  overflow-x: hidden;
  margin: 0;
}

/* Custom Components - Standard CSS (Removed @apply) */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--gold-gradient);
  color: #0D0D0D;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-gold:hover {
  box-shadow: 0 8px 50px rgba(184, 134, 11, 0.4);
  transform: scale(1.05);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border: 1px solid #B8860B;
  color: #C9A96E;
  background: transparent;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-outline-gold:hover {
  background-color: #B8860B;
  color: #0D0D0D;
  box-shadow: 0 4px 30px rgba(184, 134, 11, 0.3);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C9A96E;
  font-weight: 500;
}

.gold-line {
  display: block;
  width: 4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, #B8860B, transparent);
  margin: 1.5rem auto;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #C9A96E 0%, #B8860B 50%, #E8BC55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  text-decoration: none;
  color: #C8C8C8;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #B8860B;
  transition: all 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.service-card {
  position: relative;
  overflow: hidden;
  background-color: #1A1A1A;
  border: 1px solid #282828;
  transition: all 0.5s ease;
  cursor: pointer;
}

.service-card:hover {
  border-color: #B8860B;
  box-shadow: 0 4px 30px rgba(184, 134, 11, 0.3);
  transform: translateY(-6px);
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: #1A1A1A;
}

.project-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.5s ease;
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.5) 60%, transparent 100%);
}

.project-card:hover .overlay {
  opacity: 1;
}

.testimonial-card {
  position: relative;
  background-color: #1A1A1A;
  border: 1px solid #282828;
  padding: 2.5rem;
  transition: all 0.5s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 6rem;
  color: #B8860B;
  font-family: 'Cormorant Garamond', serif;
  opacity: 0.2;
  line-height: 1;
}

.input-elite {
  width: 100%;
  background-color: #1A1A1A;
  border: 1px solid #282828;
  color: white;
  padding: 1.25rem;
  font-size: 0.875rem;
  font-weight: 300;
  transition: all 0.3s ease;
}

.input-elite:focus {
  outline: none;
  border-color: #B8860B;
}

/* Animations */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.15);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.writing-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.border-glow-animate {
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(184,134,11,0.3); }
  50% { box-shadow: 0 0 20px rgba(184,134,11,0.6), 0 0 40px rgba(184,134,11,0.2); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0D0D0D; }
::-webkit-scrollbar-thumb { background: #B8860B; border-radius: 10px; }
