/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header styles */
header {
    background-color: #d8d6b3;;
    color: #ffffff;
    padding: 10px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}



/* Hero section styles */
.hero {
    background-image: url('/img/family-counseling.jpg'); /* Update this with the correct image URL */
    background-size: cover; /* Ensures the background image covers the section */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    min-height: 400px; /* Ensures the hero section has some height */
}

/* Hero text styles */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adds a shadow for better readability */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Adds a shadow for better readability */
}

/* Call-to-action button styles */
.cta-button {
    background-color: #a5e2d3;
    color: #e1f2ee;
    padding: 6px 14px;
    font-size: 1.9rem;  
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #8ddeca;
}

/* Services section styles */

.services {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
  }
  
  .service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .service-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }




.services {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}


.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #173D3A;
    color: #A9B6AB;
}

.phone-number {
    color: black;
    text-decoration: none;  /* Removes underline */
    -webkit-text-fill-color: black;  /* For iOS */
  }

  .light-text li {
    color: #888;
  }
  
  /* Basic styling */
.popup {
    display: none; 
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
  }
  
  .popup-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 80%;
    max-width: 700px;
  }
  
  #closePopup {
    position: absolute;
    top: -20px;
    right: -20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
  }
  
/* NEW */


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Georgia, serif;
    background-color: #E9E8DE;
  }
  
  .herocontainer {
    display: flex;
    height: 100vh;
    width: 100%;
  }
  
  .left-panel {
    flex: 1;
    background-color: #A9B6AB;
    padding: 80px 60px;
    color: #173D3A;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .left-panel h1 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 40px;
  }
  
  .left-panel p {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
  
  .book-btn {
    text-decoration: none;
    font-family: 'Georgia', serif;
    padding: 15px 30px;
    font-size: 1rem;
    background-color: #173D3A;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
  }
  
  .right-panel {
    flex: 1;
    background-color: #173D3A;
  }
  
  .right-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


/* welcome section */

body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #f4f4eb;
    color: #1c3b36;
  }
  
  .welcome-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
  }
  
  .container {
    max-width: 800px;
  }
  
  .welcome-section h1 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
  }
  
  .welcome-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c4b46;
    margin-bottom: 40px;
  }
  /*  Buttons */

  .reconnect-button {
    display: inline-block;
    background-color: #13342f;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 16px;
  }

  .learn-button {
    display: inline-block;
    background-color: #13342f;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .learn-button:hover {
    background-color: #1c4c44;
  }
  
  /*TEAM */
  .team-section {
    background-color: #f4f4eb;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .team-section h2 {
    font-size: 2.5rem;
    color: #13342f;
    margin-bottom: 3rem;
  }
  
  .team-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .team-member {
    background-color: #173D3A;
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .team-member:hover {
    transform: translateY(-5px);
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  
  .team-member h3 {
    margin: 0.5rem 0 0.2rem;
    font-size: 1.3rem;
  }
  
  .title {
    font-style: italic;
    color: #A9C1BD;
    margin-bottom: 0.8rem;
  }
  
  .bio {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }
  
  .read-more {
    background-color: #13342f;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
  }
  
  .read-more:hover {
    background-color: #0f2c28;
  }
  .neurofeedback-banner {
    width: 100%;
    background-image: url('/img/neurofeedback.jpg'); /* Replace with your actual image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #ffffff;
  }
  
  .banner-overlay {
    background-color: rgba(19, 52, 47, 0.8); /* Dark overlay using your palette */
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 400px;
  }
  
  .banner-content {
    max-width: 900px;
  }
  
  .banner-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: 'Georgia', serif;
  }
  
  .banner-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f1f1f1;
    font-family: 'Georgia', serif;
  }
  
/* top banner */

.top-banner {
    background-color: #13342f;  /* Your color palette */
    color: #ffffff;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
  }
  
  .top-banner a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  
  .top-banner a:hover {
    text-decoration: underline;
  }
  