/*
Theme Name: Debt Relief Project
Theme URI: https://debtreliefproject.com
Author: Debt Relief Project
Author URI: https://debtreliefproject.com
Description: A clean, professional theme for the Debt Relief Project landing page
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: debt-relief-project
*/

/* =========================================
   CSS VARIABLES (Design Tokens)
   ========================================= */
:root {
  /* Colors */
  --background: #f5f4f2;
  --foreground: #1a1a2e;
  --card: #ffffff;
  --card-foreground: #1a1a2e;
  --primary: #2d2d44;
  --primary-foreground: #fafafa;
  --secondary: #e8e6e1;
  --secondary-foreground: #2d2d44;
  --muted: #e0ddd8;
  --muted-foreground: #5a5a6e;
  --accent: #2a9d8f;
  --accent-foreground: #fafafa;
  --border: #d8d4cf;

  /* Typography */
  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  /* Spacing */
  --radius: 0.75rem;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

.text-balance {
  text-wrap: balance;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
}

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

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

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground) !important;
}

.btn-accent:hover {
  opacity: 0.9;
}

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

.btn-rounded {
  border-radius: 9999px;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  max-width: 1024px;
}

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

.site-logo {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--foreground);
}

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

.nav-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--foreground);
}

.mobile-menu-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--foreground);
}

.mobile-nav {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.mobile-nav a:hover {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  padding: 7rem 0 4rem;
  background-color: var(--background);
}

@media (min-width: 1024px) {
  .hero {
    padding: 9rem 0 6rem;
  }
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background-color: rgba(42, 157, 143, 0.1);
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--accent);
  border-radius: 50%;
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.hero h1 {
  font-size: 2.25rem;
  color: var(--foreground);
}

.hero h1 span {
  display: block;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Hero Stats */
.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.stat-icon {
  width: 2.75rem;
  height: 2.75rem;
  background-color: rgba(42, 157, 143, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* =========================================
   SPONSORS SECTION
   ========================================= */
.sponsors {
  padding: 1.5rem 0 3.5rem;
}

.sponsors-title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

.sponsors-track-wrapper {
  position: relative;
  overflow: hidden;
  width: min(100%, 58rem);
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background-color: var(--card);
  padding: 0.65rem 0;
}

.sponsors-track {
  display: flex;
  width: max-content;
}

.sponsors-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 0 0 1rem;
}

.sponsor-logo-card {
  height: 4rem;
  min-width: 11rem;
  padding: 0.65rem 1.2rem;
  border-radius: 9999px;
  background-color: var(--background);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-logo-card img {
  max-height: 2.3rem;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: saturate(0) contrast(1.05);
  opacity: 0.82;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.sponsor-logo-card:hover img {
  filter: saturate(1) contrast(1);
  opacity: 1;
}

.sponsors-track-wrapper::before,
.sponsors-track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3.25rem;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.sponsors-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--card), rgba(255, 255, 255, 0));
}

.sponsors-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--card), rgba(255, 255, 255, 0));
}

.sponsors-track {
  will-change: transform;
}

@media (max-width: 640px) {
  .sponsor-logo-card {
    min-width: 8.75rem;
    height: 3.25rem;
    padding: 0.5rem 0.9rem;
  }

  .sponsor-logo-card img {
    max-height: 1.95rem;
  }
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem-section {
  padding: 5rem 0;
  background-color: var(--card);
}

@media (min-width: 1024px) {
  .problem-section {
    padding: 7rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3.5rem;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.pain-points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pain-points-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-point-card {
  padding: 1.5rem;
  background-color: var(--background);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.pain-point-card:hover {
  border-color: rgba(42, 157, 143, 0.4);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pain-point-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(42, 157, 143, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background-color 0.2s;
}

.pain-point-card:hover .pain-point-icon {
  background-color: rgba(42, 157, 143, 0.15);
}

.pain-point-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.pain-point-title {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.pain-point-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.research-callout {
  margin-top: 3.5rem;
  text-align: center;
}

.research-callout-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: var(--background);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.research-logo {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--accent);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.research-logo span {
  color: var(--accent-foreground);
  font-weight: 700;
  font-size: 0.875rem;
}

.research-text {
  font-size: 0.875rem;
  text-align: left;
}

.research-text strong {
  color: var(--foreground);
  font-weight: 500;
}

.research-text span {
  color: var(--muted-foreground);
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works {
  padding: 5rem 0;
  scroll-margin-top: 5rem;
}

@media (min-width: 1024px) {
  .how-it-works {
    padding: 8rem 0;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.step-card {
  position: relative;
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.step-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-number span {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

.step-highlight {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  background-color: rgba(42, 157, 143, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* =========================================
   ELIGIBILITY SECTION
   ========================================= */
.eligibility {
  padding: 5rem 0;
  background-color: var(--primary);
  scroll-margin-top: 5rem;
}

@media (min-width: 1024px) {
  .eligibility {
    padding: 8rem 0;
  }
}

.eligibility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .eligibility-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.eligibility-content .section-label {
  color: rgba(250, 250, 250, 0.7);
}

.eligibility-content .section-title {
  color: var(--primary-foreground);
}

.eligibility-content .section-subtitle {
  color: rgba(250, 250, 250, 0.8);
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

.eligibility-list {
  margin-top: 2.5rem;
}

.eligibility-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.eligibility-check {
  margin-top: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eligibility-check svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent-foreground);
}

.eligibility-text {
  color: var(--primary-foreground);
  font-size: 1.125rem;
}

.eligibility-cta {
  margin-top: 2.5rem;
}

.eligibility-cards {
  background-color: rgba(250, 250, 250, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(4px);
}

@media (min-width: 1024px) {
  .eligibility-cards {
    padding: 3rem;
  }
}

.eligibility-card {
  background-color: rgba(250, 250, 250, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.eligibility-card:last-child {
  margin-bottom: 0;
}

.eligibility-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}

.eligibility-card-text {
  color: rgba(250, 250, 250, 0.8);
  line-height: 1.6;
}

/* =========================================
   TEAM SECTION
   ========================================= */
.team {
  padding: 5rem 0;
  background-color: var(--card);
  scroll-margin-top: 5rem;
}

@media (min-width: 1024px) {
  .team {
    padding: 8rem 0;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background-color: var(--background);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.team-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team-avatar {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.2s;
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
}

.team-avatar span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--foreground);
}

.team-role {
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.25rem;
}

.team-institution {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.team-bio {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-top: 1rem;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq {
  padding: 5rem 0;
  scroll-margin-top: 5rem;
}

@media (min-width: 1024px) {
  .faq {
    padding: 8rem 0;
  }
}

.faq-list {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.active {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.2s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta {
  padding: 5rem 0;
  background-color: var(--card);
  scroll-margin-top: 5rem;
}

@media (min-width: 1024px) {
  .cta {
    padding: 8rem 0;
  }
}

.cta-box {
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
}

@media (min-width: 1024px) {
  .cta-box {
    padding: 6rem 4rem;
  }
}

.cta-decoration-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background-color: rgba(250, 250, 250, 0.05);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.cta-decoration-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12rem;
  height: 12rem;
  background-color: rgba(250, 250, 250, 0.05);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.875rem;
  color: var(--primary-foreground);
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(250, 250, 250, 0.8);
  line-height: 1.7;
}

.cta-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-contact {
  margin-top: 4rem;
  text-align: center;
}

.cta-contact h3 {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--foreground);
  margin-bottom: 1rem;
}

.cta-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.cta-contact-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.cta-contact-link a {
  color: var(--accent);
  font-weight: 500;
}

.cta-contact-link a:hover {
  text-decoration: underline;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  padding: 4rem 0;
  background-color: var(--primary);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary-foreground);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon span {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-foreground);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(250, 250, 250, 0.7);
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 250, 0.1);
  text-align: center;
}

.footer-ethics {
  font-size: 0.875rem;
  color: rgba(250, 250, 250, 0.6);
}

.footer-copyright {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(250, 250, 250, 0.6);
}

/* =========================================
   SCREEN READER ONLY
   ========================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
