/* PiggyPicks Main Styles */

/* Import Figtree font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');

/* Global styles */
body {
  background-color: #07060F;
  color: #E6E6EB;
  font-family: 'Figtree', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Primary color usage */
a, .btn-primary, .primary-color {
  color: #BBFE5B;
}

a:hover {
  color: #BBFE5B;
  text-decoration: none;
}

.btn-primary {
  background-color: #BBFE5B;
  border-color: #BBFE5B;
  color: #07060F;
}

.btn-primary:hover {
  background-color: #BBFE5B;
  border-color: #BBFE5B;
  color: #07060F;
}

/* Navbar styling */
.navbar {
  background-color: #07060F !important;
  border-bottom: 1px solid rgba(187, 254, 91, 0.2);
}

.navbar-brand, .nav-link {
  color: #E6E6EB !important;
}

.nav-link:hover, .navbar-brand:hover {
  color: #BBFE5B !important;
}

/* Custom navbar toggler for dark mode */
.navbar-toggler {
  border-color: rgba(187, 254, 91, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(187, 254, 91, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Events list styling */
.events-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* Card styling */
.event-card {
  background-color: rgba(7, 6, 15, 0.9) !important;
  border: 1px solid rgba(187, 254, 91, 0.2) !important;
  color: #E6E6EB;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 15px;
}

.event-card h2, .event-card a {
  color: #E6E6EB !important;
  margin-top: 0;
}

.event-card a:hover {
  color: #BBFE5B !important;
  text-decoration: none;
}

.event-details {
  margin-top: 10px;
}

/* Status and date styling */
.status {
  color: #E6E6EB;
  margin-top: 5px;
  font-weight: bold;
}

.date {
  color: #E6E6EB;
  font-size: 0.9em;
}

/* Custom highlight color */
::selection {
  background-color: #BBFE5B;
  color: #07060F;
}

/* Form elements */
input, select, textarea {
  background-color: rgba(230, 230, 235, 0.1);
  border: 1px solid rgba(187, 254, 91, 0.3);
  color: #E6E6EB;
  padding: 8px 12px;
  border-radius: 4px;
}

input:focus, select:focus, textarea:focus {
  border-color: #BBFE5B;
  outline: none;
  box-shadow: 0 0 0 2px rgba(187, 254, 91, 0.2);
}

/* Custom container for better readability */
.container {
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto;
}

/* PiggyPicks Custom Styles (beyond Tailwind) */

/* This file now only contains specific overrides and custom styles 
   not easily achievable with Tailwind utility classes */

/* Custom input styling refinements */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 2px rgba(187, 254, 91, 0.2);
}

/* Custom highlight color */
::selection {
  background-color: #BBFE5B;
  color: #07060F;
}

/* Event grid layout - we can't rely solely on Tailwind grid classes for more complex grids */
@media (min-width: 640px) {
  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
  }
}

/* Chart.js customizations */
canvas.chart {
  max-width: 100%;
  margin: 0 auto;
} 