/*
 * Coach's Golf & Grill - Custom Green Golf Theme
 * Overrides the default orange theme colors
 */

/* CSS Custom Properties for Bootstrap 5 */
:root {
  --bs-primary: #2E7D32;
  --bs-primary-rgb: 46, 125, 50;
  --bs-link-color: #2E7D32;
  --bs-link-hover-color: #1B5E20;
}

/* Primary buttons */
.btn-primary {
  background-color: #2E7D32;
  border-color: #2E7D32;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #1B5E20;
  border-color: #1B5E20;
}

.btn-primary:disabled {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

/* Outline buttons */
.btn-outline-primary {
  color: #2E7D32;
  border-color: #2E7D32;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: #2E7D32;
  border-color: #2E7D32;
  color: #fff;
}

/* Links */
a {
  color: #2E7D32;
}

a:hover {
  color: #1B5E20;
}

/* Navigation */
.navbar .nav-link {
  color: #2E7D32;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #1B5E20;
}

.navbar .nav-link.active {
  color: #1B5E20;
}

/* Badge and accent colors */
.badge.bg-primary {
  background-color: #2E7D32 !important;
}

.text-primary {
  color: #2E7D32 !important;
}

.bg-primary {
  background-color: #2E7D32 !important;
}

/* Form elements */
.form-control:focus {
  border-color: #2E7D32;
  box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

.form-check-input:checked {
  background-color: #2E7D32;
  border-color: #2E7D32;
}

/* Footer - Dark green */
footer.footer {
  background-color: #1B5E20;
}

footer.footer a {
  color: rgba(255, 255, 255, 0.75);
}

footer.footer a:hover {
  color: #fff;
}

/* Card and UI accents */
.card-header.bg-primary {
  background-color: #2E7D32 !important;
}

/* Progress bar */
.progress-bar {
  background-color: #2E7D32;
}

/* Alert primary */
.alert-primary {
  background-color: rgba(46, 125, 50, 0.1);
  border-color: rgba(46, 125, 50, 0.2);
  color: #1B5E20;
}

/* Dropdown active */
.dropdown-item.active,
.dropdown-item:active {
  background-color: #2E7D32;
}

/* Pagination */
.page-link {
  color: #2E7D32;
}

.page-item.active .page-link {
  background-color: #2E7D32;
  border-color: #2E7D32;
}

.page-link:hover {
  color: #1B5E20;
}

/* Spinner */
.spinner-border.text-primary {
  color: #2E7D32 !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
  border-bottom: 3px solid #95a5a6;
}

.hero-section h1 {
  color: #1B5E20;
}

.hero-section .btn-primary {
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
  transform: translateY(-2px);
}

/* Footer improvements */
footer.footer {
  color: rgba(255, 255, 255, 0.9);
}

footer.footer h6,
footer.footer .footer-title {
  color: #fff;
}
