html {
    scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    /* overflow-x: hidden; */
}

/* Navigation */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    position: fixed;
    background: rgba(240, 249, 255);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0.1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 2rem;
}

.logo {
    transition: all 0.3s;
    /* margin-left: 2rem; */
    position: relative;
    height: 100px;
    width: 100px; 
}

.logo img {
    width: 240px;  
    height: auto;
    position: absolute;
    inset: 0;      
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.logo-dark {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateX(2.5px);
}

.logo-dark-p {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateX(2.5px);
}

.logo-link {
    transition: all 0.4s ease;
}

.logo-link:hover {
    filter: brightness(1.5);
}

nav.scrolled .logo-white { opacity: 0; }
nav.scrolled .logo-dark { opacity: 1; }

.nav-links {
    display: flex;
    gap: 4rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
}

nav.scrolled .nav-links a {
    color: #2d5016;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d5016;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.email b {
    display: none;
    text-decoration: none;
}

.email a, .phone a {
    text-decoration: none;
    color: white;
    transition: ease 0.4s all;
}

.phone a:hover, .email a:hover {
    filter: brightness(0.9);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
}

nav.scrolled .hamburger span {
    background: #2d5016;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Hero */
.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('media/hero-pic.png') center bottom/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 450;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(90deg, #2f78e6, #5aaee6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.6);
    filter: brightness(1.1);
}

/* About Section */
.about {
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #ccedff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    color: #2e2e2e;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
}

.about-text p {
    font-size: 1.35rem;
    line-height: 1.9;
    color: #2e2e2e;
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
    height: 500px;
    background-size: 60%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    border-radius: 20px;
}

.about-image img {
    width: 75%;
    height: 100%;
    object-position: center 10%;
    object-fit: cover;
    border-radius: 20px;
}

/* Pricing Section */
.pricing {
    width: 100%;
    background: #bfe7ff;
    padding: 8rem 3rem;
    color: #2e2e2e;
}

.pricing h2 {
    text-align: center;
    color: #2e2e2e;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #2e2e2e;
    margin-bottom: 5rem;
}

.pricing-note {
    font-size: 1.125rem;
    opacity: 0.9;
    text-align: center;
    margin-top: 3rem;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    width: 350px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    background: white;
    color: #1a1a1a;
    border-color: white;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-name {
    font-size: 1.8rem;
    font-weight: 700;
    /* margin-bottom: 0.5rem; */
}

.pricing-duration {
    font-size: 1rem;
    font-weight: 500;
}

.pricing-card.featured .pricing-duration {
    color: #666;
}

.pricing-price {
    text-align: center;
    font-size: 4rem;
    font-weight: 900;
    margin: 1rem 0;
}

.pricing-price span {
    font-size: 2rem;
    vertical-align: super;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
    color: #2e2e2e;
    font-weight: 600;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: #4CAF50;
    font-weight: bold;
}

.pricing-card.featured .pricing-features li::before {
    color: #2d5016;
}

.pricing-button {
    width: 100%;
    padding: 1.2rem;
    background: hsl(79, 95%, 30%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    text-decoration: none;
    text-align: center;
}

.pricing-card.featured .pricing-button {
    background: #2d5016;
    color: white;
}

.pricing-button:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #3d6b1f;
    transition: 0.5s ease;
}

/* Why Choose - Alternating Layout */
.why-choose {
    width: 100%;
    padding: 8rem 3rem;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    color: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 6rem;
    font-weight: 900;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: white;
}

.feature-image {
    width: 100%;
    height: 350px;
    background: #2d5016;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: url('media/cruzers.png') center / cover;
}

.guitar-image {
    width: 100%;
    height: 350px;
    background: #2d5016;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: url('media/guitar-playing.jpg') center/cover;
}

.practice-image {
    width: 100%;
    height: 350px;
    background: #2d5016;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: url('media/practice.jpg') bottom /cover;
}

/* Contact Section */
.contact {
    width: 100%;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    color: white;
    padding: 8rem 3rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.contact-info p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-top: 3rem;
}

.contact-details p {
    font-size: 1.3rem;
    margin: 1rem 0;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: #1a1a1a;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(90deg, #a8def7 0%, #93d3f0 50%, #6bbce2 100%);
    color: #2d5016;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

footer {
    width: 100%;
    background: #1e1e1e;
    color: white;
    text-align: center;
    padding: 1.75rem;
}

footer p {
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: inline-block;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease, transform 0.3s ease;
  opacity: 0.7;
}

.footer-links:hover {
  color: lightgray;
  transform: translateY(-2px);
}

/* Privacy Policy */
.privacy {
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
    color: white;
}

.privacy-title {
  font-size: 2rem;
  font-weight: 700;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInDown 0.6s ease;
  margin-top: 0;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.privacy-box {
    background-color: var(--primary-dark); 
    max-width: 900px;
    border-radius: 15px;
    font-size: 1.1rem;
    color: white;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    padding: 6rem 2rem 3rem;
}

.privacy-box a {
    color: white;
    font-weight: bold;
}

.privacy-box p {
  margin: 1rem 0; 
  line-height: 1.6;
}

body.no-hero .hamburger span {
  background: #2d5016;
}

body.no-hero nav {
  position: fixed;
  background: rgba(240, 249, 255);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

body.no-hero .nav-links a {
  color: #333;
}

#about, #approach, #lessons, #contact {
  scroll-margin-top: 100px;
}

/* Mobile */
@media (max-width: 1150px) {
    .nav-container {
        margin-right: 0;
        padding: 0.1rem 2rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .logo {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero .subtitle {
        font-size: 1.3rem;
    }

    .about-container {
        padding: 5rem 3rem;
        gap: 2.5rem;
    }

    .why-choose {
        padding: 6rem 3rem;
    }

    .why-choose h2 {
        font-size: 2.8rem;
    }

    .feature-row {
        gap: 3rem;
        margin-bottom: 2.5rem;
    }

    .feature-content h3 {
        font-size: 2rem;
    }

    .pricing {
        padding: 6rem 3rem;
    }

    .pricing h2 {
        font-size: 2.8rem;
    }

    .pricing-grid {
        gap: 2rem;
    }

    .pricing-card {
        width: 300px;
        padding: 2.5rem 2rem;
    }

    .contact {
        padding: 6rem 3rem;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }

    .hamburger { 
        display: flex;
        z-index: 1;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 100px;
        flex-direction: column;
        background: rgba(240, 249, 255);
        width: 100%;
        text-align: center;
        padding: 4rem 0;
        gap: 4rem;
        transition: right 0.4s ease;
    }

    .nav-container {
        margin-right: 0;
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .nav-links a { 
        color: #333; 
    }
    
    .nav-links.active { 
        right: 0; 
    }

    .hero h1 { font-size: 3rem; }
    .hero .subtitle { font-size: 1.1rem; }

    .about-container,
    .feature-row,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-container {
        padding: 5rem 3rem;
    }

    .about-image {
        height: 400px;
        width: 50%;
        
    }

    .why-choose {
        padding: 5rem 4rem;
    }

    .why-choose h2 {
        margin-bottom: 4rem;
    }

    .guitar-image, .feature-image, .practice-image  {
        width: 100%;
        height: 450px;
        margin: 0 auto;
    }

    .feature-row.reverse {
        direction: ltr;
    }

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

    .pricing-card {
        width: 50%;
    }

    h2 { font-size: 2.5rem !important; }
    .feature-content h3 { font-size: 2rem; }
}

@media (max-width: 850px) {

    /* Nav */
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        padding-top: 120px;
        flex-direction: column;
        background: rgba(240, 249, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        gap: 3rem;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-container {
        margin-right: 0;
        padding: 0 1.5rem;
    }

    .nav-links a {
        color: #333;
        font-size: 1.4rem;
    }

    .nav-links.active {
        right: 0;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
    }

    /* About */
    .about {
        min-height: unset;
    }

    .about-container {
        grid-template-columns: 1fr;
        padding: 5rem 2rem;
        gap: 2.5rem;
    }

    .about-image {
        height: 400px;
        width: 100%;
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 10%;
    }

    /* Why Choose */
    .why-choose {
        padding: 5rem 2rem;
    }

    .why-choose h2 {
        font-size: 2.4rem;
        margin-bottom: 4rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-image,
    .guitar-image,
    .practice-image {
        width: 100%;
        height: 280px;
        background-size: cover;
        background-position: center;
        flex-shrink: 0;
    }

    .feature-content h3 {
        font-size: 1.8rem;
    }

    .feature-content p {
        font-size: 1.1rem;
    }

    /* Pricing */
    .pricing {
        padding: 5rem 2rem;
    }

    .pricing h2 {
        font-size: 2.4rem;
    }

    .pricing-subtitle {
        margin-bottom: 3rem;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    /* Contact */
    .contact {
        padding: 5rem 2rem;
    }

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

    .contact-info h2 {
        font-size: 2.4rem;
    }

    .contact-form {
        padding: 2.5rem 2rem;
    }

    h2 {
        font-size: 2.4rem !important;
    }

    .feature-content h3 {
        font-size: 2rem;
    }
}

/* --- Mobile (≤600px) --- */
@media (max-width: 600px) {

    /* Hero */
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    /* About */
    .about-container {
        padding: 4rem 1.5rem;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1.05rem;
    }

    .about-image {
        height: 320px;
    }

    /* Why Choose */
    .why-choose {
        padding: 4rem 1.5rem;
    }

    .why-choose h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .feature-image,
    .guitar-image,
    .practice-image {
        height: 230px;
    }

    .feature-content h3 {
        font-size: 1.6rem;
    }

    .feature-content p {
        font-size: 1rem;
    }

    /* Pricing */
    .pricing {
        padding: 4rem 1.5rem;
    }

    .pricing h2 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        /* max-width: 100%; */
    }

    .pricing-name {
        font-size: 1.5rem;
    }

    .pricing-price {
        font-size: 3.5rem;
    }

    /* Contact */
    .contact {
        padding: 4rem 1.5rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.75rem 1.5rem;
    }

    .contact-details p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 400px) {
    .logo {
        width: 80px;
        height: 80px;
    }

    .logo img {
        width: 180px;
    }

    .nav-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero .subtitle {
        font-size: 0.95rem;
    }

    .about-container {
        padding: 3rem 1.5rem;
    }

    .about-image {
        height: 260px;
    }

    .feature-image,
    .guitar-image,
    .practice-image {
        height: 200px;
    }

    .pricing-card {
        padding: 1.5rem 1.5rem;
    }
    
    .pricing-price {
        font-size: 3rem;
    }

    .pricing-grid {
        gap: 3rem;
    }


    h2 {
        font-size: 1.8rem !important;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}