/* Happy Humming Bear - Main Stylesheet */

:root {
    --primary: #5B8DEF;
    --primary-dark: #7B68EE;
    --secondary: #f39c12;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    
    /* Sacred Colors */
    --gold: #ffd700;
    --gold-light: #ffed4e;
    --purple-deep: #2d1b4e;
    --purple-mystic: #4b0082;
    --cosmic-blue: #0f3460;
    --chakra-violet: #9400d3;
    --chakra-indigo: #4b0082;
    --sacred-gradient: linear-gradient(135deg, #5B8DEF, #7B68EE, #ffd700);
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.nav-brand {
    color: var(--white);
    font-size: 1.5em;
    font-weight: 600;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.hamburger {
    display: none;
    color: var(--white);
    font-size: 1.5em;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
    position: relative;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.3em;
    opacity: 0.95;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    font-size: 2em;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9em;
    transition: all 0.3s;
}

.btn-small:hover {
    background: var(--primary-dark);
}

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

section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

/* Intro */
.intro {
    background: var(--white);
}

.lead {
    text-align: center;
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 20px;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* Content Cards */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.content-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.content-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.content-info {
    padding: 25px;
}

.content-info h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.content-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonials h2 {
    color: var(--white);
}

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

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.testimonial cite {
    color: var(--secondary);
}

/* CTA */
.cta {
    background: var(--white);
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta > .container > p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta .btn-secondary {
    border-color: var(--primary);
    color: var(--primary);
}

.cta .btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    font-size: 1.5em;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .tagline {
        font-size: 1em;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    section h2 {
        font-size: 2em;
    }
}
