/* Athletic Donations Marketing Site Styles - Martial Arts Theme */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;600;700&family=Oswald:wght@600;700&display=swap');

:root {
  --primary: #ed6a1a;           /* Logo orange (buttons, CTAs, "DONATIONS") */
  --primary-dark: #cf590f;      /* Darker orange on hover */
  --secondary: #1b2a4d;         /* Logo navy (structure, headers) */
  --accent: #2b5ba8;            /* Logo royal blue (swoosh highlights) */
  --red: #e0392b;               /* Logo red accent */
  --text: #1c2742;              /* Navy-charcoal text */
  --text-light: #5a6377;        /* Muted blue-gray text */
  --bg: #ffffff;                /* White background */
  --bg-light: #f3f5f9;          /* Light blue-gray sections */
  --border: rgba(27, 42, 77, 0.15); /* Navy-tinted borders */
  --shadow: 0 5px 20px rgba(27,42,77,0.1);
  --shadow-lg: 0 6px 25px rgba(27,42,77,0.15);
  --panel-bg: #ffffff;          /* White card/panel background */
  --footer-bg: #16223f;         /* Navy footer */
  --card-bg: #ffffff;           /* Card background */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Assistant', ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
nav {
  background: var(--panel-bg);
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

nav .logo {
  height: 75px;
  width: auto;
}

nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 17px;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--primary);
}

nav .cta-button {
  background: var(--primary);
  color: white !important;
  padding: 0.667em 1.333em;
  border-radius: 9999px;
  font-weight: 700;
  transition: background 0.2s;
}

nav .cta-button:hover {
  background: var(--primary-dark);
  color: white !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #16223f 0%, #25365f 100%);
  padding: 6rem 2rem;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 88px;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #f2f2f2;
}

.hero .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.button, .btn {
  display: inline-block;
  padding: 0.8em 2em;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
}

.button-primary, .btn-primary {
  background: var(--primary);
  color: white;
}

.button-primary:hover, .btn-primary:hover {
  background: var(--primary-dark);
}

.button-secondary, .btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.button-secondary:hover, .btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* Sections */
.section {
  padding: 4rem 2rem;
}

.section-alt {
  background: var(--bg-light);
}

h2 {
  font-size: 42px;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.pricing-card.featured {
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

/* Pricing card hover effect (for clickable cards) */
a .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.price {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.price-period {
  font-size: 1.5rem;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: #f2f2f2;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-section h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #f2f2f2;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #8c8b8b;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* FAQ */
.faq-item {
  background: white;
  padding: 2rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  nav .nav-links {
    display: none;
  }

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 968px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
