/* ============================== 
   Reset & Base Font
============================== */
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Nunito', sans-serif;
}

/* ============================== 
   Navbar
============================== */
.desktop-nav {
  position: absolute;
  top: 20px;
  right: 250px;
  z-index: 10;

  /* Frosted-glass background */
  background: rgba(59, 58, 58, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(10px);

  /* Pill shape & spacing */
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;

  font-size: 1.275rem; /* Was 1.7rem, now reduced by 25% */
}

.desktop-nav a {
  display: inline-block;
  margin-left: 50px;
  text-decoration: none;
  color: #ead7c3;
  font-weight: bold;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.desktop-nav a:first-child {
  margin-left: 0;   /* no extra space before the first link */
}

.desktop-nav a:hover {
  color: #dce0d9;
}

/* ============================== 
   Hero Section
============================== */
.hero {
  background: url('../images/hero-image-new.jpg') top center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.hero-content {
  text-align: left;
  padding: 40px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
/* Hero text uses Roboto - KEEPING ORIGINAL SIZES */
.hero-content h1,
.hero-content h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
}
.hero-content h1 {
  font-size: 3.5rem; /* UNCHANGED */
  color: #ead7c3;
  margin: 0;
  line-height: 1;
}
.hero-content h2 {
  font-size: 2.5rem; /* UNCHANGED */
  color: #dce0d9;
  margin: 0.1rem 0 0;
}

/* ============================== 
   Content Sections & Container
============================== */
.content-section {
  padding: 80px 20px;
  min-height: 400px;
}
.container {
  max-width: 960px;
  margin: 0 auto;
}

/* ============================== 
   Content Box Reveal (Only the text & images reveal)
============================== */
.content-box {
  font-size: medium; /* Reduced from large */
  line-height: 1.7;
  max-width: 50%;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.content-box.visible {
  opacity: 1;
  transform: translateY(0);
}
.content-section p {
  font-size: 0.9rem; /* Was 1.2rem, now reduced by 25% */
  font-weight: 500;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1em;
}
.content-section h2 {
  font-size: 1.875rem; /* Was 2.5rem, now reduced by 25% */
  color: #393e41;
  margin-bottom: 0.5em;
}

/* ============================== 
   Section-specific Backgrounds & Alignment
============================== */
.section-left {
  background-color: #ead7c3;
  text-align: left;
}
.section-right {
  background-color: #B2AC88;
  text-align: left;
}
.section-right .content-box {
  margin-left: auto;
}
.section-centre {
  background-color: #ead7c3;
  text-align: center;
}

/* ============================== 
   About Section Specific
============================== */
#about {
  position: relative;
}
.bacp-logo {
  position: absolute;
  left: calc(55% + 20px);
  top: 50%;
  transform: translateY(-50%);
  width: 188px; /* Was 250px, now reduced by 25% */
  height: auto;
  border-radius: 15px;
}

/* ============================== 
   Sessions Section Specific
============================== */
#sessions {
  position: relative;
}
.therapy-room {
  position: absolute;
  left: calc(55% + 20px);
  top: 50%;
  transform: translateY(-50%);
  width: 375px; /* Was 500px, now reduced by 25% */
  height: auto;
  border-radius: 15px;
}

/* ============================== 
   Quote Section
============================== */
/* Quote Section 1 */
.quote-section {
  position: relative;
  background: url('../images/misty-forrest.jpg') no-repeat center center;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay for Quote Section 1 */
.quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Quote Section 2 */
.quote-section-2 {
  position: relative;
  background: url('../images/sunrise-forest.jpg') no-repeat center center;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay for Quote Section 2 */
.quote-section-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Quote Content */
.quote-content {
  position: relative;
  z-index: 2;
  font-family: 'Spectral', serif;
  width: 100%;
  color: white;
  text-align: center;
  padding: 0 40px;
}
.quote-text {
  font-style: italic;
  font-weight: 600;
  font-size: 1.875rem; /* Was 2.5rem, now reduced by 25% */
  font-weight: bold;
  margin: 0;
}
.quote-author {
  font-size: 1.875rem; /* Was 2.5rem, now reduced by 25% */
  margin-top: 20px;
  text-align: center;
  display: inline-block;
  transform: translateX(20px);
}

/* ============================== 
   Contact Section & Form
============================== */
#contact {
  text-align: center;
}
#contact form {
  display: inline-block;
  max-width: 600px;
  width: 100%;
  text-align: left;
  margin-top: 20px;
}
#contact button {
  display: block;
  margin: 20px auto 0;
  padding: 12px 30px;
  font-size: 0.9rem; /* Was 1.2rem, now reduced by 25% */
  border: none;
  border-radius: 10px;
  background-color: #c3673f;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#contact button:hover {
  background-color: #b34233;
}

.form-note {
  color: #666;
  font-family: inherit;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* ============================== 
   Form Input Fields
============================== */
form input,
form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-size: 0.75rem; /* Was 1rem, now reduced by 25% */
  transition: border-color 0.3s ease;
}
form input:focus,
form textarea:focus {
  outline: none;
  border-color: #007BFF;
}
::placeholder {
  color: #999;
  font-style: italic;
}

@media (min-width: 901px) {
  .mobile-nav {
    display: none;
  }
}