

/* Hero section background: soft sunny yellow */
.hero-bg {
    background-color: #fff7cc; /* soft pastel yellow */
    border-bottom: 2px solid #f1e282; /* subtle bottom border */
}
/* Layout fixes */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    min-height: 100vh;
}

main {
    flex: 1; /* push footer down */
}

/* Brand text alignment */
.navbar-brand {
    line-height: 1.3;
}

/* Center brand on mobile */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto;
    }
    .navbar-nav {
        text-align: center;
    }
}

/* Body background */
.body-bg {
    background: #fdfdf7; /* very light cream for warmth */
}

/* Header color (sunny theme) */
.sunny-header {
    background: linear-gradient(90deg, #ffde59, #f9a825); /* sunny yellow-orange */
}

/* Brand text colorful */
.brand-text {
    color: #004d40; /* deep teal for contrast */
}
.brand-text span.brand-amp {
    font-size: 1.5rem;
    color: #ff5722; /* warm orange for "&" */
    font-weight: bold;
}

/* Footer color */
.sunny-footer {
    background: #004d40; /* deep teal */
    color: #ffffff;
}
.sunny-footer a {
    color: #ffde59; /* sunny yellow link */
    text-decoration: none;
}
.sunny-footer a:hover {
    text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto;
    }
    .navbar-nav {
        text-align: center;
    }
}


/* === Services Page Styling === */
.service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

.service-card h4 {
    color: #0d6efd; /* Bootstrap primary blue */
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
}
/* === Home Page Styling === */
.home-hero {
    background: url('/images/hero-placeholder.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 10px;
}

.home-hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.home-hero p {
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Service buttons on home */
.home-services .btn {
    margin: 10px 0;
}
