/* =========================================
   MUSIC BY DAY — Global Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Forum&family=Mulish:wght@400;500;600;700&family=Libre+Franklin:wght@400;600&family=Inter:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --black:      #1F1F1F;
  --gray:       #5F5F5F;
  --cream:      #F4F0EA;
  --silver:     #DCD8D3;
  --gold:       #EAD1A0;
  --gold-border: #D8BE8A;
  --gold-hover:  #D3BD90;

  --font-display: 'Forum', serif;
  --font-section: 'Mulish', sans-serif;
  --font-sub:     'Libre Franklin', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1 {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
}

h2 {
  font-family: var(--font-section);
  font-size: 34px;
  font-weight: 600;
  line-height: 42px;
  color: var(--black);
}

/* Kill the 80px top padding .section adds on inner-page sections */
.faq-section,
.consult-section {
  padding-top: 0 !important;
}

h3 {
  font-family: var(--font-sub);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}

p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.75;
}

/* =========================================
   NAV
   ========================================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 60px;
  overflow: visible;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}

.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 100%;
}

/* Nav text links — underline on hover, no color change */
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  position: relative;
  padding-bottom: 2px;
  display: flex;
  align-items: center;
  transition: none;
}

.nav-links a:not(.btn-consult)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.22s ease;
}

.nav-links a:not(.btn-consult):hover::after { width: 100%; }

.nav-links a.active { font-weight: 500; }
.nav-links a.active::after { width: 100%; }

/* Shared button base */
.btn-consult,
.btn-primary {
  font-family: var(--font-body);
  font-weight: 500;
  background: #EAD1A0;
  color: var(--black) !important;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 4px 4px 4px 0 rgba(0,0,0,0.10);
}

/* Hover: color change + drop shadow retained */
.btn-consult:hover,
.btn-primary:hover {
  background: #D3BD90;
  color: var(--black) !important;
  box-shadow: 4px 4px 4px 0 rgba(0,0,0,0.10);
}

/* Active (click): swap drop shadow for inner shadow */
.btn-consult:active,
.btn-primary:active {
  background: #D3BD90;
  box-shadow: inset 4px 4px 4px 0 rgba(0,0,0,0.10);
}

/* Nav button — flex for reliable vertical centering */
.btn-consult {
  display: flex;
  align-items: center;
  font-size: 14px;
  height: 44px;
  padding: 0 28px;
}

/* All other primary buttons — inline-block, padding only */
.btn-primary {
  display: inline-block;
  font-size: 16px;
  padding: 18px 28px;
  line-height: 1;
}

/* Kill underline pseudo-element on consult button */
.btn-consult::after { display: none !important; }

/* Fries menu icon: short top, long middle, short bottom */
.nav-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
  position: relative;
  width: 28px;
  height: 28px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Fries: top long, middle short, bottom long — all centered */
.nav-toggle span:nth-child(1) { width: 24px; top: 4px; left: 50%; transform: translateX(-50%); }
.nav-toggle span:nth-child(2) { width: 12px; top: 13px; left: 50%; transform: translateX(-50%); }
.nav-toggle span:nth-child(3) { width: 24px; top: 22px; left: 50%; transform: translateX(-50%); }

/* X state */
.nav-toggle.open span:nth-child(1) {
  width: 22px;
  transform: translateX(-50%) translateY(9px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle.open span:nth-child(3) {
  width: 22px;
  transform: translateX(-50%) translateY(-9px) rotate(-45deg);
}

/* =========================================
   OUTLINE BUTTON
   ========================================= */

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
  padding: 13px 28px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 4px;
}
.btn-outline:hover { background: var(--black); color: #fff; }

/* =========================================
   SECTION WRAPPER
   ========================================= */

.section { padding: 80px 60px; }
.section-narrow { max-width: 900px; margin: 0 auto; }
.section-wide  { max-width: 1200px; margin: 0 auto; }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

/* Decorative divider */
.ornament {
  display: block;
  margin: 12px auto 0;
  width: 180px;
  height: 24px;
}

/* =========================================
   PLACEHOLDER IMAGE
   ========================================= */

.img-placeholder {
  background: var(--silver);
  width: 100%;
}

/* =========================================
   FOOTER
   ========================================= */

footer {
  background: var(--cream);
  text-align: center;
  padding: 24px 60px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  border-top: 1px solid var(--silver);
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {
  nav { padding: 0 24px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 50px;
    gap: 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    z-index: 99;
    height: auto;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .section { padding: 56px 24px; }

  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
}
