
/* βληνία.com/style.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom gradients for background consistency */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: pageTransition 0.5s ease;
}

@keyframes pageTransition {
  0% {opacity: 0; transform: translateY(10px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* Custom hover effects */
.hero {
  transition: transform 0.3s ease-out;
}

.hero:hover {
  transform: scale(1.02);
}

/* Scrollbar customization for modern browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #667eeb;
  border-radius: 4px;
  transition: background 0.3s;
}

/* Card hover elevation */
.card:hover {
  box-shadow: 0 10px 25px -8px rgba(96, 165, 250, 0.5);
}

/* Custom font weights */
.text-bold-interactive {
  font-weight: 700;
  transition: color 0.3s;
}

.text-bold-interactive:hover {
  color: #3366FF;
}

/* Gradient animation for headers */
.header-shadow {
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.12);
  transition: box-shadow 0.3s;
}

/* Responsive adjustments for mobile */
@media (max-width: 640px) {
  .mobile-full-width {
    width: 100%;
  }
}
