/*
Theme Name: Mytheme
Author: Felix Luna
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans:wght@300;400;500;600;700&family=Special+Gothic+Expanded+One&display=swap');

html {
  scroll-behavior: smooth;
}

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --color-bg-dark: #3a1200;
  --color-bg-alt: #4b1700;
  --color-accent: #d9a44f;
  --color-accent-hover: #e7b767;
  --color-accent-blue: #89a9db;
  --color-link-blue: #1687ff;
  --color-text-dark: #ffffff;
  --color-text-light: #1b1b1b;
  --color-text-muted: rgba(255, 255, 255, 0.65);

  --font-display: "Special Gothic Expanded One", sans-serif;
  --font-heading: "Special Gothic Expanded One", sans-serif;
  --font-body: "Noto Sans", sans-serif;
  --font-ui: "Inter", sans-serif;

  --radius: 4px;
  --max-width: 1180px;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-width);
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }

.btn {
  display: inline-block;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-align: center;
  border: 1px solid transparent;
  padding: 14px 28px;
  transition: all 0.25s ease;
}
.btn:hover { opacity: 0.85; }
.btn--primary {
  background: var(--color-accent);
  color: var(--color-text-light);
}
.btn--primary:hover { background: var(--color-accent-hover); }
.btn--outline {
  background: transparent;
  color: var(--color-text-dark);
  border-color: var(--color-text-dark);
}
/* No light sections remain on the page, so this is just an alias of
   --outline now rather than a separate dark-on-light variant. */
.btn--outline-dark {
  background: transparent;
  color: var(--color-text-dark);
  border-color: var(--color-text-dark);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

section { padding: 90px 0; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 24px 0;
  background: linear-gradient(
    to bottom,
    rgba(77, 24, 4, 0.95) 0%,
    rgba(77, 24, 4, 0.92) 20%,
    rgba(77, 24, 4, 0.82) 40%,
    rgba(77, 24, 4, 0.55) 65%,
    rgba(77, 24, 4, 0.25) 85%,
    rgba(77, 24, 4, 0) 100%
  );
}
.site-header .wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: auto;
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-dark);
}
.site-logo img {
  width: 120px;
  height: auto;
  display: block;
}
.site-logo:hover { opacity: 0.9; }

/* Menu button */
.nav-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-accent-blue);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 18px 30px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.nav-toggle:hover { background: #7b9cd1; }
.nav-label {
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-icon {
  color: var(--color-bg-dark);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

/* Dropdown panel */
.primary-nav {
  position: absolute;
  top: 85px;
  right: 40px;
  width: 340px;
  max-width: calc(100vw - 64px);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 40px;
  padding: 36px 42px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  z-index: 9999;
}
.primary-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
}
.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-menu li { margin-bottom: 18px; }
.primary-menu li:last-child { margin-bottom: 0; }
.primary-menu a {
  display: block;
  color: var(--color-link-blue);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.15;
  transition: opacity 0.2s ease;
}
.primary-menu a:hover { opacity: 0.7; }

@media (max-width: 480px) {
  .primary-nav { right: 16px; left: 16px; width: auto; max-width: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {

    background:
        linear-gradient(
        to bottom,

        rgba(43,11,0,0) 0%,

        rgba(43,11,0,.15) 40%,

        rgba(43,11,0,.45) 70%,

        rgba(43,11,0,.85) 100%
    ),

    linear-gradient(
        rgba(20,11,5,.90),
        rgba(20,11,5,.82)
    ),
    url('http://guitarmoore.com/wp-content/uploads/2026/06/Hero.png') no-repeat;

   background-size: cover;
    background-position: center;

}
.hero .wrap { padding-top: 100px; padding-bottom: 60px; }
.hero-content { max-width: 760px; margin: 0 auto; text-align: center; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero p {
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(239, 230, 216, 0.85);
  margin-bottom: 34px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
/* ==========================================
   MUSIC PLAYER
========================================== */

.music {
    background: var(--color-bg-dark);
    padding: 120px 0;
}

.music-card {
    max-width: 880px;
    margin: 0 auto;
    background: #f4f4f4;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.music-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 48px;
}

.music-info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.music-info .eyebrow {
    color: var(--color-accent);
}

.music-art {
    width: 100px;
    height: 200px;
    object-fit: contain;
    border-radius: 20px;
    flex-shrink: 0;
}

.music-track {
    margin-bottom: 24px;
}

.music-track h3 {
    margin: 0 0 6px;
    font-size: 2.4rem;
    color: var(--color-text-light);
}

.music-track span {
    color: rgba(27,27,27,.55);
    font-family: var(--font-ui);
    font-size: .9rem;
}

.progress-wrap {
    width: 100%;
    margin-bottom: 28px;
}

#seek-bar {
    width: 100%;
    cursor: pointer;
    accent-color: var(--color-accent);
}

.time-row {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: rgba(27,27,27,.55);
    font-size: .85rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 18px;
}

.player-controls button {
    border: none;
    background: none;
    color: var(--color-text-light);
    cursor: pointer;
    font-size: 1.1rem;
    transition: opacity .2s ease;
}

.player-controls button:hover {
    opacity: .65;
}

#play-track {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.music-library {
    text-align: left;
}

.music-library h4 {
    margin-bottom: 20px;
    color: var(--color-text-light);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.track-list-header {
    display: flex;
    justify-content: space-between;
    padding: 0 8px 12px;
    color: rgba(27,27,27,.5);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-bottom: 1px solid rgba(27,27,27,.1);
}

.track-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.track-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 8px;
    border-radius: 10px;
    cursor: pointer;
    color: rgba(27,27,27,.75);
    transition: background .2s ease, color .2s ease;
}

.track-list li + li {
    border-top: 1px solid rgba(27,27,27,.08);
}

.track-list li:hover {
    background: rgba(217,164,79,.12);
    color: var(--color-text-light);
}

.track-list li.active {
    color: var(--color-text-light);
    font-weight: 700;
    background: rgba(217,164,79,.18);
}

.teaching-note {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    color: rgba(255,255,255,.85);
    line-height: 1.7;
}

@media (max-width: 768px) {

    .music {
        padding: 80px 0;
    }

    .music-card {
        padding: 32px 24px;
        border-radius: 22px;
    }

    .music-top {
        flex-direction: column-reverse;
    }

    .music-info {
        text-align: center;
    }

    .music-art {
        width: 100%;
        height: 180px;
    }

    .music-track h3 {
        font-size: 1.9rem;
    }

    .player-controls {
        justify-content: center;
    }

}


/* ============================================
   WHY CHOOSE / ABOUT
   ============================================ */
.about-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.about-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text-dark);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row img {
  border-radius: 22px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.feature-card h4 {
  font-size: 1.4rem;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}
.feature-card ul { list-style: none; }
.feature-card li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}
.feature-card li::before {
  content: '•';
  position: absolute; left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* ============================================
   PRICING / BOOK A LESSON
   ============================================ */
.booking {
  background: var(--color-bg-dark);
  color: var(--color-text-dark);
}
.booking .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.booking h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 22px; }
.price-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.price-card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 32px;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-accent);
}
.price-card .label { font-size: 0.85rem; color: var(--color-text-muted); margin-top: 4px; }
.booking-note { color: var(--color-text-muted); margin-bottom: 22px; }
.booking ul { list-style: none; margin-bottom: 30px; }
.booking li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}
.booking li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--color-accent);
}
.map-embed {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   EVENTS
   ============================================ */
.events { background: var(--color-bg-dark); }
.events .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.video-stack { display: flex; flex-direction: column; gap: 20px; }
.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
}
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.events h2 { color: var(--color-text-dark); font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 18px; }
.events ul { list-style: none; margin: 22px 0 30px; }
.events li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--color-text-dark);
}
.events li::before { content: '♪'; position: absolute; left: 0; color: var(--color-accent); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--color-bg-alt); color: var(--color-text-dark); }
.testimonials-head { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.testimonials-head .eyebrow { color: var(--color-accent); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #f4f4f4;
  color: var(--color-text-light);
  border-radius: 20px;
  padding: 28px;
  min-height: 240px;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: rgba(27, 27, 27, 0.8);
  margin-bottom: 22px;
}
.testimonial-author { font-weight: 600; font-family: var(--font-display); margin-top: 20px; }
.testimonial-role { font-size: 0.8rem; color: rgba(27, 27, 27, 0.6); }
.reviews-link {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
  font-weight: 600;
  color: var(--color-text-dark);
}

/* ============================================
   GENERIC CONTENT
   index.php fallback: single posts, pages, search results, 404
   ============================================ */
.generic-content { padding: 160px 0 90px; }
.generic-content article { max-width: 760px; margin: 0 auto 60px; }
.generic-content h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--color-text-dark);
  margin-bottom: 24px;
}
.generic-content p { margin-bottom: 18px; }

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

.site-footer {

    background: #2A0A00;

    padding: 80px 0 30px;

}

.footer-top {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr;

    gap: 60px;

    align-items: start;

}

.footer-logo {

    width: 180px;
    height: auto;

}

.footer-col h5 {

    margin-bottom: 18px;

    font-family: 'Special Gothic Expanded One', sans-serif;

    color: #F5F1E8;

    font-size: .85rem;

    text-transform: uppercase;

    letter-spacing: .12em;

}

.footer-col a {

    display: block;

    margin-bottom: 12px;

    color: #A7C5FF;

    text-decoration: none;

    transition: opacity .2s ease;

}

.footer-col a:hover {

    opacity: .75;

}

.footer-actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}

.footer-bottom {

    margin-top: 60px;

    padding-top: 24px;

    border-top: 1px solid rgba(255,255,255,.08);

    text-align: center;

}

.footer-bottom p {

    margin: 0;

    color: rgba(255,255,255,.6);

    font-size: .85rem;

}

/* Tablet */

@media (max-width: 1024px) {

    .footer-top {

        grid-template-columns: 1fr 1fr;

    }

    .footer-brand {

        grid-column: span 2;

    }

}

/* Mobile */

@media (max-width: 768px) {

    .footer-top {

        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;

    }

    .footer-actions {

        justify-content: center;

    }

    .footer-logo {

        margin: 0 auto;

    }

}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 860px) {
  .feature-row, .booking .wrap, .events .wrap { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .price-table { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}

@media (max-width: 600px) {
  .hero .wrap { padding-left: 20px; padding-right: 20px; }
  .hero h1 { font-size: clamp(1.4rem, 7.5vw, 2.2rem); letter-spacing: -0.01em; }
}