/* src/static/css/tailwind.css – Enhanced alignment */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; }
img, video { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* Container */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

/* Grid utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.md\:grid-cols-2 { grid-template-columns: repeat(1, 1fr); }
.lg\:grid-cols-3 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Typography */
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-heading { font-family: 'Playfair Display', serif; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-7xl { font-size: 4.5rem; }
.text-white { color: white; }
.text-gray-600 { color: #4b5563; }

/* Spacing */
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-12 { margin-top: 3rem; }
.space-x-4 > * + * { margin-left: 1rem; }

/* Hero specific */
.hero {
  display: flex;
  align-items: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 10;
}
.hero h1 {
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero p {
  max-width: 600px;
}
.hero .flex-wrap {
  justify-content: flex-start;
}

/* Footer */
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  footer .grid { grid-template-columns: 1fr; }
}
footer .flex.space-x-4 {
  margin-top: 1rem;
}
footer .bottom-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}