/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #ddd;
  line-height: 1.6;
  scroll-behavior: smooth;
}
a {
  color: #e63946;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
  outline: none;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  background: #1e1e1e;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.8);
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
.logo {
  font-weight: 700;
  font-size: 1.8rem;
  color: #f1faee;
  letter-spacing: 2px;
  cursor: default;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}
nav ul li a {
  font-weight: 600;
  font-size: 1rem;
  color: #ccc;
  transition: color 0.3s ease;
}
nav ul li a:hover, nav ul li a:focus {
  color: #e63946;
  outline: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background: #e63946;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1512427691650-4f9365c6f39e?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.7);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: #f1faee;
}
.hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-shadow: 0 0 8px rgba(230, 57, 70, 0.9);
}
.btn-primary {
  background-color: #e63946;
  border: none;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 1.2rem;
  color: #f1faee;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #b32b36;
  outline: none;
}

/* Section Titles */
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin: 3.5rem 0 2rem 0;
  color: #f1faee;
  letter-spacing: 1.5px;
}

/* Gallery Filter Buttons */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.gallery-filter button {
  background: transparent;
  border: 2px solid #e63946;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  color: #e63946;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.gallery-filter button.active,
.gallery-filter button:hover,
.gallery-filter button:focus {
  background-color: #e63946;
  color: #f1faee;
  outline: none;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  padding: 0 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.25);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.1);
  outline: none;
}

/* Artists Section */
.artists {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  padding: 0 1rem;
}
.artist-card {
  background: #1e1e1e;
  border-radius: 15px;
  padding: 1rem;
  width: 250px;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.4);
  text-align: center;
  cursor: default;
  transition: box-shadow 0.3s ease;
}
.artist-card:hover,
.artist-card:focus {
  box-shadow: 0 0 25px #e63946;
  outline: none;
}
.artist-photo {
  border-radius: 50%;
  width: 130px;
  height: 130px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #e63946;
}
.artist-name {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: #f1faee;
}
.artist-style {
  font-weight: 400;
  font-size: 1rem;
  color: #aaa;
}

/* Testimonials */
.testimonials {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.testimonial-item {
  background: #1e1e1e;
  border-left: 5px solid #e63946;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.3);
  cursor: default;
}
.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 0.8rem;
}
.testimonial-author {
  font-weight: 600;
  text-align: right;
  color: #e63946;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  padding: 0 1rem;
}
.faq-item {
  background: #1e1e1e;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.3);
}
.faq-question {
  padding: 1rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #f1faee;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"]::after {
  content: '-';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: #ccc;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0.5rem 0 1rem 0;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto 4rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  font-weight: 600;
  color: #f1faee;
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: none;
  background: #2c2c2c;
  color: #eee;
  font-size: 1rem;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #e63946;
  background: #1e1e1e;
}
.contact-form button {
  align-self: flex-start;
}

/* Location iframe styles */
.location iframe {
  border: none;
}

/* Footer */
footer {
  background: #1a1a1a;
  padding: 1.5rem 1rem;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}
.social-icons {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.social-icons a {
  color: #e63946;
  transition: color 0.3s ease;
}
.social-icons a:hover,
.social-icons a:focus {
  color: #f1faee;
  outline: none;
}

/* WhatsApp floating button */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1100;
  transition: background-color 0.3s ease;
}
.whatsapp-btn:hover,
.whatsapp-btn:focus {
  background-color: #1ebe57;
  outline: none;
}

/* Animations on scroll (simple fade-in) */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 60px;
    right: 0;
    background: #121212;
    height: calc(100% - 60px);
    width: 220px;
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.8);
  }
  nav ul.open {
    transform: translateX(0);
  }
  .hamburger {
    display: flex;
  }
  .artists {
    flex-direction: column;
    align-items: center;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
