@import "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css";
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  font-family: "Lucida Handwriting", "Dancing Script", "Brush Script MT", cursive;
  background-color: #e9ecef;
}

header {
  font-size: 1.2em; /* Increase font size */
  margin-bottom: 40px;
  background-color: #e9ecef;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
header .navbar-brand {
  font-family: Roboto, sans-serif;
  font-size: 1.5em;
}
header .navbar-thumbnail {
  width: 60px; /* Adjust the size as needed */
  height: 60px; /* Adjust the size as needed */
  border-radius: 50%;
  object-fit: cover;
  margin: auto 10px; /* Adjust the spacing as needed */
}

.dropdown-menu {
  background-color: transparent; /* Remove background color */
  border: none; /* Remove border */
}

.section-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
  text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.5); /* Optional: Add some shadow for better readability */
}

#homepage_carousel #carouselExampleIndicators {
  max-width: 900px; /* Set the maximum width of the carousel */
  margin: 0 auto; /* Center the carousel */
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent background for the carousel */
  border-radius: 20px;
}
#homepage_carousel .carousel-inner img {
  height: 500px; /* Set the height of the images */
  object-fit: cover; /* Ensure images cover the space while maintaining aspect ratio */
  width: 100%; /* Make sure images fill the width of the container */
  border-radius: 20px;
}
#homepage_carousel .carousel-item {
  transition: transform 0.5s ease-in-out;
}

#options .row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
#options .col-md-4 {
  padding-right: 0;
  padding-left: 0;
}
#options .option-box {
  position: relative;
  overflow: hidden;
  height: 300px; /* Set a uniform height */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0; /* Remove margin to eliminate gaps */
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
#options .option-box:hover {
  transform: scale(1.05); /* Enlarge the box on hover */
}
#options .option-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure images cover the space while maintaining aspect ratio */
  display: block;
}
#options .option-box .option-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 1.2em;
  padding: 10px 0;
}

#about {
  background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent background for the about section */
  padding: 40px 20px;
  margin: 0 auto;
  max-width: 1000px;
  border-radius: 10px;
}
#about img {
  object-fit: cover; /* Ensure images cover the space while maintaining aspect ratio */
  border-radius: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
@media only screen and (max-width: 992px) {
  #about img {
    width: 80%;
  }
}
#about p {
  font-family: "Apple Chancery", "Comic Sans MS", sans-serif;
  font-size: 1em;
}

#artwork-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}
#artwork-grid .artwork-item {
  object-fit: cover;
  height: 250px;
  width: 350px;
}
#artwork-grid .artwork-item img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: transform 0.2s;
  object-fit: cover;
  border-radius: 20px;
}
#artwork-grid .artwork-item img:hover {
  transform: scale(1.08);
}

#artworkModal p {
  margin: 0;
  font-family: "Apple Chancery", "Comic Sans MS", sans-serif;
  color: #333;
}
#artworkModal p .description {
  color: #666;
}

#events .event-box {
  font-family: "Apple Chancery", "Comic Sans MS", sans-serif;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 270px;
  width: 1200px;
  margin: 10px auto;
}
#events .event-box .event-info {
  padding: 5% 10%;
}
#events .event-box .event-info h3 {
  font-size: 22px;
  color: #333;
}
#events .event-box .event-info p {
  font-size: 16px;
  color: #666;
}
#events .event-box .event-images img {
  max-height: 230px;
}
@media only screen and (max-width: 1200px) {
  #events .event-box {
    display: flex;
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 992px) {
  #events .event-box .event-info {
    padding: 5% 0;
  }
}
@media only screen and (max-width: 890px) {
  #events .event-box {
    height: 480px;
    max-width: 580px;
  }
  #events .event-box .event-info {
    padding: 5% 5%;
  }
  #events .event-box img {
    max-width: 100%;
    object-fit: cover;
  }
}
#events .box-exhibitions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
#events .box-exhibitions .group-exhibition-item {
  height: 330px;
  width: 350px;
  object-fit: cover;
  background-color: white;
  border-radius: 20px;
  font-family: "Apple Chancery", "Comic Sans MS", sans-serif;
}
#events .box-exhibitions .group-exhibition-item img {
  width: 100%;
  height: 70%;
  transition: transform 0.2s;
  object-fit: cover;
  border-radius: 20px 20px 0px 0px;
}
#events .box-exhibitions .group-exhibition-item .description h3 {
  font-size: 18px;
  color: #333;
}
#events .box-exhibitions .group-exhibition-item .description p {
  font-size: 15px;
  color: #666;
}

#press_carousel .pressControls {
  max-width: 700px; /* Set the maximum width of the carousel */
  margin: 0 auto; /* Center the carousel */
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent background for the carousel */
  border-radius: 20px;
  font-family: "Apple Chancery", "Comic Sans MS", sans-serif;
}
#press_carousel .pressControls .carousel-item {
  transition: transform 0.5s ease-in-out;
  height: 550px;
  text-align: center;
}
#press_carousel .pressControls .carousel-item img {
  max-height: 450px; /* Set the height of the images */
  object-fit: cover; /* Ensure images cover the space while maintaining aspect ratio */
  margin: 5px auto 10px auto;
}
#press_carousel .pressControls .carousel-item h3 {
  font-size: 18px;
  color: #333;
}
#press_carousel .pressControls .carousel-item p {
  font-size: 16px;
  color: #666;
}
#press_carousel .pressControls .carousel-item #name {
  margin: auto;
  text-align: bottom;
  font-size: 18px;
  color: #666;
}
#press_carousel .moreControls {
  max-width: 700px; /* Set the maximum width of the carousel */
  margin: 0 auto; /* Center the carousel */
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent background for the carousel */
  border-radius: 20px;
  font-family: "Apple Chancery", "Comic Sans MS", sans-serif;
}
#press_carousel .moreControls .carousel-item {
  transition: transform 0.5s ease-in-out;
  text-align: center;
}
#press_carousel .moreControls .carousel-item img {
  max-height: 350px; /* Set the height of the images */
  max-width: 80%;
  object-fit: cover; /* Ensure images cover the space while maintaining aspect ratio */
  margin: 5px auto 10px auto;
  filter: grayscale(100%);
}

#comment_carousel #contentControls {
  max-width: 1200px; /* Set the maximum width of the carousel */
  margin: 0 auto; /* Center the carousel */
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent background for the carousel */
  border-radius: 20px;
  font-family: "Apple Chancery", "Comic Sans MS", sans-serif;
}
#comment_carousel #contentControls .carousel-item {
  transition: transform 0.5s ease-in-out;
  min-height: 320px;
  text-align: center;
}
#comment_carousel #contentControls .carousel-item #content {
  margin: 30px 70px;
  font-size: 18px;
  color: #333;
}
#comment_carousel #contentControls .carousel-item #name {
  margin: auto;
  text-align: bottom;
  font-size: 18px;
  color: #666;
}
#comment_carousel #contentControls .carousel-control-prev {
  left: -5%;
}
#comment_carousel #contentControls .carousel-control-next {
  left: 90%;
}

#artist .container {
  min-width: 400px;
}
#artist .container img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

#contact {
  font-family: "Apple Chancery", "Comic Sans MS", sans-serif;
}

footer {
  margin: 50px;
  font-family: "Apple Chancery", "Comic Sans MS", sans-serif;
  font-size: 14px;
}
footer .footer-content ul {
  list-style: none;
  padding: 0;
}
footer .footer-content a {
  color: #007bff;
  text-decoration: none;
}
footer .footer-content a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=styles.css.map */
