/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --amber:      #d18635;
    --amber-dark: #b87030;
    --green-mid:  #214722;
    --green-dark: #061b0f;
    --light:      #f2f2f2;
    --white:      #ffffff;
    --text:       #1c1c1c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Syne', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    line-height: 1.2;
}

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--amber);
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 1.75rem;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
    background: var(--amber-dark);
    color: var(--white);
}

.btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.07);
    color: var(--light);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 1.75rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
    background: var(--amber-dark);
    color: var(--light);
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 2.5rem;
    flex-wrap: nowrap;
}
.nav-wordmark {
    font-family: 'Fraunces', serif;
    text-align: center;
    line-height: 1.1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}
.nav-wordmark:hover {
    color: var(--amber);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
    flex: 1;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: var(--light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
    display: inline-block;
    text-align: center;
    line-height: 1rem;
    overflow-wrap: normal;
}
.nav-links li a:hover {
    color: var(--amber);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.btn-nav-cta {
    background: var(--amber);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 5px;
    font-weight: 700 !important;
    text-decoration: none;
    transition: background 0.2s, color 0.2s !important;
}
.btn-nav-cta:hover {
    background: var(--amber-dark) !important;
    color: var(--white) !important;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--light);
    transition: all 0.2s;
}
@media (max-width: 1200px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--green-dark);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.5rem 2.5rem 1rem;
        flex: none;
    }
    .nav-links.is-open {
        display: flex;
    }
    .nav-links li {
        width: 100%;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links li:last-child {
        border-bottom: none;
    }
    .nav-links li a {
        max-width: none;
        text-align: left;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 60vh;
    min-height: 460px;
    background: url('guitar-lessons-hero-image.jpg') center 40% / cover no-repeat;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 27, 15, 0.45) 0%,
        rgba(6, 27, 15, 0.72) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-text {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--light);
    text-align: left;
    max-width: 820px;
    line-height: 1.35;
    align-self: flex-end; 
    padding-bottom: 4rem;
}

/* ===== ABOUT ME ===== */
.about-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4.5rem;
    align-items: start;
}

.about-portrait-col {
    display: flex;
    justify-content: center;
}

.portrait {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center -20px;
    box-shadow: 0 10px 32px rgba(6, 27, 15, 0.18);
}

.about-text-col h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--green-dark);
    margin-bottom: 1.1rem;
}

.about-text-col p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.about-text-col ul {
    list-style: disc;
    padding-left: 1.4rem;
    margin: 0.5rem 0 1.25rem;
}

.about-text-col ul li {
    font-size: 1.02rem;
    margin-bottom: 0.45rem;
}

/* ===== SKILLS ===== */
.skills-section {
    background: var(--light);
    padding: 5.5rem 0;
}

.skills-inner {
    text-align: center;
}

.skills-inner h2 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    color: var(--green-dark);
    max-width: 780px;
    margin: 0 auto 3.5rem;
    line-height: 1.4;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 2rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.skill-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: invert(9%) sepia(30%) saturate(1200%) hue-rotate(90deg) brightness(40%);
}

.skill-item span {
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
    color: var(--green-dark);
    line-height: 1.4;
}

/* ===== LESSONS INFO ===== */
.lessons-section {
    background: var(--white);
    padding: 2rem 0 4rem;
}

.lessons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.lessons-img-col .rounded-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(6, 27, 15, 0.12);
}

.lessons-text-col h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    color: var(--green-dark);
    margin-bottom: 1rem;
    margin-top: 0;
}

.lessons-text-col h2 ~ h2 {
    margin-top: 2.5rem;
}

.lessons-text-col p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.lessons-text-col .btn-primary {
    margin: 1.25rem 0 0;
}

.lessons-text-col ul {
    list-style: disc;
    padding-left: 1.4rem;
    margin-top: 0.75rem;
}

.lessons-text-col ul li {
    font-size: 1rem;
    margin-bottom: 0.45rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--green-mid);
    padding: 4rem 0;
}

.testimonials-section h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--light);
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-grid {
    columns: 3;
    column-gap: 1.5rem;
    padding-bottom: 1.5rem;
}

.testimonial-card {
    break-inside: avoid;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-card p {
    font-size: 0.96rem;
    font-style: italic;
    line-height: 1.75;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--amber);
    margin-top: 1rem;
}

/* ===== PRICING ===== */
.pricing-section {
    background: var(--light);
    padding: 4rem 0;
}

.pricing-inner {
    text-align: center;
}

.pricing-inner h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.pricing-intro {
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 2.75rem;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--green-mid);
    border-radius: 14px;
    padding: 2.75rem 2.25rem;
    min-width: 190px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(6, 27, 15, 0.12);
}

.pricing-card--featured {
    background: var(--green-dark);
    border-color: var(--amber);
}

.pricing-card--featured .price,
.pricing-card--featured .price-label {
    color: var(--light);
}

.price {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.price-label {
    font-size: 1rem;
    font-weight: 500;
}

.pricing-note {
    font-size: 1rem;
    max-width: 520px;
    margin: 2.5rem auto 0;
    opacity: 0.75;
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--white);
    padding: 4rem 0;
}

.contact-section h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
}

.contact-form-col > p {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--green-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #d8d8d8;
    border-radius: 6px;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    width: 100%;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
}

.contact-map-col {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(6, 27, 15, 0.12);
    min-height: 440px;
}

.contact-map-col iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 440px;
    border: 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--green-dark);
    color: rgba(242, 242, 242, 0.72);
    padding: 1.75rem 0;
    font-size: 0.85rem;
}

.footer-inner {
    text-align: center;
}

.site-footer a {
    color: var(--amber);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* ===== TEACHING APPROACH ===== */
.hero--teaching {
    background-image: url('teaching-approach-hero.webp');
    background-position: center 50%;
}

.ta-intro-section {
    background: var(--white);
    padding: 4rem 0 2rem;
}

.ta-intro-inner {
    max-width: 780px;
}

.ta-intro-inner h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.ta-intro-inner p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.ta-styles-section {
    background: var(--light);
    padding: 4em 0;
}

.ta-styles-inner {
    max-width: 780px;
}

.ta-styles-inner h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.ta-styles-inner p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.ta-cta-section {
    background: var(--green-dark);
    padding: 4rem 0;
}

.ta-cta-inner {
    text-align: center;
}

.ta-cta-inner h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--light);
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* ===== SAMPLE RESOURCES ===== */
.resources-main {
    padding: 5rem 0 6rem;
    background-color:#f2f2f2}

.resources-main h1 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--green-dark);
    max-width: 680px;
    margin: 0 auto 3.5rem;
    line-height: 1.35;
    text-align: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.resource-card {
    display: flex;
    flex-direction: column;
    background: #355636;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(6, 27, 15, 0.18);
    transition: transform 0.2s, box-shadow 0.2s;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(6, 27, 15, 0.3);
}

.resource-header {
    padding: 1.25rem 1.5rem 1rem;
    text-align: center;
}

.resource-title {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--light);
    margin: 0;
}

.resource-subtitle {
    font-size: 0.88rem;
    color: rgba(242, 242, 242, 0.7);
    margin: 0.2rem 0 0;
}

.resource-thumb-link {
    display: flex;
    justify-content: center;
    background: transparent;
    padding: 0 1.25rem;
    line-height: 0;
}

.resource-thumb-link canvas {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.resource-thumb-link.thumb-error {
    min-height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.resource-footer {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
}

.resource-footer .btn-primary {
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
}

@media (max-width: 860px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .testimonials-grid {
        columns: 2;
    }
}

@media (max-width: 860px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .about-text-col ul {
        text-align: left;
    }

    .lessons-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-map-col,
    .contact-map-col iframe {
        min-height: 340px;
    }
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero {
        height: 70vh;
    }

    .testimonials-grid {
        columns: 1;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 300px;
    }

    .about-section,
    .skills-section,
    .lessons-section,
    .testimonials-section,
    .pricing-section,
    .contact-section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }
}
