body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #0b0b0b;
  color: #f2f2f2;
}

.site-header {
  width: 100%;
  padding: 2rem 0;
  background: none !important;
  text-align: center; /* ensures logo centers */
}

.nav-container {
  width: 100%;
  background: transparent !important;
}

.logo {
  display: inline-block; /* works with text-align center */
}

.logo img {
  display: block;
  margin: 0 auto;        /* ensures centering even if container changes */
  max-width: 220px;      /* adjust as needed */
  height: auto;
  filter: invert(1);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #c9a24d;
}

.nav-cta a {
  padding: 8px 18px;
  color: #000;
  border-radius: 4px;
  font-weight: bold;
}

.hero {
  height: 100vh;
  background: url('djpic.jpg') center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.65);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 700px;
  font-size: 1.2rem;
}

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  margin: 10px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.btn-primary {
  background: #c9a24d;
  color: #000;
}

.btn-secondary {
  border: 1px solid #c9a24d;
  color: #c9a24d;
}

.highlights {
  display: flex;
  justify-content: space-around;
  padding: 4rem 2rem;
  background: #111;
}

.highlight {
  max-width: 300px;
  text-align: center;
  padding: 5rem 2rem;
}

.vinyl-preview {
  padding: 4rem 2rem;
  text-align: center;
}

.vinyl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.record img {
  width: 100%;
  border-radius: 6px;
}

.about-preview,
.contact-cta {
  padding: 4rem 2rem;
  text-align: center;
  background: #111;
}

.about-preview,
#about {
  position: relative;
  z-index: 10;
}

.testimonials {
  padding: 4rem 2rem;
  font-style: italic;
  text-align: center;
}

.footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  background: #000;
}

.highlight-icon {
  font-size: 3rem;
  color: #c9a24d;
  margin-bottom: 1rem;
  display: block;
}

.about-preview {
  background: #111;
  display: flex;
  justify-content: center; /* center the container horizontally */
  padding: 6rem 2rem;      /* top/bottom and side padding */
  position: relative;
  z-index: 5;
}

.about-container {
  display: flex;
  align-items: flex-start; /* text aligns to top */
  justify-content: center; /* optional: center text+image inside container */
  gap: 4rem;
  max-width: 1200px;       /* limits the width */
  width: 100%;
}


.about-text {
  flex: 0 0 55%;
  text-align: justify;
  font-size: 20px;
}

.about-image {
  flex: 0 0 40%;
}


/* Mobile */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.booking-section {
  background: #0b0b0b;
  text-align: center;
}

.booking-section p {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #ccc;
}

.booking-form {
  max-width: 800px;
  margin: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: #111;
  border: 1px solid #222;
  color: #fff;
  border-radius: 6px;
  font-size: 0.95rem;
}

.booking-form textarea {
  margin-bottom: 2rem;
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #c9a24d;
}

@media (max-width: 768px) {
  .about-container {
    display: flex;              /* keep flex */
    flex-direction: column-reverse; /* IMAGE FIRST, TEXT AFTER */
  }
}

.select-wrapper {
  width: 100%;
  position: relative;
}

.booking-form select {
  width: 100%;
  padding: 14px 16px;
  background: #111;
  border: 1px solid #222;
  color: #fff;
  border-radius: 6px;
  font-size: 0.95rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.booking-form select:focus {
  outline: none;
  border-color: #c9a24d;
}

/* Optional: add custom arrow */
.select-wrapper::after {
  content: "\25BC";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #c9a24d;
  pointer-events: none;
  font-size: 0.8rem;
}

.site-header {
  background: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.hero,
.hero-section,
.banner,
#hero {
  background-image: url('djpic.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
