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

body {
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
  color: #333333;
}

/* Buttons */
.btn-gold {
  background-color: #C59D5F;
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #D8B072;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(197, 157, 95, 0.4);
}

.btn-outline-gold {
  border: 2px solid #C59D5F;
  color: #C59D5F;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: #C59D5F;
  color: #ffffff;
}

/* Backgrounds */
.hero-bg {
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(10,25,47,0.92) 0%, rgba(17,34,64,0.85) 100%);
  position: absolute;
  inset: 0;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  background-color: #f8fafc;
}

.input-field:focus {
  outline: none;
  border-color: #C59D5F;
  box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.2);
  background-color: #ffffff;
}

/* Honeypot Field */
.website-url-field {
  display: none !important;
  visibility: hidden !important;
  opacity: 0;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

/* Cookie Banner Animation */
#cookie-banner {
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

#cookie-banner.show {
  transform: translateY(0);
}
