/* HighestFi Mastering — static rebuild of highestfi.com
   Source: WordPress 6.9.4 / Themify Ultra backup, 7-12-2026
   Fonts per original customizer: Vollkorn (h1), Abel (header) */

:root {
  --yellow: #f9d71c;
  --dark: #0e0e0e;
  --text: #666;
  --heading: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
}

h1, .fancy-heading { font-family: 'Vollkorn', serif; font-weight: 400; }
h2, h3, h4, h5, h6 { color: var(--heading); font-weight: 600; }

a { color: inherit; }

/* ---------- Header ---------- */
#headerwrap {
  background: var(--dark) url('images/retro-audio-cassette.jpg') center/cover no-repeat;
  position: relative;
}
#headerwrap::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6);
}
#header {
  font-family: 'Abel', sans-serif;
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
#site-logo {
  font-size: 1.5em;
  letter-spacing: .5px;
  color: #fff;
  text-decoration: none;
}
#main-nav {
  list-style: none;
  display: flex;
  gap: 28px;
}
#main-nav a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 1.05em;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#main-nav a:hover, #main-nav .current a { color: var(--yellow); }

/* ---------- Hero rows ---------- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}
.hero .overlay { position: absolute; inset: 0; }
.hero .inner { position: relative; max-width: 900px; margin: 0 auto; padding: 0 24px; }
.hero h1 {
  color: #fff;
  font-size: 3.4em;
  line-height: 1.15;
  margin-bottom: .2em;
}
.hero p.tagline { font-size: 1.35em; color: rgba(255,255,255,.95); }

/* Home hero — parallax, 51% black overlay (original values) */
.hero-home {
  background-image: url('images/retro-audio-cassette.jpg');
  background-attachment: fixed;
  padding: 16% 0 12%;
}
.hero-home .overlay { background: rgba(0,0,0,.51); }

/* Contact hero — 34% black overlay (original values) */
.hero-contact {
  background-image: url('images/highestfi-top.jpeg');
  padding: 14% 0 8%;
}
.hero-contact .overlay { background: rgba(0,0,0,.34); }

/* Outline button (original: outline style, yellow, squared, white label) */
.btn-outline {
  display: inline-block;
  margin-top: 2em;
  padding: .8em 2.4em;
  border: 2px solid var(--yellow);
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .95em;
  transition: background .25s, color .25s;
}
.btn-outline:hover { background: var(--yellow); color: #000; }

/* ---------- Content sections ---------- */
.section {
  text-align: center;
  padding: 4% 9%;
  max-width: 1160px;
  margin: 0 auto;
}
.section h5 {
  font-size: 1.15em;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1em;
}
.section p { max-width: 760px; margin: 0 auto; }

/* ---------- Contact form (fields per original WPForms "Contact Highest Fi") ---------- */
.contact-section { max-width: 640px; margin: 0 auto; padding: 4.5% 24px 2.75%; text-align: center; }
.contact-section h4 { font-size: 1.5em; margin-bottom: .3em; }
.contact-section h5 { font-style: italic; font-weight: 400; margin-bottom: 2em; }

form.contact-form { text-align: left; }
.form-row { display: flex; gap: 16px; }
.form-row > div { flex: 1; }
label { display: block; font-size: .9em; margin: 14px 0 4px; color: var(--heading); }
label .req { color: #c00; }
input[type=text], input[type=email], textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font: inherit;
  color: #333;
}
input:focus, textarea:focus { outline: 2px solid var(--yellow); border-color: var(--yellow); }
textarea { min-height: 140px; resize: vertical; }
.sub-label { font-size: .78em; color: #999; margin-top: 2px; }
button[type=submit] {
  margin-top: 22px;
  padding: 12px 36px;
  background: var(--dark);
  color: #fff;
  border: none;
  font: inherit;
  letter-spacing: 1px;
  cursor: pointer;
}
button[type=submit]:hover { background: var(--yellow); color: #000; }

/* ---------- 404 / success ---------- */
.page-simple { text-align: center; padding: 10% 24px; }
.page-simple h1 { color: var(--heading); font-size: 3em; }
.page-simple h1 em { font-style: italic; }
.page-simple h5 { font-weight: 400; margin-top: .5em; }

/* ---------- Footer ---------- */
#footerwrap {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 40px 24px;
  font-size: .9em;
  margin-top: 4%;
}
#footerwrap a { color: rgba(255,255,255,.8); text-decoration: none; }

/* ---------- Animations (original used fadeInDown / fadeInUp / fadeInLeft) ---------- */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: none; } }
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(30px);  } to { opacity: 1; transform: none; } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: none; } }
.fadeInDown { animation: fadeInDown .9s both; }
.fadeInUp   { animation: fadeInUp .9s both; }
.fadeInLeft { animation: fadeInLeft .9s both; }

/* ---------- Mobile (original bumped hero padding on mobile) ---------- */
@media (max-width: 680px) {
  .hero-home { padding: 35% 0 25%; background-attachment: scroll; }
  .hero-contact { padding: 35% 0 25%; }
  .hero h1 { font-size: 2.2em; }
  .section { padding: 20% 24px; }
  .form-row { flex-direction: column; gap: 0; }
  #header { justify-content: center; }
}
