/* Flutter and Buzz - Main Styles */
:root {
    --honey-yellow: #FFB300;
    --pollen-gold: #FFD54F;
    --leaf-green: #689F38;
    --hive-charcoal: #2C2C2C;
    --nectar-cream: #FFFDF5;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--nectar-cream);
    color: var(--hive-charcoal);
    margin: 0;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/hero-bees.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: var(--pollen-gold);
}

/* Service Cards */
.services-container {
    display: flex;
    justify-content: space-around;
    padding: 50px 10%;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: white;
    border-bottom: 5px solid var(--honey-yellow);
    padding: 30px;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.card h3 { color: var(--leaf-green); }

/* Emergency Button */
.btn-emergency {
    background-color: #D32F2F; /* Red for urgency */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    display: inline-block;
    margin-top: 20px;
}

.btn-emergency:hover { background-color: #B71C1C; }