/* Estilos encapsulados que solo afectan al contenido dentro de #happy-bee-4cs */
#happy-bee-4cs {
--dark-bg: #0C090D;
--accent-magenta: #E01A4F;
--accent-coral: #F15946;
--bee-yellow: #F9C22E;
--accent-blue: #53B3CB;
--light-bg: #FFF9E9;
--light-yellow: #FFF3C4;
--text-dark: #0C090D;
--text-light: #FFFFFF;
font-family: 'Nunito', sans-serif;
background-color: var(--light-bg);
color: var(--text-dark);
line-height: 1.6;
margin: 0 auto;
padding: 3rem;
border-radius: 1.5rem;
position: relative;
overflow: hidden;
border: 6px solid var(--bee-yellow);
max-width: 1200px; /* Aumentado el ancho máximo */
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
#happy-bee-4cs .header {
text-align: center;
margin-bottom: 2rem;
position: relative;
}
#happy-bee-4cs h1 {
font-family: 'Nunito', sans-serif;
font-size: 3rem;
color: var(--accent-magenta);
margin: 1rem 0;
font-weight: 700;
position: relative;
display: inline-block;
}
#happy-bee-4cs h1::before,
#happy-bee-4cs h1::after {
content: "🐝";
font-size: 2rem;
margin: 0 0.5rem;
vertical-align: middle;
}
#happy-bee-4cs .highlight {
background-color: var(--bee-yellow);
color: var(--dark-bg);
font-weight: bold;
padding: 0.7rem 1.5rem;
border-radius: 2rem;
display: inline-block;
margin: 0 auto 1.5rem;
box-shadow: 0 4px 12px rgba(249, 194, 46, 0.4);
font-size: 1.2rem;
border: none;
}
#happy-bee-4cs h2 {
font-size: 2rem;
color: var(--accent-coral);
border-bottom: 3px solid var(--bee-yellow);
padding-bottom: 0.5rem;
margin: 2.5rem 0 1.5rem;
}
#happy-bee-4cs h2::before {
content: "✨";
margin-right: 0.5rem;
}
#happy-bee-4cs h3 {
font-size: 1.5rem;
color: var(--accent-blue);
margin: 1.5rem 0 1rem;
}
#happy-bee-4cs ul {
list-style-type: none;
padding-left: 1rem;
}
#happy-bee-4cs ul li {
position: relative;
padding: 0.7rem 0;
padding-left: 2rem;
margin-bottom: 0.5rem;
}
#happy-bee-4cs ul li::before {
content: "🌟";
position: absolute;
left: 0;
}
#happy-bee-4cs .card {
background-color: white;
border: none;
padding: 2rem;
margin: 2.5rem 0;
border-radius: 1.5rem;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
position: relative;
border-left: 5px solid var(--accent-blue);
}
#happy-bee-4cs .card::before {
content: "📞";
font-size: 2rem;
position: absolute;
top: -1.5rem;
left: 2rem;
background-color: var(--accent-blue);
color: white;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
box-shadow: 0 6px 12px rgba(83, 179, 203, 0.4);
}
#happy-bee-4cs .contact-info {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 1.5rem;
margin: 2rem 0;
}
#happy-bee-4cs .contact-item {
flex: 1 1 200px;
padding: 1.2rem;
background-color: white;
border-radius: 1rem;
box-shadow: 0 6px 12px rgba(0,0,0,0.08);
border-bottom: 3px solid var(--accent-blue);
text-align: center;
transition: all 0.3s ease;
}
#happy-bee-4cs .contact-item:hover {
transform: translateY(-5px);
box-shadow: 0 12px 20px rgba(83, 179, 203, 0.25);
}
#happy-bee-4cs .contact-label {
font-weight: bold;
color: var(--accent-magenta);
margin-bottom: 0.5rem;
font-size: 1.1rem;
border-bottom: 2px dotted var(--light-yellow);
padding-bottom: 0.3rem;
}
#happy-bee-4cs .button {
display: inline-block;
background-color: var(--accent-coral);
color: white;
padding: 0.9rem 1.8rem;
border-radius: 2rem;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
margin-top: 1.5rem;
border: none;
box-shadow: 0 6px 12px rgba(241, 89, 70, 0.3);
}
#happy-bee-4cs .button:hover,
#happy-bee-4cs .button:focus {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(241, 89, 70, 0.4);
background-color: #E15340;
outline: none;
}
#happy-bee-4cs .quality-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin: 2.5rem 0;
}
#happy-bee-4cs .quality-item {
background-color: white;
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 8px 16px rgba(0,0,0,0.08);
text-align: center;
transition: all 0.3s ease;
border-top: 5px solid;
}
#happy-bee-4cs .quality-item:nth-child(1) { border-color: var(--bee-yellow); }
#happy-bee-4cs .quality-item:nth-child(2) { border-color: var(--accent-coral); }
#happy-bee-4cs .quality-item:nth-child(3) { border-color: var(--accent-blue); }
#happy-bee-4cs .quality-item:nth-child(4) { border-color: var(--accent-magenta); }
#happy-bee-4cs .quality-item:nth-child(5) { border-color: var(--bee-yellow); }
#happy-bee-4cs .quality-item:nth-child(6) { border-color: var(--accent-coral); }
#happy-bee-4cs .quality-item:hover {
transform: translateY(-8px);
box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}
#happy-bee-4cs .quality-icon {
font-size: 3rem;
margin-bottom: 1.5rem;
display: block;
}
#happy-bee-4cs .bee-divider {
display: flex;
align-items: center;
margin: 3rem 0;
position: relative;
}
#happy-bee-4cs .bee-divider::before,
#happy-bee-4cs .bee-divider::after {
content: "";
flex: 1;
height: 3px;
background: repeating-linear-gradient(
to right,
var(--bee-yellow),
var(--bee-yellow) 10px,
transparent 10px,
transparent 15px
);
}
#happy-bee-4cs .bee-divider .bee {
margin: 0 1.5rem;
font-size: 2rem;
}
#happy-bee-4cs p {
font-size: 1.15rem;
margin: 1.2rem 0;
line-height: 1.7;
}
#happy-bee-4cs a {
color: var(--accent-magenta);
transition: all 0.3s ease;
text-decoration: none;
}
#happy-bee-4cs a:hover {
color: var(--accent-coral);
text-decoration: underline;
}
#happy-bee-4cs a:focus {
outline: 3px solid var(--bee-yellow);
outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
#happy-bee-4cs .quality-item:hover,
#happy-bee-4cs .contact-item:hover,
#happy-bee-4cs .button:hover {
animation: none;
transform: none;
transition: none;
}
}
@media (max-width: 768px) {
#happy-bee-4cs {
padding: 2rem;
margin: 1rem;
border-width: 4px;
}
#happy-bee-4cs h1 {
font-size: 2.2rem;
}
#happy-bee-4cs h2 {
font-size: 1.7rem;
}
#happy-bee-4cs .quality-grid {
grid-template-columns: 1fr;
}
}
At Happy Bee Daycare, we believe every child deserves the best start in life! We're pleased to announce that we accept children referred through 4Cs San Mateo's subsidy program, making quality childcare accessible to all families.
🐝
What is 4Cs San Mateo?
4Cs San Mateo is an organization dedicated to connecting families with quality childcare services. Their subsidy program helps ensure that all families can access childcare options that meet their needs.
Benefits for Our Families
Through our acceptance of 4Cs San Mateo subsidies, families can:
- Access detailed information about childcare options
- Browse the complete directory of childcare providers in San Mateo County
- Receive personalized assistance from the 4Cs team
- Find programs with available spots
- Use MyChildCarePlan.org to find suitable options
The 4Cs Resource and Referral team is ready to help your family find the right childcare solution!
For more information, you can visit the official 4Cs San Mateo website or speak with our staff. We're here to help you make the most of this subsidy program!
🐝
Quality Counts San Mateo County: A Commitment to Excellence
Quality Counts San Mateo County is a Quality Rating and Improvement System (QRIS) that represents the highest standard in early education in our county. This prestigious program is led by First 5 San Mateo County and the San Mateo County Office of Education.
What does it mean to be part of Quality Counts?
Our participation in Quality Counts demonstrates our commitment to:
- Regular objective assessments of our educational quality
- Access to high-level professional training
- Specialized coaching for our staff
- Updated educational resources
- Grants for continuous improvement of our facilities and programs
The program evaluates six fundamental elements of quality:
👶
Child development and school readiness
👩🏫
Teacher qualifications and effectiveness
🏫
Program and environment quality
👨👩👧👦
Family engagement and support
🤝
Inclusive and equitable practices
📚
Language development and early literacy
For parents, this means they have chosen a daycare that:
- Is committed to continuous improvement
- Maintains verifiable quality standards
- Has staff in constant professional development
- Implements research-based best educational practices
At Happy Bee Day Care, our participation in Quality Counts reflects our unwavering dedication to providing the best possible early education for your child.