/* Import Baloo 2 font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700&display=swap');

body {
    background-color: #A7D8F0; /* Baby Blue */
    font-family: 'Baloo 2', cursive;
    color: #333;
    margin: 0;
    padding: 0;
}

.site-title {
    color: #81C784; /* Strong Mint Green */
    font-size: 2.5rem;
    font-family: 'Baloo 2', cursive;
    margin-left: 20px;
    text-align: center; /* useful if logo is inline */
}


.site-branding {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Align vertically */
    gap: 20px;               /* Space between logo and heading */
    text-align: center;
    width: 100%;
}

.site-logo {
    flex: 0 0 75%; /* makes it occupy half the header width */
} 

.site-logo img{
    width: 50%; /* or any percentage */
} 
.daycare-heading {
    color: #81C784; /* Strong Mint Green */
    font-size: 2.5rem; /* Large heading */
    font-family: 'Baloo 2', cursive;
    margin: 0;
}



.daycare-heading {
    display: inline-block;
    color: #81C784; /* Strong Mint Green */
    font-size: 2.5rem; /* Large size */
    margin-left: 20px; /* Space from logo */
    vertical-align: middle;
}

.header, header.site-header {
    background: linear-gradient(135deg, #F8BBD0, #FFFACD) !important; /* Gradient: Strong Pink to Pastel Yellow */
    padding: 20px;
    text-align: left;
}

.footer, footer.site-footer {
    background-color: #81C784; /* Stronger Mint Green */
    padding: 15px;
    text-align: center;
}

a, .btn, button {
    background-color: #F8BBD0; /* Stronger Baby Pink */
    color: #333;
    border-radius: 8px;
    padding: 8px 12px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

a:hover, .btn:hover, button:hover {
    background-color: #F48FB1; /* Slightly darker pink for hover */
}

h1, h2, h3, h4, h5, h6 {
    color: #81C784; /* Stronger Mint Green */
    font-weight: 600;
}

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


/* Hide page heading only on homepage */
.home .page-header {
    display: none;
}