/* Kids Fit Studio - Custom CSS */

:root {
    --color-teal: #0ba09c; /* Original Logo Teal */
    --color-navy: #1b365d; /* Original Logo Navy */
    --color-yellow: #ffb703;
    --color-red: #fb5607;
    --color-pink: #ff006e;
    --color-green: #83c5be;
    --color-purple: #8338ec;
    --color-blue: #3a86ff;
    --color-light-bg: #fdfaf6;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #495057;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
}

.fw-black {
    font-weight: 900;
}

/* Custom Text Colors */
.text-teal { color: var(--color-teal) !important; }
.text-navy { color: var(--color-navy) !important; }
.text-yellow { color: var(--color-yellow) !important; }
.text-red { color: var(--color-red) !important; }
.text-pink { color: var(--color-pink) !important; }
.text-green { color: var(--color-green) !important; }
.text-purple { color: var(--color-purple) !important; }
.text-blue { color: var(--color-blue) !important; }

/* Custom Background Colors */
.bg-teal { background-color: var(--color-teal) !important; }
.bg-navy { background-color: var(--color-navy) !important; }
.bg-yellow { background-color: var(--color-yellow) !important; }
.bg-red { background-color: var(--color-red) !important; }
.bg-pink { background-color: var(--color-pink) !important; }
.bg-green { background-color: var(--color-green) !important; }
.bg-purple { background-color: var(--color-purple) !important; }
.bg-light-bg { background-color: var(--color-light-bg) !important; }

/* Custom Buttons */
.btn-primary {
    background-color: var(--color-teal);
    border-color: var(--color-teal);
}
.btn-primary:hover {
    background-color: #088a86;
    border-color: #088a86;
}

.btn-yellow {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}
.btn-yellow:hover {
    background-color: #e6a500;
    border-color: #e6a500;
}

.btn-outline-dark {
    border-color: var(--color-navy);
    color: var(--color-navy);
    border-width: 2px;
}
.btn-outline-dark:hover {
    background-color: var(--color-navy);
    color: #fff;
}

/* Navbar */
.nav-links-custom .nav-link {
    color: var(--color-navy) !important;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin: 0 10px;
    position: relative;
    padding-bottom: 5px;
}
.nav-links-custom .nav-link:hover {
    color: var(--color-teal) !important;
}
.nav-links-custom .nav-link.active {
    color: var(--color-teal) !important;
}
.nav-links-custom .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 3px;
    background-color: var(--color-teal);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background-color: #fff;
    padding: 60px 0 100px;
}
.hero .dot {
    font-size: 1.5rem;
    line-height: 0;
    vertical-align: middle;
}
.hero-image-wrapper {
    position: relative;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    overflow: hidden;
}
.hero-image-wrapper img {
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    width: 100%;
}
.fun-badge {
    width: 120px;
    height: 120px;
    bottom: -20px;
    right: -20px;
    border: 5px solid #fff;
    z-index: 10;
}

/* Shape Dividers */
.custom-shape-divider-bottom-1696000000 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1696000000 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom-1696000000 .shape-fill {
    fill: #FFFFFF;
}

.custom-shape-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}
.custom-shape-divider-bottom-cta {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.custom-shape-divider-bottom-cta svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}
.custom-shape-divider-bottom-cta .shape-fill {
    fill: #ffffff;
}

/* Features */
.features {
    background-color: var(--color-light-bg) !important;
}
.feature-bar {
    transform: translateY(-50%);
    position: relative;
    z-index: 5;
}
.icon-box {
    width: 60px;
    height: 60px;
}

/* Programs */
.programs {
    background-color: var(--color-light-bg);
}
.programs-bg-blob {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background-color: #fff8eb;
    border-radius: 60px;
    z-index: 1;
}
.program-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.15) !important;
}
.program-icon {
    width: 60px;
    height: 60px;
    bottom: -30px;
    border: 4px solid #fff;
}

/* Why Choose Us */
.why-choose-us {
    background-color: #fff;
}

/* Testimonials */
.testimonials {
    background-color: var(--color-light-bg);
}

/* Utilities */
.z-index-2 {
    z-index: 2;
}

.rounded-custom {
    border-radius: 20px 20px 100px 100px;
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg,#25D366 0%,#128C7E 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(18,140,126,0.25);
    z-index: 9999;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(18,140,126,0.28);
}
.whatsapp-float .whatsapp-icon {
    font-size: 28px;
}
.whatsapp-float::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,0.12);
    animation: whatsapp-pulse 2.2s infinite;
    z-index: 9988;
}
@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 1; }
    70% { transform: scale(1.9); opacity: 0; }
    100% { transform: scale(1.9); opacity: 0; }
}
@media (max-width: 576px) {
    .whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
    .whatsapp-float .whatsapp-icon { font-size: 22px; }
}
