/* MASTER STYLING: KLEA BEE THERAPY
   Combine this entire block into your style.css file
*/

/* 1. GLOBAL STYLES */
body { 
    font-family: 'Helvetica Neue', Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    background-color: #fffdf5; 
    color: #4a3b2a; 
    line-height: 1.6;
}

/* 2. HEADER & NAVIGATION */
header { 
    background-color: #f9e29b; 
    padding: 20px 50px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

header img { 
    max-height: 120px; 
    margin-bottom: 20px; 
}

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 30px; 
    padding: 0; 
}

nav a { 
    text-decoration: none; 
    color: #5d432c; 
    font-weight: bold; 
    font-size: 18px; 
    transition: color 0.3s;
}

nav a:hover { 
    color: #e67e22; 
}

/* 3. HERO SECTION */
.hero {
    text-align: center;
    background-color: #fff8e1;
    padding: 80px 20px;
    border-bottom: 2px solid #f9e29b;
}

.hero h1 { 
    font-size: 42px; 
    color: #8e6d1c;
    margin-bottom: 10px; 
}

.hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

/* 4. BUTTONS */
.btn {
    background-color: #e67e22;
    color: white !important;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #d35400;
}

/* 5. MAIN CONTENT & CARDS */
main { 
    max-width: 1000px; 
    margin: 40px auto; 
    padding: 0 20px; 
    text-align: center; 
}

.grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    width: 300px;
    border: 1px solid #f9e29b;
}

.card h3 {
    color: #8e6d1c;
    margin-top: 0;
}

/* 6. FOOTER */
footer { 
    text-align: center; 
    padding: 30px; 
    background-color: #f9e29b; 
    margin-top: 50px; 
    font-size: 14px;
}

/* 7. MOBILE RESPONSIVENESS */
@media (max-width: 600px) {
    header {
        padding: 20px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .grid {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 90%;
    }

    .hero h1 {
        font-size: 32px;
    }
}