*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --kids-blue: #e3f2fd;
    --kids-red: #ff5f5f;
    --kids-green: #6ab04c;
    --kids-yellow: #ffcf40;
    --kids-text: #4a4a4a;
    --kids-radius: 30px;
    --kids-border: 4px;
    --kids-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-color: var(--kids-blue);
    background-image: radial-gradient(rgba(255,255,255,0.4) 15%, transparent 16%);
    background-size: 20px 20px;
    font-family: 'Quicksand', sans-serif;
    color: var(--kids-text);
    overflow-x: hidden;
}

header {
    flex-shrink: 0;
    background: #fff;
    padding: 20px 0 0 0;
    position: relative;
    z-index: 1000;
    text-align: center;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-area img {
    max-height: 90px;
    width: auto;
    transition: transform 0.3s;
    display: block;
    margin: 0 auto;
}

.logo-area img:hover {
    transform: rotate(-3deg) scale(1.05);
}

.header-wave-separator {
    flex-shrink: 0;
    width: 100%;
    height: 30px;
    line-height: 0;
    position: relative;
    z-index: 999;
    filter: drop-shadow(0px 5px 5px rgba(0,0,0,0.03));
}

.header-wave-separator svg {
    display: block;
    width: 100%;
    height: 100%;
}

.container {
    flex: 1 0 auto;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.lp-section {
    margin-bottom: 20px;
}

.lp-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: #fff;
    border: 4px solid var(--kids-yellow);
    border-radius: var(--kids-radius);
    position: relative;
    overflow: hidden;
    box-shadow: var(--kids-shadow);
}

.lp-hero-text {
    flex: 1;
    min-width: 300px;
    z-index: 2;
}

.lp-hero-text h1 {
    font-size: 2.5rem;
    color: var(--kids-red);
    margin-bottom: 20px;
    line-height: 1.2;
}

.lp-hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.lp-hero-img {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.lp-hero-img img {
    width: 100%;
    height: auto;
    border-radius: var(--kids-radius);
    border: 4px solid var(--kids-blue);
    transform: rotate(2deg);
    transition: transform 0.3s;
    display: block;
}

.lp-hero-img img:hover {
    transform: rotate(0deg) scale(1.02);
}

.lp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    text-align: center;
}

.lp-feature-card {
    background: #fff;
    padding: 30px;
    border: 3px solid #fff;
    border-radius: var(--kids-radius);
    transition: transform 0.3s;
    box-shadow: var(--kids-shadow);
}

.lp-feature-card:hover {
    transform: translateY(-5px);
}

.lp-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.lp-icon-title {
    color: var(--kids-text);
    margin: 10px 0;
}

.lp-gallery-title {
    text-align: center;
    color: var(--kids-text);
    font-size: 2rem;
    margin-bottom: 40px;
    width: 100%;
}

.lp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.lp-gallery-item {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 5px solid var(--kids-yellow);
}

.lp-gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.lp-gallery-item h4 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.lp-gallery-item p {
    font-size: 0.95rem; 
    color: #666; 
    margin: 0;
}

.lp-contact-section {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: var(--kids-radius);
    overflow: hidden;
    border: 4px solid var(--kids-green);
    width: 100%;
    box-shadow: var(--kids-shadow);
}

.lp-contact-info {
    flex: 1 1 400px;
    padding: 40px;
    background: #f9fff0;
}

.lp-contact-map {
    flex: 1 1 400px;
    min-height: 400px;
    position: relative;
}

.lp-contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.lp-info-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.lp-info-icon {
    background: var(--kids-green);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.lp-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;
}

.lp-hours-table td {
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 0.95rem;
    white-space: nowrap;
}

.lp-hours-table td:last-child {
    text-align: right;
    font-weight: bold;
    color: var(--kids-text);
}

.btn-green {
    background: var(--kids-red) !important;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    width: auto;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    border-bottom: 5px solid #c0392b;
    transition: all 0.1s;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-green:hover {
    background: #ff7676 !important;
    transform: translateY(-2px);
}

.btn-green:active {
    transform: translateY(3px);
    border-bottom-width: 2px;
    margin-bottom: 3px;
}

.footer-wave {
    flex-shrink: 0;
    width: 100%;
    height: 60px;
    line-height: 0;
    position: relative;
    z-index: 5;
    transform: rotate(180deg);
    margin-top: 50px;
    margin-bottom: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

footer {
    flex-shrink: 0;
    background: var(--kids-green);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-top: none;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .lp-hero-text h1 {
        font-size: 2rem;
    }
    
    .lp-contact-section {
        flex-direction: column;
    }

    .lp-contact-info {
        width: 100%;
    }

    .lp-contact-map {
        width: 100%;
        flex: none;
        height: 350px;
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .lp-hero {
        padding: 20px;
        text-align: center;
    }
    
    .lp-hero-text, .lp-hero-img {
        min-width: 100%;
    }

    .lp-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .lp-hero-img img {
        transform: none;
    }

    .lp-contact-info {
        padding: 20px;
    }
    
    .lp-gallery-grid {
        grid-template-columns: 1fr;
    }

    .lp-contact-map {
        height: 300px;
        min-height: 300px;
    }

    .lp-hours-table td {
        font-size: 0.8rem;
        padding: 4px 0;
    }
}