/* GLOBAL */
* {
  box-sizing: border-box;
}


body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #222;
  background: #fff;
}

h1,
h2,
h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
}


/* HEADER / LOGO / NAV */
.site-header {
  padding: 0;
  text-align: center;
}

.logo {
  background: #000;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  display: block;
  width: min(100%, 630px);
  height: auto;
}


.main-nav {
  background: #fff;
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.main-nav a {
  margin: 0 14px;
  color: #111;
  text-decoration: none;
  font-size: 18px;
}

.main-nav a:hover {
  text-decoration: underline;
}

.main-nav a.active {
  border-bottom: 2px solid #8a6d1f;
  padding-bottom: 4px;
  color: #8a6d1f;
}


/* HOME PAGE */
.hero {
  text-align: center;
  padding: 40px 20px;
}

.hero h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.hero video {
  width: 100%;
  max-width: 1200px;
  border-radius: 8px;
}

.intro {
  max-width: 850px;
  margin: 70px auto;
  padding: 0 24px;
  text-align: center;
}

.intro h2 {
  font-size: 34px;
  margin-bottom: 22px;
}

.intro p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
}

/*HOME PAGE CHECKLIST*/

.highlights {
  max-width: 1000px;
  margin: 70px auto;
  padding: 0 24px;
  text-align: center;
}

.highlights h2 {
  font-size: 34px;
  margin-bottom: 35px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.highlight-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight-card h3 {
  margin-top: 0;
  color: #8a6d1f;
}

.highlight-card p {
  line-height: 1.7;
}

/*QUICK STATS - HOMEPAGE*/

.stats-section {
  max-width: 900px;
  margin: 70px auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 60px;
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #8a6d1f;
}

.stat-label {
  margin-top: 10px;
  font-size: 16px;
}

@media (max-width: 700px) {
  .stats-section {
    flex-direction: column;
    gap: 30px;
  }
}


/* BUTTONS */
.button {
  display: inline-block;
  padding: 14px 34px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
  margin-bottom: 25px;
  transition: all 0.2s ease;
}


.button:hover {
  background: #8a6d1f;
  transform: translateY(-2px);
}


/* PAGE CONTENT */
.page-content {
  max-width: 900px;
  margin: 70px auto;
  padding: 0 24px;
  text-align: center;
}

.page-content h1 {
  font-size: 40px;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-content h2 {
  margin-top: 45px;
  margin-bottom: 20px;
}

.page-content p {
  font-size: 17px;
  line-height: 1.8;
}

.page-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 35px;
}

/*ABOUT*/

.testimonial-card {
  max-width: 750px;
  margin: 30px auto;
  padding: 30px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
  margin: 0 0 15px;
  font-size: 20px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  text-align: right;
  font-weight: 600;
  color: #8a6d1f;
}

.musician-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 40px auto;
}

.musician-card {
  padding: 25px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.musician-card h3 {
  margin-top: 0;
  color: #8a6d1f;
}

@media (max-width: 700px) {
  .musician-grid {
    grid-template-columns: 1fr;
  }
}


/* MUSIC */


.playlist {
  max-width: 750px;
  margin: 25px auto 70px;
  padding: 28px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fafafa;
  text-align: left;
}

.playlist-player {
  width: 100%;
  margin-bottom: 20px;
}

.track-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #ddd;
}

.track-list li {
  padding: 14px 16px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: 0.2s;
}

.track-list li:hover {
  background: #eee;
}

.track-list li.active {
  background: #8a6d1f;
  color: #fff;
  font-weight: 600;
}


/* CATALOG */
.catalog-box {
  width: 100%;
  max-width: 700px;
  margin: 60px auto 0;
}

.catalog-search {
  width: 100%;
  margin-bottom: 20px;
}

.catalog-search input {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

.song-catalog {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.song-catalog li {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.genre-filters {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2rem;
}

.genre-filters button {
  padding: 10px 16px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
}

.genre-filters button:hover,
.genre-filters button.active {
  background: #8a6d1f;
  color: #fff;
  border-color: #8a6d1f;
}

@media (max-width: 768px) {
  .genre-filters {
    flex-wrap: wrap;
  }
}

.catalog-download {
  margin-top: 50px;
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #8a6d1f;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.back-to-top:hover {
  background: #111;
}


/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 25px 0;
}

.faq-item h2 {
  font-size: 22px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-item h2::after {
  content: "+";
  position: absolute;
  right: 0;
}

.faq-item h2::after {
  color: #8a6d1f;
}

.faq-item.open h2::after {
  content: "–";
}

.faq-item p {
  display: none;
  font-size: 17px;
  line-height: 1.6;
}

.faq-item.open p {
  display: block;
}

.faq-controls {
  text-align: right;
  margin-bottom: 20px;
}

.faq-btn {
  padding: 8px 14px;
  font-size: 14px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 8px;
  transition: 0.2s;
}

.faq-btn:hover {
  background: #e9e9e9;
}


/* SERVICES */
.service-list {
  max-width: 900px;
  margin: 40px auto;
}

.service-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 24px;
}

.service-card p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.service-card p:last-child {
  margin-bottom: 0;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #8a6d1f;
  margin-bottom: 15px;
}


/* FOOTER */
.site-footer {
  text-align: center;
  padding: 50px 20px 30px;
  border-top: 1px solid #e5e5e5;
  margin-top: 60px;
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 6px 0;
  font-size: 16px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.copyright {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
}

/*CONTACT FORM*/

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
}


#formStatus {
  display: none;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #d4edda;
  background: #f8fff8;
  color: #8a6d1f;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  text-align: center;
  margin: 20px 0;
  line-height: 1.8;
}

.contact-separator {
  margin: 0 12px;
  color: #999;
}

.inquiry-card {
  max-width: 750px;
  margin: 60px auto 0;
  padding: 30px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.inquiry-card h2 {
  margin-top: 0;
  text-align: center;
}

.contact-form {
  max-width: none;
  margin-top: 25px;
}


/* MOBILE RESPONSIVENESS */
@media (max-width: 700px) {
  .logo {
    padding: 16px 14px;
  }

  .logo img {
    max-width: 320px;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    padding: 18px 16px;
  }

  .main-nav a {
    margin: 0;
    font-size: 14px;
  }

  .hero {
    padding: 25px 16px;
  }

  .hero h2 {
    font-size: 26px;
  }

  .intro,
  .page-content {
    margin: 45px auto;
    padding: 0 18px;
  }

  .page-content h1 {
    font-size: 32px;
  }

  .playlist,
  .service-card {
    padding: 20px;
  }

  .price {
    font-size: 28px;
  }

  .faq-item h2 {
    font-size: 20px;
  }
  
  .highlight-grid {
  grid-template-columns: 1fr;
}

.highlights {
  margin: 45px auto;
  padding: 0 18px;
}
}


/*CONTACT FORM MOBILE*/ 
@media (max-width: 600px) {
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .contact-separator {
    display: none;
  }
}



/*HIDE/SHOW PAGE CONTENT - SPA INDEX*/

.page-section {
  display: none;
  opacity: 0;
  transform: translateY(8px);
}

.page-section.active {
  display: block;
  animation: sectionFadeIn 0.35s ease-out forwards;
}

@keyframes sectionFadeIn {
  from {
    opacity: 0.85;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}








