/* Syracuse Greens - Custom Stylesheet */
/* Eco-friendly design with Material Design patterns */

:root {
  --primary-dark: #2d5016;
  --primary-light: #6ba91a;
  --secondary: #4a7023;
  --accent: #8bc34a;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f5f9f2;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success: #4caf50;
  --info: #2196f3;
  --warning: #ff9800;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

/* Typography */
h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
  color: var(--primary-dark);
  border-left: 4px solid var(--primary-light);
  padding-left: 1rem;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--secondary);
}

h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.6rem;
  line-height: 1.8;
}

strong {
  color: var(--primary-dark);
  font-weight: 600;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Header & Navigation */
.navbar {
  background-color: var(--primary-dark);
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-brand {
  color: var(--bg-white) !important;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-left: 1rem;
  display: flex;
  align-items: center;
}

.navbar-brand:before {
  content: "🌱";
  margin-right: 0.5rem;
}

.nav-item a {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: var(--primary-light) !important;
  background-color: rgba(107, 169, 26, 0.1);
}

.nav-item.active a {
  color: var(--primary-light) !important;
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
  color: var(--bg-white);
  padding: 5rem 2rem;
  text-align: center;
  border-bottom: 4px solid var(--primary-light);
}

.hero h1 {
  color: var(--bg-white);
  margin-bottom: 1rem;
  font-size: 3.2rem;
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  max-width: 100%;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Main Container & Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  min-height: calc(100vh - 300px);
  padding: 3rem 0;
}

/* Section Styling */
section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

section:nth-child(even) {
  background-color: var(--bg-light);
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.card-header {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  border: none;
  padding: 1.5rem;
  color: var(--bg-white);
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--primary-dark);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.card-text {
  color: var(--text-light);
  line-height: 1.8;
}

/* Buttons */
.btn {
  border-radius: 6px;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-light);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 169, 26, 0.3);
}

.btn-outline-primary {
  color: var(--primary-light);
  border: 2px solid var(--primary-light);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-light);
  color: var(--bg-white);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--bg-white);
}

.btn-secondary:hover {
  background-color: var(--primary-dark);
}

.btn-lg {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
}

/* Grid & Layout */
.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.col-md-6 {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .row.two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Feature Icons */
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

/* Callout/Alert Boxes */
.callout {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-light);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.callout.highlight {
  background-color: rgba(107, 169, 26, 0.1);
  border-left-color: var(--primary-light);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
  color: rgba(255,255,255,0.9);
  padding: 3rem 2rem 1.5rem;
  margin-top: 3rem;
}

footer h5 {
  color: var(--bg-white);
  font-weight: 600;
  margin-bottom: 1rem;
}

footer a {
  color: var(--primary-light);
}

footer a:hover {
  color: var(--accent);
}

.footer-column {
  margin-bottom: 2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive Images */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  display: inline-block;
}

/* Page-specific Styles */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 2rem;
}

.breadcrumb-item {
  color: var(--text-light);
}

.breadcrumb-item.active {
  color: var(--primary-dark);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  main {
    padding: 1.5rem 0;
  }

  section {
    padding: 2rem 0;
  }

  .row {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1rem;
  }

  footer {
    padding: 2rem 1.5rem 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-3 {
  margin-top: 2rem !important;
}

.mb-3 {
  margin-bottom: 2rem !important;
}

.mb-4 {
  margin-bottom: 3rem !important;
}

.py-4 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-5 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.bg-dark {
  background-color: var(--primary-dark) !important;
}

.text-muted {
  color: var(--text-light) !important;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
  .navbar,
  footer {
    display: none;
  }
}
