/* Creative Kids Music - Global Styles */

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

body {
    font-family: 'Quicksand', sans-serif;
    color: #3a3a3a;
    background: linear-gradient(to bottom, #f8faf5 0%, #e8f0e0 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Amatic SC', cursive;
    font-size: 2rem;
    color: #5a7c3a;
    text-decoration: none;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #5a5a5a;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #7a9b5a;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #5a7c3a;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
}

/* Page Header */
.page-header {
    padding: 120px 20px 60px;
    text-align: center;
    position: relative;
}

.page-title {
    font-family: 'Amatic SC', cursive;
    font-size: clamp(3rem, 6vw, 4rem);
    color: #5a7c3a;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #7a9b5a;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Amatic SC', cursive;
    font-size: 2.5rem;
    color: #5a7c3a;
    text-align: center;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
}

.btn-primary {
    background: #7a9b5a;
    color: white;
    box-shadow: 0 4px 15px rgba(122, 155, 90, 0.3);
}

.btn-primary:hover {
    background: #6a8a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 155, 90, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #7a9b5a;
    border: 2px solid #7a9b5a;
}

.btn-secondary:hover {
    background: #7a9b5a;
    color: white;
    transform: translateY(-2px);
}

/* Cards */
.info-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: #5a7c3a;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #7a9b5a;
}

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

/* Tree Background */
.tree-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 500px;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    color: #7a7a7a;
    font-size: 0.9rem;
    margin-top: 60px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}