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


@layer base {
  html {
    scroll-behavior: smooth;
  }
  body {
    @apply font-['Roboto'] bg-gray-950 text-white;
  }
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero > div {
  position: relative;
  z-index: 10;
}

/* Buttons */
.btn {
  @apply inline-block px-8 py-3 rounded-full font-bold shadow-lg transition-colors duration-300;
}

.btn-primary {
  @apply bg-orange-500 text-white hover:bg-orange-600;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
