
.subtitle {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}



body {
  margin: 0;
  padding: 0;
  background: #000000;
  color: #FFD700;
  font-family: 'Roboto Condensed', sans-serif;
  overflow-x: hidden;
  position: relative;
}

#mandala-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Behind content, over backgrounds */
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #FF9933;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1rem;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  height: 150vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('./Inkveda\ Tatto\ Studio.png') no-repeat center center/cover;
  background-color: #000000;
  position: relative;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .title {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #FF9933;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-content .subtitle {
  font-size: 1.5rem;
  color: #e3e7e5;
  margin-top: 450px; /* Added to move subtitle down by 50px */
  margin-bottom: 2rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.book-btn {
  padding: 1rem 2rem;
  background: #FF9933;
  color: #000000;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.section {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #FF9933;
}

.artist-grid, .gallery-grid {
  display: grid;
  gap: 2rem;
}

.artist-card, .gallery-grid img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.artist-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #FFD700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.artist-card:hover .artist-info {
  opacity: 1;
}

.artist-info h3 {
  font-size: 1.5rem;
}

.artist-info p {
  font-size: 1rem;
}

.gallery-container {
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  grid-template-rows: repeat(4, 300px);
  gap: 1rem;
  width: fit-content;
}

.gallery-grid img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.gallery-btn {
  padding: 1rem 2rem;
  background: #4B0082;
  color: #FFD700;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.5rem;
  background: #1a1a1a;
  border: none;
  color: #FFD700;
  border-radius: 5px;
}

form .submit-btn {
  padding: 1rem;
  background: #FF9933;
  color: #000000;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #000000;
  color: #FFD700;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #000000;
    padding: 1rem 0;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .hero-content .title {
    font-size: 2.5rem;
  }
  .hero-content .subtitle {
    font-size: 1.2rem;
  }
  .section h2 {
    font-size: 2rem;
  }
  .gallery-container {
    max-width: 100%;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 150px);
    grid-template-rows: repeat(8, 150px);
  }
  .gallery-grid img {
    width: 150px;
    height: 150px;
  }
}