@charset "utf-8";
/* CSS Document */
/* ==========================================================================
   Altrusa Bentonville/Bella Vista — 2026-main.css
   Pure CSS redesign — no framework dependency
   ========================================================================== */

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #333333;
  background-color: #f5f9fc;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1a5f8a;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Layout — Page Wrapper
   -------------------------------------------------------------------------- */

.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: #f5f9fc;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

/* --------------------------------------------------------------------------
   Grid System
   -------------------------------------------------------------------------- */

.row {
  display: grid;
  gap: 24px;
  padding: 24px 20px;
}

.row-2 { grid-template-columns: 1fr 1fr; }
.row-3 { grid-template-columns: 1fr 1fr 1fr; }
.row-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.row-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 768px) {
  .row-2,
  .row-3,
  .row-4,
  .row-6 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .row-4,
  .row-6 {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  width: 100%;
  background: linear-gradient(180deg, #d9ebf2 15%, #99d1e7 100%);
}

.site-header img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.site-nav {
  background: linear-gradient(180deg, #d9ebf2 0%, #99d1e7 100%);
  border-bottom: 2px solid #3a8bb5;
  position: relative;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}

.nav-menu {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
}

.nav-menu li a {
  display: block;
  font-family: 'Yeseva One', cursive;
  font-size: 16px;
  color: #0d3a52;
  padding: 10px 14px;
  line-height: 1.3;
  border-right: 0.5px solid rgba(58, 139, 181, 0.3);
  text-decoration: none;
  transition: background 0.2s;
}

.nav-menu li:last-child a {
  border-right: none;
}

.nav-menu li a:hover {
  background: rgba(58, 139, 181, 0.15);
  text-decoration: none;
}

.nav-menu li a.active {
  background: rgba(58, 139, 181, 0.2);
  font-weight: 700;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: #0d3a52;
  font-size: 24px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    border-top: 0.5px solid rgba(58, 139, 181, 0.3);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li a {
    border-right: none;
    border-bottom: 0.5px solid rgba(58, 139, 181, 0.3);
    text-align: center;
    padding: 12px 16px;
  }
}

/* --------------------------------------------------------------------------
   Motto Bar
   -------------------------------------------------------------------------- */

.motto-bar {
  background: #ffffff;
  border-bottom: 0.5px solid #cce4f0;
  text-align: center;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.motto-label { color: #1a5f8a; }
.motto-patriotism { color: #b71c1c; }
.motto-efficiency { color: #0d0b09; }
.motto-service { color: #1a5f8a; }

/* --------------------------------------------------------------------------
   Page Content Area
   -------------------------------------------------------------------------- */

.site-content {
  background: #ffffff;
  padding: 0;
  overflow: visible;
}

/* --------------------------------------------------------------------------
   Section Headings
   -------------------------------------------------------------------------- */

.section-title {
  font-family: 'Yeseva One', cursive;
  color: #1a5f8a;
  font-size: 22px;
  text-align: center;
  padding: 20px 20px 0;
}

.section-title-left {
  font-family: 'Yeseva One', cursive;
  color: #1a5f8a;
  font-size: 20px;
  padding: 20px 20px 0;
}

/* --------------------------------------------------------------------------
   Hero Section (index page)
   -------------------------------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px 20px;
  align-items: center;
  background: #ffffff;
}

.hero-text h2 {
  font-family: 'Yeseva One', cursive;
  color: #1a5f8a;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 16px;
  color: #444444;
  line-height: 1.7;
  margin-bottom: 14px;
}

.hero-text a.btn {
  display: inline-block;
  background: #1a5f8a;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.hero-text a.btn:hover {
  background: #0d3a52;
  text-decoration: none;
}

.hero-image {
  border-radius: 8px;
  overflow: hidden;
  border: 0.5px solid #99d1e7;
  aspect-ratio: 500 / 395;
  background: #f0f8fd;
}

.hero-image img {
  width: 100%;
  height: auto;
}

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

/* --------------------------------------------------------------------------
   About Strip
   -------------------------------------------------------------------------- */

.about-strip {
  background: #f0f8fd;
  border-top: 3px solid #3a8bb5;
  border-bottom: 3px solid #3a8bb5;
  padding: 20px;
}

.about-strip p {
  font-size: 18px;
  color: #0d0b09;
  font-weight: 600;
  line-height: 1.6;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Feature Cards
   -------------------------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 20px;
  background: #ffffff;
}

.card {
  background: #f0f8fd;
  border: 0.5px solid #99d1e7;
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(58, 139, 181, 0.15);
}

.card i {
  font-size: 28px;
  color: #3a8bb5;
  margin-bottom: 10px;
  display: block;
}

.card h3 {
  font-family: 'Yeseva One', cursive;
  color: #0d3a52;
  font-size: 15px;
  margin-bottom: 6px;
}

.card p {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
}

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

/* --------------------------------------------------------------------------
   General Content Paragraphs
   -------------------------------------------------------------------------- */

.content-section {
  padding: 20px;
  background: #ffffff;
}

.content-section p {
  font-size: 16px;
  color: #5e5955;
  line-height: 1.6;
  margin-bottom: 12px;
}

.content-section h2 {
  font-family: 'Yeseva One', cursive;
  color: #1a5f8a;
  font-size: 20px;
  margin-bottom: 12px;
}

.content-section h3 {
  font-family: 'Yeseva One', cursive;
  color: #0d3a52;
  font-size: 17px;
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   Two-column content layout
   -------------------------------------------------------------------------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px 20px;
}

.two-col.img-right {
  align-items: center;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Newsletter / Link Lists
   -------------------------------------------------------------------------- */

.link-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 20px 0;
  align-items: start;
}

@media (max-width: 768px) {
  .link-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .link-list-grid {
    grid-template-columns: 1fr;
  }
}

.link-list h3 {
  font-family: 'Yeseva One', cursive;
  color: #0d3a52;
  font-size: 16px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #3a8bb5;
}

.link-list ul {
  list-style: none;
}

.link-list ul li {
  margin-bottom: 6px;
}

.link-list ul li a {
  font-size: 14px;
  color: #1a5f8a;
  font-weight: 600;
  text-decoration: none;
}

.link-list ul li a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Officers / Info Tables
   -------------------------------------------------------------------------- */

.info-block {
  padding: 0 20px 20px;
}

.info-block h3 {
  font-family: 'Yeseva One', cursive;
  color: #1a5f8a;
  font-size: 17px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #3a8bb5;
}

.info-block p,
.info-block li {
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
}

.info-block a {
  color: #1a5f8a;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer-bar {
  background-color: #b8ddf0 !important;
  border-top: 3px solid #3a8bb5;
  border-bottom: 3px solid #3a8bb5;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  clear: both;
  width: 100%;
}

.footer-motto {
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  flex: 1;
  padding-left: 16px;
}

.footer-donate-fb {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-fb-right {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.footer-donate-fb img {
  display: inline-block;
}

.footer-copy {
  background: #0d3a52;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  color: #99d1e7;
}

.footer-copy a {
  color: #b8ddf0;
  text-decoration: underline;
}

.footer-copy a:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */

.text-center { text-align: center; }
.text-justify { text-align: justify; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.px-2 { padding-left: 16px; padding-right: 16px; }
.px-3 { padding-left: 24px; padding-right: 24px; }

.highlight-red { color: #b71c1c; font-weight: 700; }
.highlight-blue { color: #1a5f8a; font-weight: 700; }
.highlight-dark { color: #0d0b09; font-weight: 700; }