* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: #d4cfc7;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: #363434;
  padding: 40px 0 60px;
  text-align: center;
}

.hero-headline {
  font-size: 150px;
  font-weight: black;
  color: #f4e4a8;
  letter-spacing: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 5px;
  font-family: prompt, system-ui, -apple-system, sans-serif;
}

.subtitle {
  font-size: 36px;
  color: #f4e4a8;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-family: playball;
}

.hero-content {
  margin-top: 40px;
}

.hero-image-rotator {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.fade-img {
  position: absolute;
  border-radius: 4px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.5s ease-in-out;
}

.img-bottom {
  z-index: 1;
  opacity: 1;
}

.img-top {
  z-index: 2;
  opacity: 1;
  animation: crossfade 4s infinite;
}

@keyframes crossfade {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.tagline {
  color: #f4e4a8;
  line-height: 1.3;
  margin-bottom: 30px;
  text-transform: capitalize;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.tagline h3 {
    font-size: 20px;
    font-family: prompt, sans-serif;

}

.btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 15px auto;
  padding: 14px 24px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
  font-family: prompt, sans-serif;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: #8b3a3a;
  color: white;
}

.btn-secondary {
  background: #f4e4a8;
  color: #333;
}

.btn-add-playlist {
  background: #f4e4a8;
  color: #333;
  margin-top: 30px;
}

/* Music Player Section */
.music-player {
  background: #8b3a3a;
  padding: 60px 0;
  text-align: center;
}

.track-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  font-family: prompt, sans-serif;
}

.track-info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  font-family: prompt, sans-serif;
}

/* Tour Guide Section */
.tour-guide {
  background: #363434;
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  color: #f4e4a8;
  line-height: 1.2;
  margin-bottom: 40px;
  font-family: prompt;
}
.tour-graphic {
  width: 100%;
  max-width: 600px; /* or whatever size looks good on desktop */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Contact Section */
.contact {
  background: #8b3a3a;
  padding: 60px 0;
  text-align: center;
}

.form {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.form label {
  font-size: 1rem;
  color: #f5e6b8; /* adjust to match your cream heading color */
  font-weight: 600;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form input:focus,
.form textarea:focus {
  border-color: #d8b06a; /* subtle gold tone */
  outline: none;
}

.submit-btn {
  padding: 0.9rem 2rem;
  background: #f5e6b8; /* cream */
  color: #652d2b; /* deep red text */
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  opacity: 0.85;
}

.form-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

/* Form column */
.form {
  flex: 1;
  max-width: 450px;
  /* remove the auto centering that was messing alignment up */
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0; /* padding optional – remove if you don’t want it */
}

.form label {
  font-size: 1rem;
  color: #f5e6b8;
  font-weight: 600;
  font-family: prompt, sans-serif;
}

/* Image column */
.form-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: #f4e4a8;
  padding: 50px 0;
  text-align: center;
}

.footer-label {
  font-size: 18px;
  font-weight: 700;
  color: #8b3a3a;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #8b3a3a;
  border-radius: 50%;
  color: #f4e4a8;
  transition: transform 0.2s, opacity 0.8s;
}

.social-link:hover {
  transform: scale(1.1);
}

.footer-logo {
  font-size: 72px;
  font-weight: black;
  color: #8b3a3a;
  letter-spacing: 8px;
  font-family: prompt, system-ui, -apple-system, sans-serif;
}

/* Responsive Design */

@media (min-width: 1024px) {
  .container {
    max-width: 800px;
  }
}

@media (max-width: 950px) {
  .form-box {
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* smaller gap when stacked */
  }

  .form {
    width: 100%;
    max-width: 600px;
  }

  .form-image img {
    max-width: 100%;
    width: 100%;
  }

  .hero-headline {
    font-size: 90px;
  }
}
@media (min-width: 768px) {
    .container {
    max-width: 600px;
  }

  .logo {
    font-size: 64px;
  }

  .tagline {
    font-size: 40px;
  }

  .vinyl-container {
    width: 250px;
    height: 250px;
  }

  .track-title {
    font-size: 32px;
  }
}
