.profile-image {
  width: 100%;
  /* Adjust the width as needed */
  height: auto;
  /* Maintain aspect ratio */
  border-radius: 5%;
  /* Additional styling properties if needed */
}

.social-media-icon {
  width: 40px;
  /* Adjust the width as needed */
  height: 40px;
  /* Set a fixed height to maintain consistent size */
  /* Additional styling properties if needed */
}

.organization-logo {
  width: 100px;
  /* Adjust the width as needed */
  height: auto;
  /* Maintain aspect ratio */
  /* Additional styling properties if needed */
}

/* Add this CSS code to your stylesheet or within a <style> tag in your HTML */
.social-media-table {
  border-collapse: collapse;
  width: 80%;
}

.social-media-table th,
.social-media-table td {
  padding: 10px;
  /* Adjust the padding value as needed */
  text-align: center;
}

.social-media-icon {
  margin: 5px;
  /* Add margin around the icons */
}

/* Add this CSS code to your stylesheet or within a <style> tag in your HTML */
.organization-table {
  border-collapse: collapse;
  width: 100%;
}

.organization-table th,
.organization-table td {
  padding: 10px;
  /* Adjust the padding value as needed */
  text-align: center;
}

.organization-logo {
  margin: 10px;
  /* Add margin around the logos */
}

main {
  min-width: 200px;
  margin: 0 auto;
  /* Center the content horizontally */
}

@media (max-width: 767px) {

  /* For smartphones and smaller screens */
  main {
    max-width: 95%;
    /* Adjust this value as needed */
  }
}

@media (min-width: 768px) {

  /* For larger screens */
  main {
    max-width: 50%;
    /* Adjust this value as needed */
  }
}

.collapse-card {
  cursor: pointer;
}

.collapse-content {
  display: none;
}

.show {
  display: block;
}

.collapse-arrow::before {
  content: '\25B8';
  /* Right-pointing triangle (▸) */
  display: inline-block;
  transform: rotate(90deg);
  margin-right: 5px;
  transition: transform 0.3s;
}

.collapse-trigger:focus .collapse-arrow::before,
.collapse-trigger:hover .collapse-arrow::before {
  transform: rotate(0deg);
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.navbar-bg {
  background-color: #a4c69f;
  background-size: cover;
}

/* let the curser be a pointer when hover over nav items */
.navbar-nav .nav-link {
  cursor: pointer;
}

.navbar-nav .nav-link,
.navbar-brand {
  position: relative;
  z-index: 2;
  font-family: 'Your Custom Font', sans-serif; /* Replace with your custom font */
  font-size: 18px; /* Adjust the font size */
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0);
  text-transform: uppercase;
  letter-spacing: 2px; /* Adjust the letter spacing */
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: -2px; /* Adjust the position as needed */
  left: 0;
  width: 100%;
  height: 2px; /* Adjust the line height */
  background-color: white;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.navbar-nav .nav-link:hover{
  color: #4e624b;
}

.navbar-nav .nav-link:hover::before {
  transform: scaleX(1);
  cursor: pointer;
  background-color: #4e624b;
  border-radius: 5px;
}

.navbar-nav .nav-link.active,
.navbar-brand.active {
  color: white; /* Set the color to white for active items */
  background-color: #4e624b;
  border-radius: 5px;
  cursor: pointer;
}

/* Styles for Artwork Preview Cards */
.artCard {
  background-color: #a4c69f;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.artCard:hover {
  transform: translateY(-5px);
}

.artCard .card-body {
  padding: 15px;
}

.artCard .card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.artCard .card-text {
  font-size: 14px;
  margin: 0;
}

/* Styles for Artwork Modals */
#artwork-modal {
  background-color: rgb(255, 255, 255);
  align-items: center;
  justify-content: center;
  border: none;
}



#artwork-modal .modal-content {
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

#artwork-modal img {
  max-height: calc(70vh - 10px); /* 10px less than 70vh */
  max-width: calc(90vw - 10px); /* 10px less than 90vw */
  border-radius: 10px;
}

#artwork-modal .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.122);
  font-size: 20px;
  opacity: 1;
  cursor: pointer;
}
