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

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #1A1A1A;
  color: #F8F5EE;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Sora', sans-serif; }

/* Scrollbar styling */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1A1A1A; }
::-webkit-scrollbar-thumb { background: #C6A43F; border-radius: 4px; }

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198, 164, 63, 0.4); }
  50% { box-shadow: 0 0 20px 10px rgba(198, 164, 63, 0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse-gold { animation: pulse-gold 2s ease-in-out infinite; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #C6A43F 0%, #E5B83C 50%, #C6A43F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green {
  background: linear-gradient(135deg, #2D5A3B 0%, #3D7A4F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section base */
section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }

/* Gold button */
.btn-gold {
  background: linear-gradient(135deg, #C6A43F, #E5B83C);
  color: #2E2E2E;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  transition: all 0.3s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 164, 63, 0.3);
}

/* Green outline button */
.btn-green-outline {
  background: transparent;
  color: #2D5A3B;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid #2D5A3B;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  transition: all 0.3s;
}
.btn-green-outline:hover {
  background: #2D5A3B;
  color: #F8F5EE;
}

/* Card */
.card-dark {
  background: #262626;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
.card-dark:hover {
  border-color: #C6A43F;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* Form input */
.form-input {
  background: #262626;
  border: 1px solid #444;
  color: #F8F5EE;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  width: 100%;
  transition: border-color 0.3s;
}
.form-input:focus {
  outline: none;
  border-color: #C6A43F;
}
.form-input::placeholder { color: #888; }

select.form-input { appearance: none; }
textarea.form-input { resize: vertical; min-height: 120px; }
