/* Global Styles */
:root {
  --primary-blue: #025373;
  --dark-blue: #025373;
  --soft-green: #85a67c;
  --cream: #f2dfa7;
  --black: #0d0d0d;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --font-main: "Roboto", sans-serif;
  --font-heading: "Montserrat", sans-serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--black);
  line-height: 1.6;
  background-color: var(--white);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-blue);
}

/* Phone Banner */
.phone-banner {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 10px 0;
  text-align: center;
  font-size: 1rem;
}

.phone-banner a {
  color: var(--white);
  font-weight: bold;
  margin: 0 15px;
}

.phone-banner a:hover {
  color: var(--cream);
}

/* Navigation */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

.logo img {
  height: 60px;
  margin-right: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin-left: auto;
  align-items: center;
}

.nav-menu li {
  margin-left: 25px;
  display: flex;
  align-items: center;
}

.nav-menu li:not(:last-child) {
  margin-right: 10px;
}

.nav-menu a {
  color: var(--dark-blue);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.nav-menu a:hover {
  color: var(--primary-blue);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.btn {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 30px;
  line-height: 1;
}

.nav-menu a.btn:hover {
  color: var(--soft-green);
}

.nav-menu a.btn::after {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-blue);
  position: absolute;
  right: 0;
}

/* Hero Section */
.hero {
  background-image: url("assets/img/colorado-landscape.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--soft-green);
  color: var(--white);
  border: 2px solid var(--soft-green);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--soft-green);
}

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

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

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--soft-green);
  bottom: 0;
  left: 25%;
}

/* About Section */
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

/* Insurance Section */
.insurance {
  background-color: var(--light-gray);
}

.insurance-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.insurance-logo {
  height: 60px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.insurance-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Info Section */
.info-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.info-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
}

.info-card i {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

/* Clinicians Page */
.clinician-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  text-align: center;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease;
}

.clinician-profile:hover {
  transform: translateY(-5px);
}

.clinician-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid var(--primary-blue);
}

.clinician-name {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.clinician-title {
  color: var(--primary-blue);
  font-weight: 500;
  margin-bottom: 20px;
}

/* How It Works Page */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.step-number {
  flex: 0 0 50px;
  height: 50px;
  width: 50px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background-color: var(--light-gray);
  color: var(--dark-blue);
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  color: var(--dark-blue);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.footer-section p {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--primary-blue);
}

.footer-section a:hover {
  color: var(--dark-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .mobile-menu-btn {
    display: block;
    position: absolute;
    right: 0;
    z-index: 2000;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-btn .fa-times,
  .mobile-menu-btn .fa-bars {
    position: absolute;
    transition: all 0.3s ease;
  }

  .mobile-menu-btn .fa-times {
    opacity: 0;
    transform: scale(0);
  }

  .mobile-menu-btn.active .fa-bars {
    opacity: 0;
    transform: scale(0);
  }

  .mobile-menu-btn.active .fa-times {
    opacity: 1;
    transform: scale(1);
  }

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

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

  .about-content {
    flex-direction: column;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Policy Page */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h3 {
  margin-bottom: 15px;
}

.policy-section p {
  margin-bottom: 15px;
}

.policy-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
