:root {
  --primary: #cba135;
  --secondary: #ffbf00;
  --dark: #111111;
  --light: #f8f8f8;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Tahoma', sans-serif;
}

html, body {
  background-color: var(--light);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
}

/* Typography (Desktop-first) */
h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.05rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--primary);
  text-align: center;
}

h4 {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.03rem;
  /* body text color stays neutral */
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.2s ease;
}

a:hover {
  color: #b58929;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
}

.logo img {
  margin-bottom: 0;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--primary);
  margin-top: 4px;
  font-family: Arial, sans-serif;
  letter-spacing: 0.05rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  pointer-events: none;
}

/* Layout Wrappers */
.wrapper-main-content,
.wrapper-main-content-dark,
.wrapper-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.wrapper-main-content-dark {
  background-color: var(--dark);
  color: var(--text-light);
}

.dark-container {
  background-color: var(--dark);
  color: var(--text-light);
}

/* Header */
.header {
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3)), url(img/recording-studio-ct-nyc.webp);
  background-position: center;
  background-size: cover;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.page-header {
  min-height: 27vh;
  background-color: black;
  color: var(--text-light);
  display: flex;
  align-items: center;
  padding: 40px 20px;
}

/* Navigation */
.site-nav {
  background-color: #000;
  padding: 20px;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.site-nav.drop-in {
  transform: translateY(-100%);
  opacity: 0;
  animation: dropIn 0.6s ease forwards;
}

@keyframes dropIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links li a {
  color: var(--text-light);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  padding: 10px;
  border-radius: 4px;
  display: inline-block;
}

.nav-links li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.12);
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

/* Footer Contact Section */
.footer-contact {
  text-align: center;
  padding: 40px 20px;
  background-color: #111111;
  color: var(--primary);
}

.contact-box {
  display: inline-block;
  background-color: #000000;
  border: 2px solid var(--primary);
  padding: 20px 30px;
  margin: 15px 10px;
  border-radius: 6px;
  min-width: 280px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.contact-item {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #b58929;
}

.booking-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary);
  color: #111111;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.booking-link:hover {
  background-color: #b58929;
  color: #ffffff;
}

/* Footer Bottom Section */
.wrapper-footer {
  padding: 40px 20px;
  text-align: center;
}

.wrapper-footer h4 a {
  color: var(--text-light);
  font-weight: bold;
}

.wrapper-footer h4 a:hover {
  color: var(--primary);
}

.social-menu {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-menu li a {
  color: var(--text-light);
  font-weight: bold;
  transition: color 0.3s ease;
}

.social-menu li a:hover {
  color: var(--primary);
}

/* --- SERVICE CARDS --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: #ffffff;
  color: var(--text-dark);
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  border-left: 4px solid var(--primary);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: var(--primary);
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Fade Up Animation */
.fade-up {
  animation: fadeUp 1s ease-in-out both;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =========================
   MOBILE OVERRIDES (<=768px)
   ========================= */
@media (max-width: 768px) {
  /* Cleaner type scale on mobile */
  h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
    letter-spacing: -0.02rem;
    text-shadow: none; /* less “glow” on small screens */
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  h2 {
    font-size: clamp(1.6rem, 6vw, 2rem);
    margin-bottom: 14px;
    color: var(--text-dark); /* reduce gold dominance on light sections */
  }

  /* Keep headings inside dark sections readable without heavy gold */
  .dark-container h2 {
    color: var(--text-light);
  }

  p {
    font-size: 1.05rem;
    letter-spacing: 0.01rem;
  }

  /* Links: tone down gold body links on mobile for cleaner look */
  a {
    color: inherit;            /* inherit section text color */
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  a:hover {
    opacity: 0.85;
    color: inherit;
    text-decoration: underline;
  }

  /* Navigation */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 6px;
    margin-top: 12px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    padding: 12px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
  }

  .hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.is-active span:nth-child(2) { opacity: 0; }
  .hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Header spacing tweaks */
  .header {
    padding: 48px 18px;
    min-height: 80vh;
  }

  .wrapper-main-content,
  .wrapper-main-content-dark,
  .wrapper-footer {
    padding: 44px 18px;
  }

  /* Footer contact: reduce gold saturation, keep contrast */
  .footer-contact {
    color: var(--text-light);
  }

  .contact-box {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 10px auto;
    border-color: rgba(203,161,53,0.5); /* softer gold border */
  }

  .contact-item,
  .contact-item a {
    color: var(--text-light);
  }

  .booking-link {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 12px auto 0;
    background-color: var(--primary);
    color: #111111;
  }

  /* Service cards: lighter elevation on mobile */
  .service-card {
    padding: 22px 18px;
    border-left: 3px solid rgba(203,161,53,0.6);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  .service-card h3 {
    color: var(--text-dark);
  }
}
