html {
  scroll-behavior: smooth;
  cursor: none;
  /* Hide default cursor */
}


.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: #8d5307;
  /* Brown color */
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

/* Smaller dot when clicking */
.custom-cursor.clicked {
  transform: scale(0.8);
}



body,
html {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif, monospace;
  background-color: #fffbf5;
  /* background-color: #d5bbaa; */
  /*background-color: rgb(141, 83, 7); Helvetica*/
}

.nav-list li a.active::after {
  width: 100%;
  background-color: #ffffff;
}

#home {
  background-color: #fffbf5;
  margin-top: 40px;
  height: fit-content;
  /* Adds space after the section */

}




/* Sections styling */
section {
  height: 100vh;
  padding: 5px;
  /* adjust to how much space you want */
}


.home-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive content box for home section */
.content-box {
  border: 2px solid #b0a092;
  box-shadow: 0 4px 16px rgba(79, 51, 26, 0.05) !important;
  background: #ffffff !important;
  border-radius: 29px;
  padding: 40px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 90%;
  max-width: 1900px;
  min-height: 600px;
  margin: 0 auto;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box-image {
  width: 500px;
  height: 600px;
  border-radius: 20px;
  object-position: center 0%;
  /* Move crop area upward */
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for the entire content box */
.content-box:hover {
  background: rgba(176, 160, 146, 0.15);
  /* Slightly darker on hover */

  transform: scale(1.02);

}

/* Hover effect specifically for the image */
.content-box-image:hover {
  transform: scale(1.02);
  /* Make image bigger on hover */
}

.content-box-text {
  color: #7b5636;
  flex: 1;
}

.content-box-text h1 {
  font-size: 60px;
  margin-bottom: 15px;
  margin-top: 0;
}

.content-box-text h2 {
  font-size: 25px;
  margin-bottom: 15px;
  color: #7b5636;
  font-weight: normal;
  line-height: 1.5;
}

/* Responsive design for tablets */
@media (max-width: 1024px) {
  .content-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 30px;
    min-height: 350px;
  }

  .content-box-image {
    width: 250px;
    height: 250px;
  }

  .content-box-text h1 {
    font-size: 42px;
  }

  .content-box-text h2 {
    font-size: 18px;
  }
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .content-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
    gap: 25px;
    min-height: auto;
    width: 85%;
  }

  .content-box-image {
    width: 200px;
    height: 200px;
  }

  .content-box-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .content-box-text h2 {
    font-size: 17px;
  }
}

/* For very small mobile devices */
@media (max-width: 480px) {
  .content-box {
    padding: 25px 20px;
    gap: 20px;
    width: 80%;
  }

  .content-box-image {
    width: 180px;
    height: 180px;
  }

  .content-box-text h1 {
    font-size: 32px;
  }

  .content-box-text h2 {
    font-size: 16px;
  }
}

.headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keeps full face visible */
  object-position: center top;
  /* adjust vertical centering */
  border-radius: 50%;
  z-index: 1;
  position: relative;
}