.meet-the-chef-content {
  display: flex;
  flex-direction: row;
  align-items: stretch; /* Ensures both columns stretch to the same height */
  position: relative;
}

/* Ensures the container stretches full height */
.meet-jess-left {
  width: 40%;
  /* position: relative;
  width: 55%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;  */
}

.meet-jess {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.meet-jess-right {
  width: 60%;
  padding: 50px;
  padding-top: 100px;
  z-index: 5;
  height: 100%;
}

.top-black-about {
  text-align: center;
  background-color: black;
  margin-bottom: 60px; /* Remove any margin at the bottom */
  padding-bottom: 0; /* Remove padding at the bottom */
}

.meet-jess-text {
  display: flex;
  justify-content: space-between; /* Adds space between the columns */
  gap: 20px; /* Space between columns */
  align-items: stretch; /* Stretch both columns to the same height */
}

.meet-jess-text-column {
  flex: 1; /* Ensure both columns take up equal space */
  padding: 20px;
  line-height: 2; /* Adjust line-height for readability */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribute text evenly */
}

.custom-circle-button-atag {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  background-color: transparent;
  text-decoration: none;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  margin-right: 0; /* Add margin-right to adjust placement */
}

.custom-circle-button-atag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid white; /* Initially white border */
  border-radius: 50%; /* Circular shape */
  box-sizing: border-box;
  z-index: 1;
  clip-path: inset(0 0 0 15%); /* Creates the gap in the circle */
}

.custom-circle-button-atag:hover::before {
  border-color: #FFBE98; /* Coral border on hover */
}

.custom-circle-button-atag span {
  position: absolute;
  left: -10px; /* Adjust to position the text correctly */
  font-size: 16px;
  z-index: 2;
  color: white; /* Initially white text */
}

.custom-circle-button-atag:hover span {
  color: #FFBE98; /* Change text color to coral on hover */
}

.scoll-container {
  margin-bottom: 1px;
}

.button-box {
  padding-top: 150px;
  display: flex;
  justify-content: flex-end;
  width: 100%; /* Ensure full-width */
  position: relative; /* Relative positioning */
}

.shaded-image-cover {
  position: relative;
  width: 100%;
  height: 575px;
  margin-bottom: 100px;
}

.cover-photo-about {
  width: 100%; /* Ensure the image covers the full width */
  height: auto;
}

.custom-circle-button-atag {
  position: absolute; /* Position the button inside the container */
  bottom: 20px; /* Place it 20px from the bottom */
  right: 50px; /* Place it 20px from the right */
  z-index: 10; /* Ensure the button is on top of the image */
}


.accent-text {
  top: 45%; /* Position this slightly higher */
  margin-bottom: 10px;
}

.medium-header {
  top: 55%; /* Position this below the accent text */
}

/* Mobile-friendly styles */
@media screen and (max-width: 768px) {
  .meet-the-chef-content {
    flex-direction: column; /* Stack the content vertically */
    align-items: center;
  }

  .meet-jess-left, .meet-jess-right {
    width: 100%; /* Full width for both sections on mobile */
    padding: 20px;
  }

  .meet-jess-left {
    margin-top: 0; /* Remove the negative margin for the image on mobile */
    text-align: center; /* Center the image on mobile */
  }

  .meet-jess {
    width: 100%; /* Reduce the image size for mobile */
    height: 100vn;
  }

  .meet-jess-right {
    padding: 20px; /* Reduce padding for better spacing on mobile */
  }

  .meet-jess-text-column {
    padding: 10px 5px; /* Reduce padding between the text columns */
    line-height: 1.6;
    width: 100%;
  }

  .meet-jess-text {
    display: flex;
    flex-direction: column; /* Stack the columns vertically */
  }

  .custom-circle-button-atag {
    width: 80px; /* Reduce the size of the button on mobile */
    height: 80px;
  }

  .custom-circle-button-atag span {
    font-size: 14px; /* Reduce the font size for the button */
  }

  .button-box {
    justify-content: center; /* Center the button on mobile */
    width: 100%;
    padding-top: 80px;
  }

  .shaded-image-cover {
    position: relative;
    width: 100vw;
    height: auto;
    margin-bottom: 20px;
  }

  .cover-photo-about {
    width: 100%;
    height: auto;
  }

  .cover-photo-about {
    width: 100%; /* Ensure the image still covers full width */
    height: auto; /* Maintain aspect ratio */
  }
}

@media screen and (max-width: 480px) {
  .meet-jess {
    width: 100%;
    height: 100vh; /* Ensure it fills the full viewport height */
    object-fit: cover; /* Maintain the aspect ratio and cover the container */
    position: relative;
    top: -10px; /* Adjust this value to move the image upwards */
  }

  .meet-jess-left {
    padding: 0px;
    margin-top: 20px;
  }

  .meet-jess-right {
    width: 100%; /* Full width for mobile screens */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center the text */
  }

  .force-margin {
    margin-top: 160px;
  }

  .shaded-image-cover {
    position: relative;
    width: 100vw;
    height: auto;
  }

  .cover-photo-about {
    width: 100%;
    height: auto;
  }

  .shaded-image-cover .accent-text,
  .shaded-image-cover .medium-header {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
  }

  /* Fix the positioning issue */
  .shaded-image-cover .accent-text {
    top: 25%; /* Adjust top position for smaller screens */
    font-size: 1rem; /* Slightly smaller font for smaller screens */
  }

  .shaded-image-cover .medium-header {
    top: 45%; /* Adjust position further for smaller screens */
    font-size: 1.5rem;
  }


  .medium-header {
    position: absolute;
    top: 1850px; /* Ensure enough space between the two text elements */
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem; /* Reduce font size */
  }

  .cover-photo-about {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 1640px) {
  .top-black {
    margin: 0px;
  }

  .meet-jess-text {
    line-height: 3; /* Increase line spacing for larger gaps between text */
    font-size: 1.5rem; /* Further increase the font size */
    padding: 20px 0; /* Add padding to create vertical space inside the text */
  }

  .meet-jess-left {
    margin-top: -100px; /* Increase the negative margin to stretch the image into the navbar */
  }

  .meet-jess {
    height: 100%; /* Ensure the image stretches to full height */
    object-fit: cover; /* Ensure the image maintains its aspect ratio while covering the container */
  }

  .large-header {
    font-size: 4.5rem; /* Further increase the header size to fill space */
    margin-bottom: 30px; /* Add more space below the header */
  }

  .accent-text {
    font-size: 2.5rem; /* Increase the size of accent text */
    margin-bottom: 20px; /* Add space below the accent text */
  }
}
