:root {
    --primary: #ff8c00; /* Arancione Hapipi */
    --secondary: #00a8e8; /* Azzurro */
    --pink: #ff6b81;
    --green: #88d044;
    --bg-color: #fefcf9;
    --text-main: #4a4a4a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'M PLUS Rounded 1c', 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* HEADER (Top bar + Main Nav) */
.top-bar { background: #fff; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #eee; font-size: 0.9rem; }
.top-bar strong { color: var(--primary); font-size: 1.2rem; }
.main-nav { background: var(--secondary); padding: 15px 0; text-align: center; }
.main-nav a { color: #fff; text-decoration: none; margin: 0 15px; font-weight: bold; font-size: 1.1rem; }

/* HERO & LOGO CARTOON */
.hero { background-color: var(--bg-color); background-image: radial-gradient(#ffe4b5 20%, transparent 20%); background-size: 20px 20px; padding: 50px 20px; text-align: center; border-bottom: 5px solid var(--primary); }
.hero p { font-size: 1.4rem; font-weight: bold; color: var(--secondary); background: #fff; display: inline-block; padding: 10px 30px; border-radius: 30px; border: 3px dashed var(--secondary); margin-top: 15px; }

.babyland-logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}
.babyland-icon {
    font-family: 'Material Icons';
    font-size: 5rem;
    color: #ffce44;
    text-shadow: 
        3px 3px 0 #fff, -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff,
        3px 0 0 #fff, -3px 0 0 #fff, 0 3px 0 #fff, 0 -3px 0 #fff,
        6px 6px 0 #55aaff; 
    transform: rotate(-5deg);
    transition: transform 0.3s;
}
.babyland-text {
    font-family: 'Titan One', cursive;
    font-size: 4.5rem;
    color: #ff85a2;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 
        3px 3px 0 #fff, -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff,
        3px 0 0 #fff, -3px 0 0 #fff, 0 3px 0 #fff, 0 -3px 0 #fff,
        6px 6px 0 #ff5c83;
}
.babyland-logo-container:hover .babyland-icon { transform: rotate(0deg) scale(1.1); }
.babyland-logo-container:hover .babyland-text { transform: scale(1.05); }

/* TITOLI SEZIONE */
.section-title { text-align: center; margin: 60px 0 40px; }
.section-title h2 { display: inline-block; font-size: 2rem; color: var(--text-main); border-bottom: 4px solid var(--primary); padding-bottom: 5px; }

/* INFORMATION LIST */
.news-list { background: #fff; border: 2px solid #eee; border-radius: 10px; padding: 20px; max-width: 800px; margin: 0 auto; }
.news-item { display: flex; padding: 10px 0; border-bottom: 1px dashed #ccc; }
.news-item:last-child { border-bottom: none; }
.news-date { color: var(--primary); font-weight: bold; width: 120px; }
.news-text { flex: 1; font-weight: bold; }

/* STATUS BOX */
.status-box { background: #fff; border: 3px solid var(--secondary); border-radius: 15px; padding: 30px; text-align: center; max-width: 600px; margin: 40px auto; }
.status-title { font-size: 1.2rem; margin-bottom: 15px; }
.status-vacant { background: #28a745; color: #fff; font-size: 2rem; font-weight: bold; padding: 10px 20px; border-radius: 10px; display: inline-block; margin-bottom: 10px; }

/* CONCEPT */
.concept-box { background: #fffaf0; border-radius: 20px; padding: 40px; text-align: center; border: 2px dashed var(--primary); }
.concept-box h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 20px; }
.concept-box p { font-size: 1.1rem; margin-bottom: 15px; text-align: left; }

/* CALENDARIO & FACILITIES GRID */
.grid-5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; }
.cal-item { background: #fff; border: 2px solid var(--secondary); border-radius: 10px; padding: 15px; text-align: center; }
.cal-item h4 { color: var(--secondary); border-bottom: 2px dotted var(--secondary); margin-bottom: 10px; }

.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.facility-item { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; border: 2px solid #eee; }
.facility-item img { width: 100%; height: 150px; object-fit: cover; }
.facility-item h4 { padding: 15px; font-size: 1.1rem; background: var(--bg-color); }

/* TARIFFE E GRUPPI */
.pricing-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.pricing-table th, .pricing-table td { border: 1px solid #eee; padding: 20px; }
.pricing-table th { background: var(--pink); color: #fff; font-size: 1.2rem; width: 40%; text-align: left; }
.pricing-table td { font-size: 1.1rem; font-weight: bold; }
.price-highlight { color: var(--primary); font-size: 1.5rem; }

/* APP / REGOLE */
.rules-box { background: #e6f7ff; border: 3px solid var(--secondary); border-radius: 20px; padding: 40px; }
.rules-list { list-style: none; margin-top: 20px; }
.rules-list li { background: #fff; margin-bottom: 10px; padding: 15px; border-radius: 10px; font-weight: bold; display: flex; align-items: center; gap: 15px; }
.rules-list li i { color: var(--secondary); font-size: 1.5rem; }

/* ACCESSO E MAPPA */
.access-box { background: #fff; padding: 30px; border-radius: 15px; border: 2px solid #eee; }
.map-iframe { width: 100%; height: 400px; border-radius: 10px; border: none; margin-top: 20px; }

/* FOOTER */
footer { background: var(--text-main); color: #fff; text-align: center; padding: 40px 20px; margin-top: 60px; }
.btn-whatsapp { display: inline-block; background: #25D366; color: #fff; padding: 15px 40px; border-radius: 30px; font-size: 1.5rem; font-weight: bold; text-decoration: none; margin-top: 20px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .top-bar { flex-direction: column; gap: 10px; }
    .main-nav a { display: block; margin: 10px 0; }
    .babyland-icon { font-size: 3.5rem; }
    .babyland-text { font-size: 3.2rem; }
    .hero p { font-size: 1.1rem; }
    .pricing-table th, .pricing-table td { display: block; width: 100%; text-align: center; }
}