/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* REMOVE global body flex */

/* Only apply to inner pages */
body.inner-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


.page-content {
  flex: 1;
}




/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #e8f2fa; /* soft light blue */
  color: #333;
}





/* 🔤 TYPOGRAPHY (PUT IT HERE) */
h1, h2, h3 {
  font-weight: 600;
  color: #2c3e50;
}

p {
  font-weight: 300;
}


/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: white;
  z-index: 10;
}

/* REMOVE BULLETS + MAKE HORIZONTAL */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  
}

/* LINKS */
.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  font-size: 1rem;

  transition: color 0.3s ease;
}

/* HOVER EFFECT */
.nav-links a:hover {
  color: #f4a261; /* soft accent color */
}

/* HERO SECTION */
.hero {
  height: 100vh;

  /* 🔥 REPLACE THIS WITH YOUR IMAGE FILE */
  background: url('beach-background.jpeg') no-repeat center center/cover;

  /* Optional parallax effect */
  background-attachment: fixed;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;

  position: relative;
}

/* DARK OVERLAY (improves readability) */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* HERO TEXT */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  color: #f0f0f0; /* slightly softer than pure white */
}

/* ABOUT PRACTICE SECTION    */
/* ========================= */

.about-practice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;

  padding: 100px 40px;
  background: #e8f2fa;
}

/* TEXT SIDE */
.about-text {
  max-width: 1200px;
  width: 100%;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
}

/* IMAGE SIDE */
.about-image img {
  width: 650px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;

  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}


/* SERVICES INTRO SECTION    */
/* ========================= */

.services-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;

  padding: 80px 40px;
  background: #fff7f0; /* VERY light warm orange tint */
}

.services-image img {
  width: 500px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.services-text {
  max-width: 1200px;
  width: 100%;
}

.services-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.services-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* MOBILE RESPONSIVE (also at bottom) */
@media (max-width: 768px) {
  .services-intro {
    flex-direction: column;
    text-align: center;
  }

  .services-image img {
    width: 100%;
	height: auto;
  }
}



/* SERVICES (for later pages) */
.service {
  margin-bottom: 20px;
}

/* CONTACT FORM (for later pages) */


/* HERO */
.contact-hero {
  text-align: center;
  padding: 140px 20px 70px;
  background: #e8f2fa;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
 
.contact-hero p {
  font-size: 1.2rem;
  color: #555;
}


form {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

input, textarea {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1rem;
}

button {
  padding: 10px;
  background-color: #f4a261; /* soft sunset orange */
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #3b6363;
}


/* ========================= */
/* LEARN MORE BUTTON         */
/* ========================= */

.learn-more-container {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: #fff7f0; /* VERY light warm orange tint */
}

.learn-more-btn {
  display: inline-block;
  background-color: #b88746; /* warm tan/orange */
  color: white;
  text-decoration: none;

  padding: 25px 60px;
  font-size: 1.2rem;
  border-radius: 0;

  transition: all 0.3s ease;
}

/* Hover effect */
.learn-more-btn:hover {
  background-color: #a6763d;
  transform: scale(1.03);
}




/* Content stays above overlay */
.footer-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.footer p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

/* ========================= */
/* ABOUT PAGE                */
/* ========================= */

.about-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  background: #e8f2fa;
}

/* HERO */
.about-hero {
  text-align: center;
  padding: 140px 20px 70px;
  background: #fff1e6;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2rem;
  color: #555;
}




/* IMAGE */
.about-page-image img {
  width: 420px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100px;
}

/* TEXT */
.about-page-text {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-page-text h1 {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.2rem;
}

.about-page-text p {
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}



/* SERVICES PAGE             */
/* ========================= */

.services-page {
  width: 100%;
}

/* HERO HEADER */
.services-hero {
  text-align: center;
  padding: 140px 20px 60px;
  background: #f4f8fb; /* soft neutral */
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* BASE SECTION STYLE */
.services-section {
  padding: 100px 25%;
  line-height: 1.8;
}

/* LIGHT ORANGE SECTION */
.first-steps {
  background-color: #fff1e6; /* soft warm peach */
}

/* LIGHT BLUE SECTION */
.pricing {
  text-align: center;
  background-color: #eaf3fb; /* soft calm blue */
}




/* HEADINGS */
.services-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 400;
}

/* TEXT */
.services-section p {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #333;
}


/* SERVICE IMAGES            */
/* ========================= */

.service-images {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;

  margin-top: 40px;
}

.service-images img {
  width: 280px;
  max-width: 100%;
  height: auto;
  object-fit: cover;

  border-radius: 10px;

  box-shadow: 0 10px 20px rgba(0,0,0,0.12);

  transition: transform 0.3s ease;
}

.service-images img:hover {
  transform: scale(1.03);
}


/* ========================= */
/* ASSESSMENTS PAGE          */
/* ========================= */

.assessment-page {
  width: 100%;
}

/* HERO */
.assessment-hero {
  text-align: center;
  padding: 140px 20px 70px;
  background: #e8f2fa;
}

.assessment-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.assessment-hero p {
  font-size: 1.2rem;
  color: #555;
}

/* SECTION BASE */
.assessment-section {
  padding: 80px 20px;
}

.warm-section {
  background: #fff1e6;   /* soft orange */
}

.cool-section {
  background: #eaf3fb;   /* soft blue */
}

/* CONTENT CARD */
.content-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.75);
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.content-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2f3b45;
}

.content-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

/* LISTS */
.assessment-list {
  padding-left: 22px;
  margin-top: 20px;
}

.assessment-list li {
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* NOTE */
.note {
  margin-top: 25px;
  font-style: italic;
  color: #555;
}

/* CTA */
.assessment-cta {
  text-align: center;
  padding: 70px 20px;
  background: #fff1e6;
}

/* MOBILE 
@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  .container {
    width: 100%;
    padding: 10px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }
}*/


/* ========================= */
/* CONTACT PAGE              */
/* ========================= */

.contact-page {
  background: #eaf3fb;
}

/* HERO */
.contact-hero {
  text-align: center;
  padding: 140px 20px 40px;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #555;
}

/* INTRO */
.contact-intro {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
  padding: 0 20px;
}

.contact-intro p {
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 1.08rem;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px 60px;
  background-color: #fff1e6; /* soft calming tone */
}

.contact-card {
  background: white;
  max-width: 650px;
  width: 100%;
  padding: 50px 35px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  text-align: center;
}

.contact-card h1 {
  font-size: 2.2rem;
  color: #1f3550;
  margin-bottom: 20px;
}

.contact-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 35px;
}

.contact-btn {
  display: inline-block;
  background: #1f3550;
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #2c4a6b;
  transform: translateY(-2px);
}

/* CRISIS SUPPORT */
.crisis-support {
  max-width: 1200px;
  width: 100%;
  margin: 70px auto 120px; /* <-- space before footer */
  padding: 0 20px;
  text-align: center;
}

.crisis-support h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.crisis-support p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.crisis-support ul {
  list-style: none;
  padding: 0;
}

.crisis-support li {
  margin-bottom: 12px;
}














/* ========================= */
/* FOOTER SECTION            */
/* ========================= */

.footer {
  background: url('footer-image.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 80px 20px;

  position: relative;
}

/* Overlay for readability */
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.footer-link {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.8;
}
