/* Custom Styles for Eagle Referral Network */
:root {
  --primary-color: #205081 !important;
  --danger-color: #dc2626;
  --warning-color: #f59e0b;
  --light-color: #f8f9fa;
  --dark-color: #212529;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
}

html {
  scroll-behavior: smooth;
}

/* Navigation */
.navbar {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-size: 1.3rem;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #205081 !important;
}

/* Ensure all h- tags with text-primary use consistent color */
h1.text-primary,
h2.text-primary,
h3.text-primary,
h4.text-primary,
h5.text-primary,
h6.text-primary {
  color: #205081 !important;
}

/* Freedom Quest Section */
.freedom-section {
  position: relative;
}

.freedom-banner {
  position: relative;
  overflow: hidden;
}

.freedom-overlay {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}

.freedom-quest-logo img {
  width: 150px;
  height: 150px;
  border: 5px solid white;
}

.video-section {
  min-height: 200px;
  text-align: center;
}

.video-section iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.video-placeholder {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 10px;
}

.appointment-section {
  background: #f8f9fa;
}

.appointment-box {
  background: white;
  border: 2px solid #205081;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

/* Ignite America Section */
.ignite-section {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 0px;
  min-height: 100vh;
}

.ignite-banner {
  background-image: url("./public/ignite.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ignite-title {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ffd700, #ffaa00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  line-height: 0.9;
  margin-bottom: 1rem; 
}

.ignite-details {
  position: relative;
  text-align: center;
  margin-top: auto;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.ignite-details h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.ignite-details h3 {
  font-size: 2rem;
  font-weight: bold;
}

.ignite-details h4 {
  font-size: 1.5rem;
}

.barry-image {
  position: absolute;
  top: 20px;
  right: 20px;
  text-align: center;
  z-index: 2;
}

.barry-image img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

.book-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #ffd700, #ffaa00);
  padding: 10px;
  border-radius: 8px;
  transform: rotate(-5deg);
  float: right;
}

.book-title {
  font-weight: bold;
  font-size: 0.9rem;
  color: #000;
  text-align: center;
  line-height: 1.1;
}

.meeting-card {
  background: white;
  border: 3px solid;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.meeting-card.border-danger {
  border-color: var(--danger-color);
}

.meeting-card.border-primary {
  border-color: #205081;
}

.card-header {
  padding: 1.5rem;
  border: none;
}

.network-banner {
  background: #205081;
  padding: 10px;
  border-radius: 5px;
  margin-top: 1rem;
  border:2px solid #dc2626;
}

.eagle-leadership {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid #205081;
  margin-top: 1rem;
}

/* Business Opportunities */
.opportunity-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  border: 3px solid #205081;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-details {
  font-size: 1.1rem;
  font-weight: bold;
}

.realtor-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  border: 3px solid var(--danger-color);
  text-align: center;
}

.realtor-info p {
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

/* Business Opportunities Row - Equal Height Columns */
.business-opportunities-row {
  display: flex;
  align-items: stretch;
}

.business-opportunities-row .col-lg-8,
.business-opportunities-row .col-lg-4 {
  display: flex;
  flex-direction: column;
}

.opportunity-card,
.realtor-card {
  flex: 1;
  /* display: flex; */
  flex-direction: column;
  justify-content: space-between;
}

/* Directory Section */
.directory-section {
  background: white;
  padding: 4rem 0;
}

.directory-header {
  text-align: center;
  padding: 2rem;
}

.directory-header h1 {
  font-size: 3rem;
  font-weight: bold;
}

.eagle-image {
  max-width: 150px;
  height: auto;
}

.directory-main img {
  max-width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
}

.reserve-spot {
  background: white;
  border: 3px solid var(--danger-color);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.directory-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.flag-background {
  background: linear-gradient(45deg, 
    #b22234 0%, #b22234 7.69%, 
    #ffffff 7.69%, #ffffff 15.38%,
    #b22234 15.38%, #b22234 23.07%,
    #ffffff 23.07%, #ffffff 30.76%,
    #b22234 30.76%, #b22234 38.45%,
    #ffffff 38.45%, #ffffff 46.14%,
    #b22234 46.14%, #b22234 53.83%,
    #3c3b6e 53.83%, #3c3b6e 100%);
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.directory-content {
  background: rgba(60, 59, 110, 0.9);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.directory-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.eagle-head {
  max-width: 150px;
  height: auto;
  border-radius: 50%;
}

.community-banner {
  background: var(--danger-color);
  padding: 1rem;
  text-align: center;
  margin-top: 1rem;
  border-radius: 10px;
}

.community-banner h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

/* Social Links */
.social-links a {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #205081 !important;
  transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
  position: relative;
  /* min-height: 500px; */
  overflow: hidden;
  margin-top: 76px; /* Account for fixed navbar */
}

.hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}

.hero-text {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  line-height: 1.1;
}

.hero-tagline {
  background: rgba(139, 0, 0, 0.8);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.hero-tagline p {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  color: white;
}

.hero-tagline p:last-child {
  margin-bottom: 0;
}

/* Community Banner Section */
.community-banner-section {
  background: white;
  padding: 0;
}

.community-strip {
  background: #205081;
  border-top: 4px solid #dc2626;
  border-bottom: 4px solid #dc2626;
  padding: 1rem 0;
  text-align: center;
}

.community-text {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
  }
  
  .hero-tagline p {
    font-size: 1.1rem;
  }
  
  .ignite-title {
    font-size: 2.5rem;
  }
  
  .ignite-details h2 {
    font-size: 1.8rem;
  }
  
  .ignite-details h3 {
    font-size: 1.5rem;
  }
  
  .video-section iframe {
    width: 100%;
    height: 250px;
  }
  
  .ignite-banner {
    min-height: 400px;
    padding: 1rem;
    background-size: cover;
    background-position: center top;
  }
  
  .ignite-details {
    padding: 0.5rem;
    max-width: 90%;
  }
  
  .barry-image {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .barry-image img {
    max-height: 200px;
  }
  
  .directory-header h1 {
    font-size: 2rem;
  }
  
  .directory-content h1 {
    font-size: 1.8rem;
  }
  
  .community-banner h2 {
    font-size: 1.2rem;
  }

  .freedom-overlay {
    right: 20px;
  }

  .freedom-quest-logo img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .ignite-title {
    font-size: 2rem;
  }
  
  .ignite-banner {
    min-height: 300px;
    padding: 0.5rem;
    background-size: cover;
    background-position: center top;
  }
  
  .ignite-details h2 {
    font-size: 1.5rem;
  }
  
  .ignite-details h3 {
    font-size: 1.2rem;
  }
  
  .ignite-details h4 {
    font-size: 1rem;
  }
  
  .ignite-details {
    padding: 0.5rem;
    max-width: 95%;
  }
  
  .barry-image img {
    max-height: 150px;
  }
  
  .card-header {
    padding: 1rem;
  }
  
  .opportunity-card {
    padding: 1.5rem;
  }
  
  .directory-content {
    padding: 1.5rem;
  }

  .appointment-box {
    padding: 1rem;
  }
}


    /* Base styling for image containers */
    .image-container {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3; /* maintain proportional image boxes */
      overflow: hidden;
    }

    .image-container img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; /* ensures images fill container nicely */
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    /* Center image overlap and emphasis */
    .center-image-container {
      position: relative;
      top: -30px;
      z-index: 2;
      transform: scale(1.05);
    }

    /* .center-image-container img {
      box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
    } */

    Optional hover animation
    .image-container img:hover {
      transform: scale(1.08);
    }


/* Overlapping effect for first row */
    .image-row {
      position: relative;
      z-index: 1;
      margin-bottom: 4rem;
    }
    .image-row .center-img {
      position: relative;
      top: -30px; /* Raise center image slightly */
      z-index: 2; /* Bring above side images */
      transform: scale(1.05); /* Slightly enlarge for depth */
    }
    .image-row img {
      transition: all 0.3s ease;
    }
    .image-row img:hover {
      transform: scale(1.08);
    }

.red-box {
  font-weight: bolder;
  padding: 15px;
  background-color: #a60502;
  color:#fff;
  text-align:center;
}

.blue-box {
  font-weight: 800;
  padding: 3px;
  background-color: #205081;
  color:#fff;
}
.blue-banner {
  background-color:#205081; 
  text-align: center; 
  padding: 15px;
  color: #fff;
}

.lt-blue-box {
  font-weight: 800;
  padding: 3px;
  background-color: #2a67a5;
  color:#fff;
}

.help-block {
  font-weight: bolder;
  text-align: center;
  color:#205081;
  padding: 15px;
}

.img-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    overflow: hidden;
    margin-bottom:5px;
}

.gigantic-txt h1 {
    font-size: 50px;
}

ul.checkmark-list {
  list-style: none; /* remove default bullets */
  padding: 0;
}

ul.checkmark-list li {
  position: relative;
  padding-left: 35px; /* extra space for bigger checkmark */
  margin-bottom: 10px;
  font-size: 1.1rem; /* adjust list text size if needed */
}

ul.checkmark-list li::before {
  content: "✔";
  color: #205081;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5em; /* roughly matches h2 size */
  font-weight: bold;
  line-height: 1;
}

ul.diamond-list {
  list-style: none; /* remove default bullets */
  padding: 0;
}

ul.diamond-list li {
  position: relative;
  padding-left: 35px; /* space for diamond */
  margin-bottom: 10px;
  font-size: 1.1rem; /* list item text size */
}

ul.diamond-list li::before {
  content: "♦"; /* diamond symbol */
  color: #205081; /* choose your color */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5em; /* matches h2 scale */
  font-weight: bold;
  line-height: 1;
}