/* static/css/styles.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --phit-green: #16a34a;      /* vibrant green */
  --phit-blue: #2563eb;        /* bright blue */
  --phit-teal: #0f766e;        /* teal for accents */
  --phit-coral: #e8491d;       /* existing coral for CTAs */
  --phit-dark: #1f2937;
  --phit-light: #f9fafb;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  margin: 0;
  line-height: 1.6;
  background: #f9fafb;
  color: #1f2937;
  
}

.site-header .navbar {
    display: flex;
    justify-content: space-between;
    background: #005a87;
    padding: 10px 20px;
}

.nav-menu li {
    display: inline-block;
    margin: 0 10px;
}

.button {
    background: #e8491d;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
}

.hero {
    background: url('/static/images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 60px 20px;
}


a {
  text-decoration: none;
  color: inherit;
}

header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.navbar nav a {
  margin-left: 1.5rem;
  font-weight: 500;
}

.hero {
  background: linear-gradient(
    rgba(15,118,110,0.85),
    rgba(15,118,110,0.85)
  ), url('/static/images/hero.jpg') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: white;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
}

.card {
  background: white;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.stats {
  display: flex;
  justify-content: space-around;
  padding: 3rem 1rem;
  background: #ecfdf5;
}

.stat h2 {
  color: var(--primary);
  font-size: 2.5rem;
}

footer {
  background: #022c22;
  color: #d1fae5;
  padding: 2rem;
  text-align: center;
}


.hero {
    @apply bg-cover bg-center text-white text-center py-32 px-4;
}

.navbar {
    @apply flex justify-between items-center bg-blue-800 p-4 text-white;
}

.navbar .nav-menu li a {
    @apply text-white hover:text-yellow-300 mx-2;
}

.button {
    @apply bg-orange-600 hover:bg-orange-700 text-white py-2 px-4 rounded;
}

.cards-grid {
    @apply grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6;
}

.events-list li {
    @apply border-b py-4;
}

footer a:hover {
    color: var(--phit-green);
}
footer .social-links a:hover {
    color: var(--phit-blue);
}

/* Override Tailwind classes with brand colors */
.bg-phit-green { background-color: var(--phit-green); }
.bg-phit-blue { background-color: var(--phit-blue); }
.text-phit-green { color: var(--phit-green); }
.text-phit-blue { color: var(--phit-blue); }
.border-phit-green { border-color: var(--phit-green); }
.border-phit-blue { border-color: var(--phit-blue); }

/* Hover effects */
.hover\:bg-phit-green-dark:hover { background-color: #15803d; }  /* darker green */
.hover\:bg-phit-blue-dark:hover { background-color: #1d4ed8; }   /* darker blue */