/* Premium, international-grade styles for SKO website */
body {
  font-family: 'Poppins', sans-serif;
  background: #f8fafc;
  color: #1e293b;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(90deg, #1e40af 0%, #2563eb 100%);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(30,64,175,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
  box-shadow: 0 4px 16px rgba(30,64,175,0.12);
}

/* Section titles */
.section-title {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  color: #1e40af;
  margin-bottom: 1rem;
}

/* Card hover effect */
.card {
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(30,64,175,0.04);
}
.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px rgba(30,64,175,0.10);
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .section-title { font-size: 2rem; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  background: #e0e7ef;
}
::-webkit-scrollbar-thumb {
  background: #1e40af;
  border-radius: 8px;
}
