/* Svarog Tech main stylesheet */
body {
background-color: #080500;
color: #fffbf0;
overflow-x: hidden;
overflow-y: auto;
}
.glass-card {
background: rgba(255, 215, 0, 0.02);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 215, 0, 0.15);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
/* Hide scrollbar */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
.scroll-container {
height: 100vh;
overflow-y: scroll;
scroll-behavior: smooth;
}

/* Only enable scroll-snap on desktop */
@media (min-width: 768px) {
  .scroll-container {
    scroll-snap-type: y mandatory;
  }
  section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}
.text-gradient {
background: linear-gradient(to bottom, #fff8dc, #ffd700, rgba(255, 215, 0, 0.3));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.text-gradient-gold {
background: linear-gradient(135deg, #FFF8E7 0%, #FFD700 50%, #B8860B 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.nav-dot.active {
height: 2rem;
background-color: #FFD700;
box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}
.form-container {
  background-color: rgba(15, 10, 0, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(251, 191, 36, 0.1);
  width: 100%;
  max-width: 500px;
}

.form-input, .form-textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(251, 191, 36, 0.3);
  color: #fcd34d; /* amber-300 */
  width: 100%;
  padding: 0.75rem 0.25rem;
  transition: all 0.3s;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-bottom: 1px solid #fcd34d; /* amber-300 */
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(251, 191, 36, 0.5);
}

.form-button {
  background-color: #fcd34d; /* amber-300 */
  color: #451a03; /* amber-950 */
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.form-button:hover {
  background-color: transparent;
  color: #fcd34d; /* amber-300 */
  border: 1px solid #fcd34d; /* amber-300 */
}