/* Tailwind-inspired utility classes for Papye Lakay */

/* Colors */
.bg-blue-500 {
  background-color: var(--primary-color);
}

.bg-blue-600 {
  background-color: var(--primary-dark);
}

.bg-blue-gradient {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--white) 100%);
}

.text-white {
  color: var(--white);
}

.text-blue-600 {
  color: var(--primary-dark);
}

.text-yellow-400 {
  color: var(--secondary-color);
}

/* Typography */
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-tight {
  line-height: 1.25;
}

/* Layout */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1200px;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

/* Components */
.rounded-lg {
  border-radius: 0.5rem;
}

.shadow {
  box-shadow: var(--box-shadow);
}

.opacity-90 {
  opacity: 0.9;
}

/* Interactive */
.hover\:bg-gray-100:hover {
  background-color: var(--light-gray);
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Responsive */
@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }
  
  .md\:w-1\/2 {
    width: 50%;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .md\:mt-0 {
    margin-top: 0;
  }
}

.inline-block {
  display: inline-block;
}

/* Hero section specific styles */
.hero {
  overflow: hidden;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--white) 100%);
  color: var(--white);
  padding: 5rem 0;
}
