/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;;
  background: #f3e1c5;
  color: #2b1e14;
  line-height: 1.6;
  padding-bottom: 50px;
}
.header-img {
  width: 100%;
  display: block;
}
.site-title {
  text-align: left;
  padding: 1.5rem;
  background-color: #f3e1c5;
}
.site-title h1 {
  font-family: 'Century Gothic', sans-serif;
  font-size: 1.5rem;
}
.site-title h2 {
  font-family: 'Century Gothic', sans-serif;
  font-size: 2rem;
  font-weight: bold;
}
.top-nav {
  text-align: right;
  background-color: #f3e1c5;
  padding: 0.5rem 1.5rem;
}
.top-nav ul {
  list-style: none;
}
.top-nav ul li {
  display: inline;
}
.top-nav a {
  text-decoration: none;
  color: #2b1e14;
  font-family: 'Century Gothic', sans-serif;
  font-size: 0.9rem;
}
.catalog {
  padding: 2rem;
}
/* Intro heading + paragraph (full width) */
.intro {
  width: 100%;
  padding: 2rem 3rem;
  text-align: left;
}

.intro h2 {
  font-family: "Century Gothic", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2d1d10;
}



/* Base paragraph style (global) */
p {
  font-family: Georgia, serif;;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #2a1c0f;
  margin-bottom: 1.2rem;
}

/* Page intro container */
.page-text {
  padding: 0 3rem;
}
  


/* Page intro headings */
.page-text h1 {
  font-size: 1.8rem;
}

.page-text h3 {
  font-size: 1.5rem;
}

.preview-heading {
  font-family: 'Century Gothic', sans-serif;
  font-size: 1.3rem;
  margin: 1.5rem 0 0.5rem;
}
/* ===== SONG GRID FIX: EXACT 4 COLUMNS ===== */

.song-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* always 4 columns */
  gap: 2rem;
  padding: 1.5rem 3rem;
  align-items: start;
}

.preview-heading {
  padding: 1rem 3rem;
}

.preview-heading h2 {
  font-family: "Century Gothic", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* genre heading */
.genre h4 {
  font-family: "Century Gothic", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
  color: #3a2c1d;
}

/* each track in column */
.track {
  margin-bottom: 1rem;
}

.track audio {
  width: 120px;
  height: 28px;
  background: #eee;
  border-radius: 4px;
}

.track span {
  display: block;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: #111;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1200px) {
  .song-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 wide on medium screens */
  }
}

@media screen and (max-width: 600px) {
  .song-grid {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
  .track audio {
    width: 100px;
  }
}

audio {
  width: 100%;
  height: 28px;
  margin-bottom: 0.3rem;
}
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
}
.footer-links {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.footer-links img {
  height: 28px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-links img:hover {
  opacity: 1;
  transform: translateY(-2px);
}






html {
  -webkit-text-size-adjust: 100%;
}
/* ===== ALBUMS PAGE ===== */

.albums-intro h1 {
  font-family: "Palatino Linotype", Palatino, serif;
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.albums-divider {
  height: 4px;
  width: 100%;
  background: #b9782a;
  margin: 1.5rem 0 2.2rem;
}

/* Album grid exactly like design */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  padding: 0 3rem 3rem;
}

.album img {
  width: 275px;
  height: 275px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.album-title {
  margin-top: 0.6rem;
  font-family: "Palatino Linotype", Palatino, serif;
  font-size: 1rem;
}
.album:hover .album-title {
  color: #b9782a; /* same warm accent color you’re already using */
}
.album:hover img {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}
.album img {
  transition: transform 0.2s ease;
}
.album {
  text-decoration: none;
  color: inherit;
}

.album:visited,
.album:hover,
.album:active {
  text-decoration: none;
  color: inherit;
}
/* ===== CONTACT PAGE ===== */

.contact-form-wrapper {
  padding: 1.5rem 3rem 3rem;
  max-width: 700px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-family: "Century Gothic", sans-serif;
  font-size: 0.9rem;
  margin: 0.8rem 0 0.3rem;
}

.contact-form input,
.contact-form textarea {
  font-family: "Palatino Linotype", Palatino, serif;
  font-size: 1rem;
  padding: 0.6rem 0.5rem;
  border: 1px solid #b9a58c;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 1.2rem;
  padding: 0.6rem 1.2rem;
  font-family: "Century Gothic", sans-serif;
  font-size: 0.9rem;
  background: #b9782a;
  color: #fff;
  border: none;
  cursor: pointer;
  width: fit-content;
}

.contact-form button:hover {
  opacity: 0.9;
}

/* Mobile */
@media screen and (max-width: 600px) {
  .contact-form-wrapper {
    padding: 1.25rem;
  }
}

.audio-compare {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.audio-block {
  flex: 1;
  min-width: 250px;
}

.audio-label {
  font-weight: bold;
  margin-bottom: 0.3rem;
}


/* Responsive */


@media screen and (max-width: 1000px) {
  .albums-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .albums-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem 2rem;
  }
}

