/* =========================================
   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);
}

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: 600;
  background: var(--gold);
  color: var(--black) !important;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-consult:hover,
.btn-primary:hover {
  background: var(--gold-hover);
  color: var(--black) !important;
}

/* 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; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* =========================================
   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: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--silver);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .section { padding: 56px 24px; }

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