body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  font-family: sans-serif;
  color: white;
}

/* --- Hero Section & Background --- */
.background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url('your-art-image.jpg') no-repeat center center/cover;
  z-index: -2;
}

.black-layer1 {
  width: 100%;
  height: 100vh;
}

.black-shape1 {
  width: 100%;
  height: 100%;
  background: black;
  clip-path: polygon(0 0, 70% 0, 0% 60%, 0% 60%);
}

.black-layer2 {
  position: relative;
  background: black;
  padding-bottom: 50px;
}

.black-content {
  position: relative;
  z-index: 2;
  padding: 250px 10% 50px 10%;
  color: white;
}

.text-left h1 {
  font-size: 4.1rem;
  font-family: 'Verdana', cursive;
  color: #fc93e4;
  text-align: left;
  padding-top: 100px;
  padding-left: 20px;
}

.text-left p {
  font-size: 2.1rem;
  font-family: 'Comic Sans MS', cursive;
  color: #ffb3ff;
  text-align: left;
  padding-top: 10px;
  padding-left: 80px;
}

/* --- About Section --- */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background: linear-gradient(to bottom, #1a1a1a, #000);
  color: white;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  padding: 20px;
}

.about-text h1 {
  font-size: 3rem;
  font-family: 'Comic Sans MS', cursive;
  color: #ffb3ff;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 300px;
  height: auto;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 0 0 30px #cc66ff;
}

/* --- Navigation Buttons --- */
.buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 10px;
}

.buttons a {
  text-decoration: none;
  color: white;
  border: 2px solid #cc66ff;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Content Sections --- */
.info-card, .highlights, .what {
  background-color: #222;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px #cc66ff4d;
}

.info-card h2, .highlights h2, .what h2 {
  font-family: 'Comic Sans MS', cursive;
  color: #ffb3ff;
  margin-bottom: 15px;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  margin-bottom: 10px;
}

/* --- Footer --- */
footer {
  background-color: #111;
  color: white;
  padding: 30px 0;
  text-align: center;
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
  .black-shape1 {
    clip-path: polygon(0 0, 60% 0, 85% 60%, 0% 100%);
  }

  .black-content {
    padding-top: 180px;
  }

  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    padding: 10px;
  }

  .about-image img {
    width: 80%;
    margin-top: 20px;
  }
}
