@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  scroll-behavior: smooth;
  font-family: 'Inter', 'Noto Sans', 'Noto Sans Arabic', 'Noto Sans JP', 'Noto Sans SC', 'Noto Sans PT', sans-serif;
  background-color: #f8fafc; /* Light gray for a modern feel */
  color: #1f2937; /* Dark gray for text */
}

.animate-fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.shadow-md {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.shadow-md:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

section {
  margin-bottom: 4rem;
  padding: 2rem 0;
}

header {
  background: #ffffff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Modern button styles */
a.bg-primary {
  background-color: #6fbab9;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

a.bg-primary:hover {
  background-color: #4a908f;
  transform: translateY(-2px);
}

/* Social icons */
.social-icon {
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

/* Hero section background */
.hero-section {
  background: linear-gradient(135deg, #6fbab9 0%, #4a908f 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/hero-pattern.svg') repeat;
  opacity: 0.1;
}