.body {
  background-color: rgb(22, 22, 22);
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  scrollbar-width: none;

}

.section {
    height: 100vh; /* Each section takes up the full viewport height */
    font-size: 2em; /* Set font size */
    margin-top: 20px; /* Add space for the fixed menu */
    background-color: rgb(22, 22, 22);
  }

  /* About ------------------------------------------------------ Section */
  .about-section {
    height: auto; /* Allow height to adjust based on content */
    width: 100%;
    background-color: rgb(22, 22, 22);
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

.welcome-text {
    text-align: center;
    margin-bottom: 30px;
    margin-top:50px;
}

.welcome-text h1 {
    font-size: 2.5em;
    margin: 0;
}

.welcome-text p {
    font-size: 1.5em;
    margin: 10px 0 0;
}

.gallery-about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.about-gallery-item {
    width: 22%; /* Adjusted to fit larger images */
    margin: 10px 0;
    text-align: center;
}

.about-gallery-item img {
    width: 30%; /* Reduced image width to 50% */
    height: auto;
    border-radius: 8px;
}

.about-gallery-item p {
    margin-top: 5px;
    font-size: 1.2em;
}

/* Artist ------------------------------------------------------ Section */
.artist-section{
  height: 100%; /* Allow height to adjust based on content */
  width: 100%;
  background-color: rgb(210, 180, 80);
  color: rgb(255, 255, 255);
  clip-path: polygon(0 6%, 100% 0, 100% 92%, 0 100%);
  padding: 20px;
  box-sizing: border-box;
  min-height: 1400px;
}

.section-art {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Introduction Section */
.intro {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 130px;
}

.intro h1 {
  margin-top: 60px;
  color: #ffffff;
  font-size: 2.5em;
  margin-bottom: 10px;
}

.intro p {
  font-size: 1.5em;
  color: #ffffff;
}

/* Artist Profiles */
.artists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.artist {
  background-color: rgb(22, 22, 22);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  padding: 10px;
  width: 45%;
  margin-bottom: 20px;
  text-align: center;
}

.artist img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.artist h2 {
  color: #ffffff;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.artist p {
  color: #ffffff;
  font-size: 1em;
}

/* Gallery ------------------------------------------------------ Section */
.gallery-section{
  height: 100%; /* Allow height to adjust based on content */
  width: 100%;
  min-height: 1300px;
  background-color: rgb(22, 22, 22);
  color: rgb(255, 255, 255);
  padding: 20px;
  box-sizing: border-box;
}

.gallery-container {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

h1 {
margin-top: 80px;
  text-align: center;
  margin-bottom: 10px;
  font-size: 2.5em;
}

p {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 1.5em;
}

.gallery-container {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 100px;
  position: relative;
}

h1 {
  text-align: center;
  margin-bottom: 10px;
}

p {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-grid-container {
  max-height: 80vh; /* Set maximum height for the gallery grid container */
  overflow-y: auto; /* Enable vertical scrolling */
  padding-right: 15px; /* Space for scrollbar */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgb(22, 22, 22);
  color: white;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

#gallery-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(22, 22, 22);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 80%;
  margin: auto;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  cursor: pointer;
}

.close-btn:hover {
  color: #ffffff;
}


/* Testimonial ------------------------------------------------------ Section */
.testimonial-section {
  height:100%;
  width:100%;
  min-height:600px;
  box-sizing: border-box;
  display: flex;
  align-items:center;
  background-color: rgb(210, 180, 80);
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.testimonial-container {
  width: 100%;
  height: 100%;
  margin: 20px;
  background-color: rgb(210, 180, 80);
  border-radius: 8px;
}

.testimonial-title {
  font-size: 2.5em;
  margin-bottom: 10px;
  color:rgb(255, 255, 255);
}

.testimonial-intro {
  font-size: 1.5em;
  margin-bottom: 20px;
  line-height: 1.6;
  color:rgb(255, 255, 255);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 100px;
  margin-bottom: 100px;
}

.testimonial {
  margin: auto;
  border-radius: 8px;
  min-width:300px;
  padding: 15px;
  background-color: rgb(22, 22, 22);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 1.2em;
  margin: 0 0 10px;
  color: rgb(255, 255, 255);
}

.testimonial cite {
  font-size: 1.2em;
  display: block;
  text-align: right;
  font-style: normal;
  color: #ffffff;
}


/* About ------------------------------------------------------ Section */
.contact-section {
height: 100%; /* Allow height to adjust based on content */
width: 100%;
min-height: 1400px;
background-color: rgb(22, 22, 22);
color: rgb(255, 255, 255);
padding: 20px;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
}

.contact-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-content {
  width: 100%;
  max-width: 800px;
  margin-top: 20px;
}

.image {
  margin-top: 100px;
  height: 300px;
  width: 800px;
  max-width: 100%;
  background-size: cover;
   margin: auto;
  margin-bottom: 20px;
  border-radius: 2%;
  background-repeat: none;
  background-image: url(Artwork/Contact_image.jpg);
}

.image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  
}

.contact-title{
  color: #ffffff;
  font-size: 2.4em;
  margin:auto 
}

.form-title, .info-title {
  color: #ffffff;
  font-size: 1.9em;
  text-align: center;
}

.contact-description, .info-detail {
  line-height: 1.6;
}

.contact-info {
  margin-bottom: 20px;
}

.info {
  margin-bottom: 20px;
}

.map{
  margin-top: 100px;
  height: 1100px;
  width: 100%;
  background-size: cover;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 2%;
  background-repeat: none;
  background-image: url(Artwork/Map.jpg);

}

::-webkit-scrollbar {
    display: none;
  }




@media screen and (max-width: 390px) {
  .testimonial-title{
    margin-top:100px;
    font-size: 1.2em;
  }

  .testimonial-container{
    margin-right:1px;
  }
  .testimonial {
    margin-bottom: 1px;
    border-radius: 8px;
    padding: 15px;
    background-color: rgb(22, 22, 22);

  }

  .testimonial-intro {
    font-size: 1.2em;
  }

  .artist-section{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
  .contact-section{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
  .about-section{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
  .testimonial-section{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
  .artist-section{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }

}


@media screen and (max-width: 412px) {
  .testimonial-title {
    font-size: 1.2em;
  }
  
  .testimonial-intro {
    font-size: 1.2em;
  }
  .testimonial-title{
    margin-top:100px;
  }

  .testimonial-container{
    margin-right:1px;
  }
  .testimonial {
    margin-bottom: 1px;
    border-radius: 8px;
    padding: 15px;
    background-color: rgb(22, 22, 22);

  }

  .artist-section{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
  .contact-section{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
  .about-section{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
  .testimonial-section{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
  .artist-section{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }

}

@media screen and (max-width: 768px) {
  .image{
    margin-top:100px;
    height: 200px;
    width: 600px;
  }
 
  .artist{
    margin-bottom: 220px;
  }
 
  .testimonial-title{
    margin-top:300px;
  }

  .testimonial-section{
    padding-bottom: 230px;
  }

  .testimonial-container{
    margin-right:50px;
  }
 
  .modal-content {
      margin: 20px auto;
      padding: 10px;
  }

  input[type="text"],
  input[type="email"],
  textarea {
      padding: 8px;
  }

  button {
      padding: 8px 16px;
  }
  .welcome-text h1 {
    font-size: 1.5em;
}

.welcome-text p {
    font-size: 1em;
}

.about-gallery-item {
    width: 45%; /* Adjusted to fit smaller images */
}

.about-gallery-item img {
    width: 50%; /* Ensure images stay at 50% of their container's width */
}

.about-gallery-item p {
    font-size: 0.9em;
}
.artists {
  flex-direction: column;
}

.artist {
  width: 100%;
}


}

@media (max-width: 480px) {
  .welcome-text h1 {
      font-size: 1.2em;
  }

  .welcome-text p {
      font-size: 0.9em;
  }

  .about-gallery-item {
      width: 100%; /* Full width for mobile view */
  }

  .about-gallery-item img {
      width: 50%; /* Ensure images stay at 50% of their container's width */
  }

  .about-gallery-item p {
      font-size: 0.8em;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

.gallery-item::after {
    font-size: 12px;
    padding: 5px;
}

.modal-content {
    max-width: 100%;
    max-height: 70%;
}

.artist-section{
  clip-path: polygon(0 4%, 100% 0, 100% 98%, 0 100%);
  min-height: 1920px;
}
.artist{
  padding:0%;
}

.testimonial-container {
  padding: 10px;
}

.testimonial-title {
  font-size: 1.2em;
}

.testimonial-intro {
  font-size: 0.9em;
}

.testimonial {
  padding: 10px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
}


}


@media (max-width: 430px) {
  .welcome-text h1 {
      font-size: 1.5em;
  }

  .welcome-text p {
      font-size: 1.2em;
  }

  .about-gallery-item {
      width: 100%; /* Full width for mobile view */
  }

  .about-gallery-item img {
      width: 50%; /* Ensure images stay at 50% of their container's width */
  }

  .about-gallery-item p {
      font-size: 1.2em;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

.gallery-item::after {
    font-size: 12px;
    padding: 5px;
}

.modal-content {
    max-width: 100%;
    max-height: 70%;
}

.artist-section{
  clip-path: polygon(0 4%, 100% 0, 100% 98%, 0 100%);
  min-height: 1920px;
}
.artist{
  padding:0%;
}

.testimonial-container {
  padding: 10px;
}

.testimonial-title {
  font-size: 2.5em;
}

.testimonial-intro {
  font-size: 1.5em;
}

.testimonial {
  padding: 10px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
}

.artist-section{
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%)
}

.about-section{
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%)
}
.testimonial-section{
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%)
}
.artist-section{
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%)
}





}