/* CSS for circular-frame */
.circular-frame {
  width: 300px; /* Adjust the width and height as needed */
  height: 300px;
  border-radius: 50%; /* This makes the frame circular */
  overflow: hidden; /* Hide the image overflow */
  margin: 0 auto; /* Center the circular frame horizontally */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0; /* Set background color for the circular frame */
}

.circular-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover; /* Maintain image aspect ratio and cover the circular frame */
  border-radius: 50%; /* Apply the same border-radius to the image to match the frame */
}

.caption {
  text-align: center; /* Centers the text */
  /* Add more styling as needed (e.g., font size, color) */
}

body {
  font-size: 20px; /* Adjust the font size as needed */
}

/* CSS for two-column layout */
  .two-columns {
    display: flex;
    flex-wrap: wrap; /* Allow columns to stack on top of each other */
  }

.column {
  flex: 1; /* Equal width for both columns */
    padding: 10px; /* Add spacing between columns if desired */
}

@media screen and (max-width: 768px) {
  /* Apply styles for screens with a maximum width of 768px (adjust as needed) */
    .two-columns {
      flex-direction: column; /* Stack columns vertically */
    }
  
  /* Optionally, you can style each column differently on smaller screens */
    .column {
      /* Add specific styles for smaller screens */
    }
}

/* CSS for image containter */
  .image-container {
    text-align: center; /* Center align the content */
  }

.caption {
  margin-top: 10px; /* Add some spacing between the image and the caption */
    font-style: italic; /* Style the caption as italic if desired */
    /* Other styling properties as needed */
}







/* Team Member Styling */
.team-member {
  display: flex;
  align-items: center;
  gap: 50px; /* Space between image and bio */
  margin-bottom: 30px;
}

/* Bio Section */
.bio {
  max-width: 60%; /* Adjust width as needed */
  font-size: 1.2rem;
  line-height: 1.6;
}

.image-container {
  position: relative;
  width: 400px;  /* Set the desired width of the oval */
  height: 450px; /* Set the desired height of the oval */
  overflow: hidden;
  border-radius: 50% / 40%; /* Creates an oval shape */
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watermarkoval {
  position: absolute;
  bottom: 20px;
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Adjust positioning to align center */
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2px 5px;
  border-radius: 3px;
  text-align: center; /* Center text within the background */
}

/* Watermark styling */
.watermark {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7); /* Subtle white color with transparency */
  background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
  padding: 5px 10px;
  border-radius: 5px;
}


/* Responsive Layout for Mobile */
@media (max-width: 768px) {
  .team-member {
    flex-direction: column; /* Stack elements vertically on mobile */
    align-items: center;
  }

  .bio {
    max-width: 100%; /* Full width on mobile */
    text-align: center; /* Center text on mobile */
    margin-top: 10px; /* Space between image and bio */
  }

  .image-container {
    width: 250px; /* Adjust width for mobile */
    height: 350px; /* Adjust height for mobile */
  }
}





/* ADD Icon Rows Below Image */

.photo-column {
  display: flex;
  flex-direction: column;
  align-items: center; 
}

/* Row directly below the image for icons */
.icon-row {
  margin-top: 20px; /* distance between image and icons */
  text-align: center;
}

.icon-row img {
  width: 35px; /* Control icon size and spacing */
  height: 35px;
  margin: 0 7px;
  vertical-align: middle;
}

.icon-row a {
  text-decoration: none; /* removes underline */
  border: none;
  outline: none;
}





