/* css/style.css */
:root {
  --primary-color: #FF6F61;
  --secondary-color: #6B5B95;
  --accent-color: #88B04B;
  --background-color: #F7CAC9;
  --text-color: #333;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--background-color);
  color: var(--text-color);
}

header {
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo h1 {
  font-family: 'Righteous', cursive;
  color: #fff;
  font-size: 2rem;
}

.nav-links ul {
  list-style: none;
  display: flex;
}

.nav-links ul li {
  margin-left: 1.5rem;
}

.nav-links ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: opacity 0.3s;
}
.nav-links ul li a:hover {
  opacity: 0.7;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.active { max-height: 200px; }
  .nav-links ul {
    flex-direction: column;
    text-align: center;
  }
  .nav-links ul li { margin: 1rem 0; }
}

section {
  padding: 4rem 2rem;
  text-align: center;
}

.hero {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 6rem 2rem;
}

.hero h2 {
  font-family: 'Righteous', cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p { font-size: 1.2rem; }

.intro p {
  max-width: 600px;
  margin: 1rem auto;
}

.latest .release {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.latest .release img {
  width: 100%;
  border-radius: 10px;
}
.latest .release button {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s;
}
.latest .release button:hover { opacity: 0.8; }

.section-header h2 {
  font-family: 'Righteous', cursive;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.section-header p {
  font-size: 1rem;
  color: var(--secondary-color);
}

/* Cards (Merch) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.card {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); }
.card img {
  width: 100%;
  border-radius: 10px;
}
.card h3 {
  margin: 1rem 0 0.5rem;
  font-family: 'Righteous', cursive;
}
.card p { margin-bottom: 1rem; }
.card button {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s;
}
.card button:hover { opacity: 0.8; }

/* Show list */
.show-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.show-list li {
  background: #fff;
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 10px;
  max-width: 600px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.show-list li span { font-size: 1rem; }
.show-list li a {
  text-decoration: none;
  background: var(--secondary-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
}
.show-list li a:hover { opacity: 0.8; }

/* About */
.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.about-content img {
  width: 200px;
  border-radius: 50%;
}
.about-content div { text-align: left; }

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid var(--secondary-color);
  border-radius: 5px;
  font-size: 1rem;
}
.contact-form button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}
.contact-form button:hover { opacity: 0.8; }

/* Linktree */
.linktree-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.linktree-list li a {
  text-decoration: none;
  background: var(--secondary-color);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  display: block;
  transition: background 0.3s;
}
.linktree-list li a:hover {
  background: var(--accent-color);
}

footer {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 1rem;
}
