@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Josefin Sans', sans-serif;
}

body {
  background-color: black;
}

.accordion {
  width: 100%;
  margin: 0;
  padding: 80px 0 0; /* Adjust the padding to make space for the fixed navbar */
  box-sizing: border-box;
}

.accordion-item {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.accordion-header {
  background-color: #131212;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: white;
  text-align: center;
  font-size: 4em; /* Adjusted for better readability */
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.accordion-header:hover {
  background-color: transparent;
  color: rgb(39, 13, 13);
}

/* Specific hover images for each header */
.header-1:hover {
  background-image: url('/images/sculpture/270_48.jpg'); /* Replace with your image path */
}

.header-2:hover {
  background-image: url('/images/sculpture/passei.jpg'); /* Replace with your image path */
}

.header-3:hover {
  background-image: url('/images/sculpture/curbos.jpg'); /* Replace with your image path */
}

.header-4:hover {
  background-image: url('/images/sculpture/mikasa.jpg'); /* Replace with your image path */
}

.accordion-item.active .accordion-header {
  background-color: rgba(186, 20, 20, 0.764);
  color: black;
  background-image: none; /* Remove the background image when active */
}

.accordion-content {
  display: none;
  text-align: center;
}

.accordion-content img {
  width: 100%;
  height: auto;
}

/* Responsive styles for mobile phones */
@media (max-width: 480px) {
  .accordion {
    width: 100%;
    margin: 0;
    padding: 50px 0 0; /* Adjust the padding to make space for the fixed navbar */
    box-sizing: border-box;
  }
  .accordion-header {
    background-color: #131212;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: white;
    text-align: center;
    font-size: 4em; /* Adjusted for better readability */
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
  }
}

