/* Main Styles */

/* Variables */
:root {
  /* Colors */
  --color-navy: #0A2463;
  --color-royal-blue: #3E92CC;
  --color-light-blue: #D8E1E9;
  --color-white: #FFFFFF;
  --color-dark-grey: #333333;
  --color-medium-grey: #666666;
  --color-light-grey: #F5F5F5;
  
  /* Spacing */
  --space-xs: 0.8rem;
  --space-sm: 1.6rem;
  --space-md: 2.4rem;
  --space-lg: 3.2rem;
  --space-xl: 4.8rem;
  
  /* Border radius */
  --radius-sm: 0.4rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.6rem;
  
  /* Shadows */
  --shadow-sm: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
  --shadow-md: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.1);
}

/* Global Styles */
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section-title {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-navy);
  position: relative;
  padding-bottom: var(--space-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 0.4rem;
  background-color: var(--color-royal-blue);
  border-radius: var(--radius-sm);
}

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

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  z-index: 100;
  padding: var(--space-sm) 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  gap: var(--space-md);
}

nav ul li a {
  font-weight: 600;
  color: var(--color-navy);
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--color-royal-blue);
}

.btn-contact {
  background-color: var(--color-royal-blue);
  color: var(--color-white) !important;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: var(--color-navy);
}

/* Hero Section */
#hero {
  background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.8)), url('https://images.pexels.com/photos/167092/pexels-photo-167092.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--space-md);
}

.hero-content {
  max-width: 80rem;
}

.hero-content h1 {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.subtitle {
  font-size: 2.4rem;
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  background-color: var(--color-royal-blue);
  color: var(--color-white);
  font-weight: 600;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
  transform: translateY(-0.2rem);
}

/* Mission Section */
.mission-content {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6;
}

/* Services Section */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: var(--space-md);
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto var(--space-md);
  background-color: var(--color-light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-card h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-navy);
}

.service-card p {
  color: var(--color-medium-grey);
}

/* Service Icons */
.financial-aid::before {
  content: '$';
  font-size: 4rem;
  color: var(--color-navy);
  font-weight: 700;
}

.volunteer::before {
  content: '👥';
  font-size: 3.2rem;
}

.partnerships::before {
  content: '🤝';
  font-size: 3.2rem;
}

.supplies::before {
  content: '📦';
  font-size: 3.2rem;
}

/* Nonprofit Section */
.nonprofit-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  max-width: 100rem;
  margin: 0 auto;
}

.nonprofit-text {
  flex: 2;
}

.nonprofit-text p {
  margin-bottom: var(--space-md);
  font-size: 1.8rem;
  line-height: 1.6;
}

.nonprofit-seal {
  flex: 1;
  display: flex;
  justify-content: center;
}

.seal-inner {
  width: 15rem;
  height: 15rem;
  border: 0.4rem solid var(--color-navy);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-sm);
  text-align: center;
  font-weight: 700;
  color: var(--color-navy);
  position: relative;
}

.seal-inner::before {
  content: '';
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  border: 0.2rem dashed var(--color-royal-blue);
  border-radius: 50%;
}

.seal-inner span {
  display: block;
  line-height: 1.2;
}

.seal-inner span:nth-child(2) {
  font-size: 1.8rem;
  margin: var(--space-xs) 0;
}

/* Values Section */
.values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}

.value-item {
  text-align: center;
  width: 15rem;
}

.value-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto var(--space-sm);
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.value-item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-navy);
}

/* Value Icons */
.courage::before {
  content: '🦁';
  font-size: 3.2rem;
}

.integrity::before {
  content: '⚖️';
  font-size: 3.2rem;
}

.compassion::before {
  content: '❤️';
  font-size: 3.2rem;
}

.safety::before {
  content: '🛡️';
  font-size: 3.2rem;
}

.nondiscrimination::before {
  content: '🤲';
  font-size: 3.2rem;
}

/* Contact Section */
.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: var(--space-lg);
  max-width: 100rem;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-navy);
}

.contact-info p {
  color: var(--color-medium-grey);
}

.contact-info a {
  color: var(--color-royal-blue);
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--color-navy);
}

/* Contact Icons */
.address::before {
  content: '📍';
  font-size: 2.4rem;
}

.email::before {
  content: '📧';
  font-size: 2.4rem;
}

.phone::before {
  content: '📞';
  font-size: 2.4rem;
}

/* Footer */
footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-lg) 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-logo {
  margin-bottom: var(--space-sm);
}

.footer-info p {
  font-size: 1.4rem;
}