/* ========================================
   Waymaker Boxing - Main Stylesheet
   ======================================== */

/* CSS Reset & Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@400;500;600;700&display=swap');

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

:root {
  --color-red: #e42129;
  --color-red-dark: #c91d24;
  --color-black: #000000;
  --color-dark-gray: #333333;
  --color-light-gray: #f5f5f5;
  --color-medium-gray: #e0e0e0;
  --color-white: #ffffff;

  --font-family: 'Saira Condensed', sans-serif;

  --header-height: 80px;
  --container-max-width: 1200px;
  --section-padding: 80px 0;
  --section-padding-mobile: 50px 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark-gray);
  background-color: var(--color-white);
  padding-top: 90px;
}

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

a {
  color: var(--color-red);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-red-dark);
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn-primary:hover,
.btn-donate:hover {
  background-color: var(--color-red-dark);
  color: var(--color-white);
}

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

.btn-secondary:hover {
  background-color: var(--color-dark-gray);
  color: var(--color-white);
}

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

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

.btn-small {
  padding: 8px 20px;
  font-size: 12px;
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ========================================
   Header & Navigation
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-red);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-red);
}

/* Header Brand Block */
.header-brand-block {
  display: flex;
  align-items: center;
  background-color: var(--color-black);
  padding: 10px 20px;
  text-decoration: none;
  gap: 15px;
}

.header-brand-block img {
  height: 50px;
  width: auto;
}

.header-brand-block .brand-text {
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.header-brand-block:hover {
  background-color: var(--color-dark-gray);
}

/* Navigation Dropdowns */
.nav-links > li {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1001;
  margin-top: 10px;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--color-dark-gray);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover {
  background-color: var(--color-light-gray);
  color: var(--color-red);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-black);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 90px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 90px);
    background: #fff;
    flex-direction: column;
    padding: 30px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }

  .main-nav.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .btn-donate {
    width: 100%;
    text-align: center;
  }

  /* Mobile dropdowns */
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links > li.dropdown-open .nav-dropdown {
    max-height: 300px;
  }

  .nav-dropdown a {
    padding: 8px 20px 8px 30px;
    font-size: 14px;
  }

  .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dropdown-arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .nav-links > li.dropdown-open .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* Floating Donate Tab */
.floating-donate {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.floating-donate a {
  display: block;
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 20px 12px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.floating-donate a:hover {
  background-color: var(--color-red-dark);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .floating-donate {
    display: none;
  }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  animation: heroFade 25s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide:nth-child(5) { animation-delay: 20s; }

@keyframes heroFade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  20% { opacity: 1; }
  24% { opacity: 0; }
  100% { opacity: 0; }
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Hero Content */
.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #fff;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero .btn-outline {
  border-color: #fff;
  color: #fff;
}

.hero .btn-outline:hover {
  background-color: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}

/* ========================================
   Page Hero (Interior Pages)
   ======================================== */
.page-hero {
  padding: 60px 0;
  background-color: var(--color-light-gray);
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 800px;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }
}

/* ========================================
   Sections
   ======================================== */
.section {
  padding: var(--section-padding);
}

.section-gray {
  background-color: var(--color-light-gray);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header p {
  color: var(--color-dark-gray);
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile);
  }

  .section-header {
    margin-bottom: 30px;
  }
}

/* ========================================
   Cards Grid
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background-color: var(--color-white);
  padding: 30px;
  border: 1px solid var(--color-medium-gray);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card .btn,
.card .btn-group {
  margin-top: auto;
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-red);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
}

.card p {
  color: var(--color-dark-gray);
  margin-bottom: 0;
}

.card .btn-group {
  margin-top: 20px;
}

.card-label {
  display: inline-block;
  background-color: var(--color-medium-gray);
  color: var(--color-dark-gray);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 15px;
}

/* Boxing Ring Section */
.boxing-ring-section {
  position: relative;
  padding: 60px 40px;
  background-image:
    linear-gradient(to right, rgba(228, 33, 41, 0.1) 2px, transparent 2px),
    linear-gradient(to bottom, rgba(228, 33, 41, 0.1) 2px, transparent 2px);
  background-size: 100% 100%;
  border: 3px solid rgba(228, 33, 41, 0.2);
}

.boxing-ring-section::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(228, 33, 41, 0.15);
  pointer-events: none;
}

.ring-corners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.ring-corner {
  background-color: var(--color-white);
  padding: 30px;
  border: 1px solid var(--color-medium-gray);
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 150px;
}

.ring-corner h3 {
  color: var(--color-red);
  margin-bottom: 0;
  transition: margin-bottom 0.3s ease;
}

.ring-corner .corner-description {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.ring-corner:hover {
  box-shadow: 0 5px 25px rgba(228, 33, 41, 0.15);
  border-color: var(--color-red);
}

.ring-corner:hover h3 {
  margin-bottom: 15px;
}

.ring-corner:hover .corner-description {
  max-height: 200px;
  opacity: 1;
  margin-top: 15px;
}

.ring-corner .corner-description p {
  margin-bottom: 0;
  color: var(--color-dark-gray);
}

@media (max-width: 768px) {
  .ring-corners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ring-corner .corner-description {
    max-height: none;
    opacity: 1;
    margin-top: 15px;
  }

  .ring-corner h3 {
    margin-bottom: 15px;
  }

  .boxing-ring-section {
    padding: 30px 20px;
  }
}

@media (max-width: 1024px) {
  .cards-grid-3,
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ========================================
   Program Cards (Larger)
   ======================================== */
.program-card {
  background-color: var(--color-white);
  padding: 40px;
  border: 1px solid var(--color-medium-gray);
}

.program-card h3 {
  color: var(--color-red);
  margin-bottom: 10px;
}

.program-card .partners {
  font-weight: 600;
  margin-bottom: 10px;
}

.program-card .serves {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--color-dark-gray);
}

/* ========================================
   Membership Cards
   ======================================== */
.membership-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.membership-card {
  background-color: var(--color-white);
  border: 2px solid var(--color-medium-gray);
  padding: 40px;
  text-align: center;
  flex: 1;
  max-width: 350px;
  min-width: 280px;
}

.membership-card h3 {
  margin-bottom: 15px;
}

.membership-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 10px;
}

.membership-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-dark-gray);
}

/* ========================================
   Schedule Cards
   ======================================== */
.schedule-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-medium-gray);
  padding: 30px;
  margin-bottom: 20px;
}

.schedule-card h3 {
  color: var(--color-red);
  margin-bottom: 15px;
}

.schedule-card .details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.schedule-card .detail-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-dark-gray);
  margin-bottom: 5px;
}

/* ========================================
   Content Sections
   ======================================== */
.content-section {
  margin-bottom: 50px;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  margin-bottom: 20px;
}

.content-section ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 1rem;
}

.content-section ul li {
  margin-bottom: 8px;
}

.content-section .note {
  font-style: italic;
  color: var(--color-dark-gray);
  margin-top: 15px;
}

/* Values List */
.values-list {
  list-style: none !important;
  padding-left: 0 !important;
}

.values-list li {
  margin-bottom: 15px !important;
  padding-left: 0;
}

.values-list li strong {
  color: var(--color-red);
}

/* ========================================
   Leadership Section
   ======================================== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.leader-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.leader-photo {
  width: 100%;
  height: 350px;
  background-color: var(--color-medium-gray);
  display: block;
  margin-bottom: 25px;
  object-fit: cover;
  object-position: top center;
}

.leader-bio {
  padding: 20px 0;
}

.leader-bio h3 {
  color: var(--color-red);
  margin-bottom: 5px;
}

.leader-bio .title {
  font-weight: 600;
  margin-bottom: 15px;
}

.leader-card h3 {
  color: var(--color-red);
  margin-bottom: 5px;
}

.leader-card .title {
  font-weight: 600;
  margin-bottom: 5px;
}

.leader-card .subtitle {
  font-style: italic;
  color: var(--color-dark-gray);
  margin-bottom: 15px;
}

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

/* Simple List */
.simple-list {
  list-style: none !important;
  padding-left: 0 !important;
  column-count: 2;
  column-gap: 30px;
}

.simple-list li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .simple-list {
    column-count: 1;
  }
}

/* ========================================
   Partners Section
   ======================================== */
.partners-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 20px 0;
}

.partner-placeholder {
  flex-shrink: 0;
  width: 150px;
  height: 80px;
  background-color: var(--color-medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
}

.partner-logo {
  flex-shrink: 0;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex-shrink: 0;
  width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--color-dark-gray);
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-black);
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.slider-btn {
  background: none;
  border: 2px solid var(--color-black);
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-medium-gray);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: var(--color-red);
}

/* ========================================
   Instagram Placeholder
   ======================================== */
.instagram-placeholder {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 0 auto;
  background-color: var(--color-medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

/* ========================================
   Forms
   ======================================== */
.form-section {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-black);
}

.form-group label .required {
  color: var(--color-red);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  font-family: var(--font-family);
  font-size: 16px;
  border: 1px solid var(--color-medium-gray);
  background-color: var(--color-white);
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Radio & Checkbox Groups */
.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-group label,
.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}

.radio-group input,
.checkbox-group input {
  margin-top: 4px;
  accent-color: var(--color-red);
}

/* Form Row (Side by Side) */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

/* Form Section Title */
.form-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-black);
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-light-gray);
}

/* Form Note */
.form-note {
  font-size: 14px;
  color: var(--color-dark-gray);
  font-style: italic;
  margin-top: 5px;
}

/* Form Messages */
.form-message {
  padding: 15px 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Submit Button */
.form-submit {
  margin-top: 30px;
}

.btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ========================================
   Contact Info Section
   ======================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info address {
  font-style: normal;
  margin-bottom: 20px;
  line-height: 1.8;
}

.contact-info .social-links a {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 60px 0 0;
}

.footer-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-brand img {
  height: 50px;
}

.footer-brand .brand-name {
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-brand .tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h4 {
  color: var(--color-white);
  font-size: 14px;
  margin-bottom: 20px;
}

.site-footer address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.site-footer address a {
  color: var(--color-white);
}

.site-footer address a:hover {
  color: var(--color-red);
}

.footer-social .social-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-social .social-links a:hover {
  color: var(--color-white);
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--color-white);
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  padding: 10px 15px;
  border: none;
  font-family: var(--font-family);
  font-size: 14px;
}

.newsletter-form .btn {
  padding: 10px 20px;
  white-space: nowrap;
  width: 100%;
}

/* Footer Legal */
.footer-legal {
  max-width: var(--container-max-width);
  margin: 40px auto 0;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-legal p {
  margin-bottom: 5px;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
  text-align: center;
}

.text-red {
  color: var(--color-red);
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* Placeholder Images */
.placeholder-image {
  background-color: var(--color-medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

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

/* CTA Section */
.cta-section {
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 15px;
}

.cta-section p {
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background-color: var(--color-white);
  color: var(--color-red);
}

.cta-section .btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* Financial Assistance Box */
.assistance-box {
  background-color: var(--color-light-gray);
  padding: 30px;
  margin-top: 40px;
}

.assistance-box h3 {
  margin-bottom: 15px;
}

.assistance-box .btn-group {
  margin-top: 20px;
}

/* Info Box */
.info-box {
  background-color: var(--color-light-gray);
  padding: 25px;
  margin-top: 30px;
}

.info-box h4 {
  margin-bottom: 10px;
}

.info-box ul {
  list-style: disc;
  padding-left: 20px;
}

.info-box ul li {
  margin-bottom: 5px;
}

/* Social Buttons */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-btn {
  min-width: 150px;
}

/* Social Media Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background-color: var(--color-white);
  border: 2px solid var(--color-medium-gray);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.social-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.social-card:hover .social-icon {
  transform: scale(1.1);
}

.social-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 5px;
}

.social-handle {
  font-size: 14px;
  color: var(--color-dark-gray);
}

/* Social Card Colors */
.social-instagram .social-icon { color: #E4405F; }
.social-instagram:hover { border-color: #E4405F; }

.social-facebook .social-icon { color: #1877F2; }
.social-facebook:hover { border-color: #1877F2; }

.social-x .social-icon { color: #000000; }
.social-x:hover { border-color: #000000; }

.social-tiktok .social-icon { color: #000000; }
.social-tiktok:hover { border-color: #000000; }

.social-linkedin .social-icon { color: #0A66C2; }
.social-linkedin:hover { border-color: #0A66C2; }

.social-youtube .social-icon { color: #FF0000; }
.social-youtube:hover { border-color: #FF0000; }

.social-threads .social-icon { color: #000000; }
.social-threads:hover { border-color: #000000; }

.social-bluesky .social-icon { color: #0085FF; }
.social-bluesky:hover { border-color: #0085FF; }

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

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

/* Instagram CTA Card */
.instagram-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.instagram-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 50px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(188, 24, 136, 0.4);
  color: var(--color-white);
}

.instagram-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.instagram-content {
  display: flex;
  flex-direction: column;
}

.instagram-handle {
  font-size: 24px;
  font-weight: 700;
}

.instagram-text {
  font-size: 16px;
  opacity: 0.9;
}

/* Social Links Row */
.social-links-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-light-gray);
  border-radius: 50%;
  color: var(--color-dark-gray);
  transition: all 0.3s ease;
}

.social-link-icon svg {
  width: 24px;
  height: 24px;
}

.social-link-icon:hover {
  background-color: var(--color-red);
  color: var(--color-white);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .instagram-card {
    padding: 20px 30px;
    flex-direction: column;
    text-align: center;
  }

  .instagram-icon {
    width: 50px;
    height: 50px;
  }

  .instagram-handle {
    font-size: 20px;
  }
}

/* PushPress Embeds */
.pushpress-embed {
  background-color: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
}

.pushpress-embed iframe {
  display: block;
}

@media (max-width: 768px) {
  .pushpress-embed iframe {
    height: 600px !important;
  }
}
