/*
Theme Name: Anytime Guitar School
Description: Premium Custom Landing Page Theme for Anytime Guitar School
Author: Antigravity AI
Version: 1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --text-main: #1f2937;
    --text-light: #4b5563;
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --bg-yellow: #fffdeb;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Utility Classes */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Micro-animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.hero-pre {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p.lead {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Button */
.btn {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    position: relative;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: transparent;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.micro-copy {
    display: block;
    font-size: 0.9rem;
    margin-top: 15px;
    color: rgba(255,255,255,0.9);
}

/* Sections */
section {
    padding: 120px 0;
}

.section-alt {
    background-color: var(--bg-alt);
}

.section-yellow {
    background-color: var(--bg-yellow);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    color: var(--text-main);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Problem Section */
.problem-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto 50px;
}
.problem-list li {
    background: #fff;
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    border-left: 5px solid var(--primary);
    transition: transform 0.3s ease;
}
.problem-list li:hover {
    transform: translateX(10px);
}
.problem-list li i {
    color: var(--primary);
    margin-right: 20px;
    font-size: 1.8rem;
}

/* Concept Section */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.concept-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}
.concept-img:hover {
    transform: rotate(0deg) scale(1.02);
}
.concept-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.feature-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.icon-box {
    width: 90px;
    height: 90px;
    background: var(--bg-yellow);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}
.feature-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Pricing */
.pricing-card {
    background: #fff;
    max-width: 550px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 6px solid var(--primary);
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: 'BEST VALUE';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}
.price {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 25px 0;
}
.price span {
    font-size: 1.8rem;
    color: var(--text-light);
    font-weight: 400;
}
.pricing-list {
    list-style: none;
    margin: 40px 0;
    text-align: left;
}
.pricing-list li {
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .concept-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .hero p.lead { font-size: 1.1rem; }
    section { padding: 80px 0; }
}
