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

:root {
  --primary-color: #86786a;
  --secondary-color: black;
  --text-color: #333;
  --light-text-color: #666;
  --green-color: #34491a;
  --white-color: #fff;
}

.quicksand-font {
  font-family: Quicksand, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400; /* use value from 300 to 700 */
  font-style: normal;
}

body {
  font-family: Quicksand, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: black;
}

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


/* ===== NAVBAR ===== */
.navbar {
  background: var(--primary-color);
  border-bottom: 1px solid var(--light-text-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  width: 100%;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

/* Hamburger Button */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger Active State */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

/* Navigation Menu - Mobile */
.nav-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px 5%;
  width: 100%;
}

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

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}

.portal-btn {
  background: var(--green-color);
  color: var(--white-color);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.primary-btn {
  background: var(--green-color);
  color: var(--white-color);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 30px;
}


/* ===== HERO ===== */
.hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(
      rgba(0,0,0,0.01),
      rgba(0,0,0,0.01)
    ),
    url('images/The\ dope\ taupe\ 1.png')
    center no-repeat; 
    background-size: contain;
  color: var(--primary-color);
}

.hero-content {
  max-width: 100%;
  padding: 20px;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.appointment-btn {
  background: var(--green-color);
  color: var(--white-color);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: block;
  margin: 250px auto 0;
}

/* ========== ABOUT ========== */
.about {
  padding: 40px 0;
  background: var(--primary-color);
}

.about-container {
  max-width: 800px;
  margin: auto;
  padding: 0 15px;
}

.about-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.6rem;
}

.about-container p {

}


/* ========== SERVICES ========== */
.services {
  padding: 40px 20px;
  background: var(--primary-color);
}

.services-container {

}

.services-container h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: var(--white-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ========== BIO ========== */
.bio {
  padding: 40px 20px;
  background: var(--primary-color);
}

.bio-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  align-items: center;
}

.bio-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.bio-content p {
  margin-bottom: 18px;
}


/* ========== INSURANCE ========== */
.insurance {
  padding: 40px 20px;
  background: var(--primary-color);
}

.insurance-container {
  
}

.insurance-container h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.insurance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.insurance-card {
  background: white;
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  font-size: 0.95rem;
}

.insurance-note {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 15px;
}


/* ===== FAQ - MOBILE FIRST ===== */
.faq {
  padding: 40px 20px;
  background: var(--primary-color);
}

.faq-container {
  max-width: 100%;
  margin: auto;
  padding: 0 15px;
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--white-color);
}

.faq-answer {
  display: none;
  padding: 0 0 18px 0;
  font-size: 0.9rem;
}

/* ===== NEW CLIENT FORMS ===== */
.intake {
  max-width: 100%;
  margin: auto;
  background: var(--primary-color);
}

.intake-container {
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.intake-container h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.paperwork-group {
  margin-bottom: 20px;
}

.label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

#formMessage {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
}

.paperwork-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.paperwork-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.paperwork-card:hover {
  transform: translateY(-3px);
}

.paperwork-note {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 15px;
}


/* ===== CRISIS - MOBILE FIRST ===== */
.crisis {
  background: var(--primary-color);
}

.crisis-container {
  padding: 25px;
}
.crisis-container h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.crisis-card {
  background: white;
  max-width: 100%;
  margin: auto;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.crisis-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.crisis-card li {
  margin-bottom: 10px;
}

.crisis-small {
  font-size: 0.85rem;
  color: var(--text-color);
}

/* ===== CONTACT ===== */
.contact {
  padding: 40px 20px;
  background: var(--primary-color);
}

.contact-container {
  max-width: 600px;
  margin: auto;
 
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 30px 20px;
  background: var(--green-color);
  color: var(--white-color);
  font-size: 0.9rem;
}


