/* RIMSON Bootstrap Template Shared Styles */

:root {
  --rimson-primary: #c0a062;
  --rimson-primary-dark: #a88a4a;
  --rimson-secondary: #000000;
  --rimson-light: #fdfbf7;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: #333;
  background-color: var(--rimson-light);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--rimson-primary) 0%,
    var(--rimson-primary-dark) 100%
  );
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* Section Styling */
.section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--rimson-primary-dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--rimson-primary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 800px;
}

/* Card Styling */
.mission-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(192, 160, 98, 0.2);
  border-color: var(--rimson-primary);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--rimson-primary) 0%,
    var(--rimson-primary-dark) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 20px;
}

.mission-card h3 {
  color: var(--rimson-primary-dark);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.mission-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Values Section */
.values-section {
  background: white;
}

.value-item {
  padding: 25px;
  border-left: 4px solid var(--rimson-primary);
  background: var(--rimson-light);
  margin-bottom: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.value-item h4 {
  color: var(--rimson-primary-dark);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-item i {
  color: var(--rimson-primary);
  font-size: 1.25rem;
}

.value-item p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Objectives Section */
.objective-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: white;
  border-radius: 30px;
  margin: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.objective-badge:hover {
  border-color: var(--rimson-primary);
  transform: scale(1.05);
}

.objective-badge i {
  color: var(--rimson-primary);
  margin-right: 10px;
  font-size: 1.1rem;
}

.objective-badge span {
  color: #333;
  font-weight: 500;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(
    135deg,
    var(--rimson-primary-dark) 0%,
    var(--rimson-primary) 100%
  );
  color: white;
  padding: 60px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* CTA Section */
.cta-section {
  background: var(--rimson-light);
  padding: 80px 0;
}

.cta-card {
  background: white;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.cta-card h2 {
  color: var(--rimson-primary-dark);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-card p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Buttons */
.btn-primary-rimson {
  background: var(--rimson-primary);
  border: none;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: white;
}

.btn-primary-rimson:hover {
  background: var(--rimson-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 160, 98, 0.3);
  color: white;
}

.btn-outline-rimson {
  border: 2px solid var(--rimson-primary);
  color: var(--rimson-primary-dark);
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-rimson:hover {
  background: var(--rimson-primary);
  color: white;
  transform: translateY(-2px);
}

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

  .section-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-card {
    padding: 30px 20px;
  }
}
