/* 🎨 Color and Font Variables */
:root {
  --primary-color: #e6cfe6;
  /* Light pink from mic highlight */
  --secondary-color: #0d0d0d;
  /* Deep black background */
  --accent-color: #9933cc;
  /* Deep purple for accents */
  --text-color: #ffffff;
  --font-family: 'Arial', sans-serif;
}

/* 📄 Global Styles */
body {
  margin: 0;
  font-family: var(--font-family);
  background-color: var(--secondary-color);
  color: var(--text-color);
}

/* 🔝 Header and Navigation */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--secondary-color);
  padding: 1rem;
  z-index: 1000;
  border-bottom: 1px solid var(--accent-color);
}

.logo img {
  width: 10%;
  border: solid 2px var(--accent-color);
  border-radius: 50%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
}

/* 💫 Hover effect for nav links */
li a:hover {
  color: var(--accent-color);
}

/* 🍔 Hamburger Menu (Mobile) */
.hamburger {
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  z-index: 1001;
  margin-right: 1rem;
  display: none;
}

/* 📱 Side Menu (Mobile Drawer) */
.side-menu {
  position: fixed;
  top: 70px;
  right: 0;
  width: 220px;
  background-color: var(--secondary-color);
  padding: 1rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
  border-right: 1px solid var(--accent-color);
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu a {
  color: var(--text-color);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
}

/* 🦸 Hero Section */
.hero {
  margin-top: 100px;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(to bottom, #1a1a1a, var(--secondary-color));
  background-image: url(/media/hero.jpeg);
  background-repeat: no-repeat;
  background-size: contain;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--accent-color);
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,
    -1px 1px 0 #000, 1px 1px 0 #000;
}

.tagline {
  font-size: 1.25rem;
  color: var(--text-color);
  line-height: 50px;
}

.release {
  margin-top: 1rem;
  font-weight: bold;
}

/* ✉️ Contact + Anonymous Drop Section */
.contact,
.anonymous {
  padding: 2rem;
  background-color: #1a1a1a;
  margin-top: 2rem;
}

/* Contact Form and Anonymous Link Styling */
.contact form,
.anonymous a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

input,
textarea,
button {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--accent-color);
  border-radius: 4px;
}

button {
  background-color: var(--accent-color);
  color: var(--text-color);
  cursor: pointer;
  transition: background 0.3s;
}

#contact h2 {
  text-align: center;
}

button:hover {
  background-color: #bf5fff;
}

/* Anonymous Section Link */
#anonymous {
  text-align: center;
}

#anonymous a {
  color: var(--accent-color);
  text-decoration: none;
}

#anonymous a:hover {
  color: #bf5fff;
}

/* 🦶 Footer Section */
.footer {
  text-align: center;
  padding: 2rem;
  background-color: var(--secondary-color);
  border-top: 1px solid var(--accent-color);
}

.footer a {
  color: var(--text-color);
  margin: 0 0.5rem;
  text-decoration: none;
}

/* 📝 Blog-Specific Styles */
.full-content {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: #0070f3;
  text-decoration: underline;
}

/* 💬 Comments Section */
.comment {
  border-top: 1px solid #ddd;
  margin-top: 1em;
  padding-top: 0.5em;
}

#comment-form {
  margin-top: 2em;
}

#comment-form input,
#comment-form textarea {
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0.5em;
}

#comment-form button {
  padding: 0.5em 1em;
}

/* 📱 Responsive Design: Mobile-first adjustments */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }
}