/* Reuse the core reset from the previous CSS */
:root {
  color-scheme: light dark;
  --bg: light-dark(#fdfdfd, #121212);
  --text: light-dark(#1a1a1a, #e0e0e0);
  --accent: #c6a052; /* A subtle "gold/brass" for a musical feel */
  --faded: #888;
  
  font-family: "Palatino", "Georgia", serif; /* Serifs often feel more "musical" */
  line-height: 1.6;
}

body {
  background-color: var(--bg);
  color: var(--text);
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navigation - Space between brand and links */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
}

.brand {
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Typography */
h1 {
  font-size: 3rem;
  font-weight: 300; /* Light and airy */
  text-wrap: balance;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--faded);
  margin-bottom: 3rem;
}

/* Media/Audio Placeholder */
.media-placeholder {
  background: light-dark(#eee, #222);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--faded);
  border-radius: 4px;
}

footer {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.8rem;
  text-align: center;
  color: var(--faded);
}

a {
  color: inherit;
  text-decoration-color: var(--accent);
}

/* Container for the logo and text */
.logo-link {
  display: flex;
  align-items: center; /* Vertically centers the icon with the text */
  gap: 0.75rem;         /* Space between the icon and the text */
  text-decoration: none;
  color: inherit;
}

/* Style for the favicon/icon itself */
.favicon {
  width: 32px;         /* Standard visible size for a header icon */
  height: 32px;
  display: block;
  object-fit: contain; /* Ensures the image doesn't distort */
  border-radius: 4px;  /* Optional: gives it a slight soft corner */
}

/* Optional: Make the brand name stand out */
.brand-name {
  font-weight: bold;
  letter-spacing: 1px;
}

/* 1. Form Container & Spacing */
form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 500px;
  margin-top: 2rem;
}

/* 2. Inputs & Textarea */
input:not([type="submit"]),
textarea {
  width: 100%;
  padding: 0.8rem;
  background: light-dark(#ffffff, #2a2a2a);
  color: var(--text);
  border: 1px solid var(--faded);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent), transparent 80%);
}

/* 3. The Submit Button */
button[type="submit"] {
  padding: 1rem 2rem;
  background-color: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s, transform 0.1s;
}

button[type="submit"]:hover {
  opacity: 0.9;
}

button[type="submit"]:active {
  transform: scale(0.98);
}

/* 4. Anti-Spam Honeypot (Visually Hidden) */
.form-helper {
  display: none !important;
  visibility: hidden;
  height: 0;
  width: 0;
  z-index: -1;
}

/* 5. Success & Error Messages */
.status-msg {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  border: 1px solid;
}

.status-success {
  background-color: light-dark(#e6fffa, #1a2e2a);
  border-color: #38b2ac;
  color: #234e52;
}

.status-error {
  background-color: light-dark(#fff5f5, #2d1a1a);
  border-color: #e53e3e;
  color: #742a2a;
}

input[name="website_url"] {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px; /* A "belt and suspenders" approach */
}
