/* 
  =====================================
  GLOBAL TYPOGRAPHY & COLOR PALETTE
  =====================================
*/
:root {
  --primary-bg: #fafafa;
  --secondary-bg: #EFEFE5;
  --primary-text: #3A3B3D;
  --secondary-text: #4D5756;
  --accent-color: #72886B;
  --accent-color-dark: #4D5756;
}

body {
  font-family: 'Playfair Display', serif;
  background-color: var(--primary-bg);
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* We might move shapes around */
  scroll-behavior: smooth; /* Smooth scroll to anchors */
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-text);
}
p, span, label, .btn, li, a {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #444;
}
a {
  text-decoration: none;
  color: #444;
  transition: color 0.2s ease;
}
a:hover {
  color: #000;
}
.modern-footer {
    margin-top: 0 !important;
}
/* 
  =====================================
  SIDE PROGRESS BAR
  =====================================
  We'll place a fixed bar on the left that indicates 
  how far the user has scrolled the page.
*/
.side-progress-bar {
  position: fixed;
  top: 50%;
  left: 1%;
  transform: translateY(-50%);
  width: 5px;
  height: 50vh; /* or a fixed height; you can adjust */
  background: #ccc;
  border-radius: 3px;
  overflow: hidden;
  z-index: 998; /* below navbar */
}
.side-progress-fill {
  width: 100%;
  height: 0%;
  background: var(--accent-color);
  transition: height 0.2s ease-out;
}

/* 
  =====================================
  HERO SECTION 
  =====================================
  We'll add parallax images/shapes behind the hero text 
  that shift slightly on mouse move to create an interactive effect.
*/
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background-color: var(--secondary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}
.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: var(--secondary-text);
}

/* PARALLAX ELEMENTS inside hero */
.parallax-item {
  position: absolute;
  pointer-events: none;
  transition: transform 0.2s ease;
}
.parallax-shape1 {
  width: 250px;
  height: 250px;
  background: var(--accent-color);
  border-radius: 50%;
  top: 10%;
  left: 20%;
  opacity: 0.2;
}
.parallax-shape2 {
  width: 300px;
  height: 300px;
  background: var(--accent-color-dark);
  border-radius: 50%;
  bottom: 5%;
  right: 10%;
  opacity: 0.2;
}

/* 
  =====================================
  MAIN CONTENT SECTION 
  =====================================
  We'll define "section" blocks for each major area 
  with more spacing and with parallax-based or scroll-based reveal
*/
.section-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1rem;
  position: relative; /* for shapes if needed */
}
.section-wrapper h2 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}
.section-wrapper p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--secondary-text);
}

/* 
  We'll animate sections in as the user scrolls 
  for a dynamic feel (reusing scroll-animated approach).
*/
.scroll-animated {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-animated.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* 
  =====================================
  CONTACT FORM 
  =====================================
*/
.contact-form-section {
  background-color: var(--secondary-bg);
  border-top: 1px solid #ccc;
  padding: 4rem 1rem;
}
.contact-form-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 2rem;
}
.contact-form .form-label {
  font-weight: 600;
  color: var(--primary-text);
}
.contact-form .form-control {
  margin-bottom: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-family: 'Playfair Display', serif;
}
.contact-form .btn.cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 5px;
  background-color: var(--accent-color);
  color: #fff;
  border: 2px solid var(--accent-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.contact-form .btn.cta-btn:hover {
  background-color: var(--accent-color-dark);
  border-color: var(--accent-color-dark);
  color: #fff;
}

/*
  MEDIA QUERIES
*/
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 400px;
    padding: 2rem 1rem;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .parallax-shape1, .parallax-shape2 {
    display: none; /* hide shapes on small screens to reduce clutter */
  }
  .side-progress-bar {
    display: none; /* or optionally keep it, but typically it's best hidden for small screens */
  }
}



.team-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  flex-direction: row;


}
.team-image {
  flex: 1;
  padding-right: 20px;
}

.team-description {
  flex: 1;
  text-align: left;
}
.team-description h2 {
  margin-top: 0;
}
.team-description ul li {
  margin-bottom: 10px;
}
.team-description a {
  color: #007bff;
  text-decoration: none;
}
.team-description a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
  }

  .team-image {
    margin-bottom: 40px;
  }
}



