﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    /*margin-top: 30px;*/
    padding-left: 15px;
    padding-right: 15px;
    min-height: 50vh;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    /*max-width: 280px;*/
    max-width: 100%;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}

/* ==========================================================================
   Preschool Theme & Fonts
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Quicksand:wght@300..700&display=swap');

:root {
    --color-pink: #FF6B6B;
    --color-orange: #FF9F1C;
    --color-yellow: #FFD166;
    --color-green: #06D6A0;
    --color-blue: #118AB2;
    --color-sky: #4EA8DE;
    --color-purple: #9C27B0;
    --color-pink-light: rgba(255, 107, 107, 0.1);
    --color-orange-light: rgba(255, 159, 28, 0.1);
    --color-green-light: rgba(6, 214, 160, 0.1);
    --color-blue-light: rgba(17, 138, 178, 0.1);
    --color-sky-light: rgba(78, 168, 222, 0.1);
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    --footer-bg: #1A3038;
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    color: #4A4A4A;
    background-color: #FAFAFA;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* ==========================================================================
   Header & Top Bar
   ========================================================================== */
.preschool-header {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    position: relative;
    z-index: 1000;
}

.top-info-bar {
    background-color: #FFFDF9;
    border-bottom: 1px solid #F3ECE0;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #6C757D;
}

.top-contact-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-weight: 600;
}

    .top-contact-info span i {
        color: var(--color-orange);
    }

.top-social-links {
    display: flex;
    gap: 12px;
}

    .top-social-links .social-icon {
        color: #8C98A4;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

        .top-social-links .social-icon:hover {
            transform: translateY(-2px);
        }

        .top-social-links .social-icon:nth-child(1):hover {
            color: #1877F2;
        }

        .top-social-links .social-icon:nth-child(2):hover {
            color: #E4405F;
        }

        .top-social-links .social-icon:nth-child(3):hover {
            color: #CD201F;
        }

/* Rainbow border line */
.color-stripe {
    height: 5px;
    background: linear-gradient(to right, var(--color-pink) 0%, var(--color-orange) 20%, var(--color-yellow) 40%, var(--color-green) 60%, var(--color-blue) 80%, var(--color-purple) 100% );
    width: 100%;
}

/* ==========================================================================
   Navbar & Brand
   ========================================================================== */
.custom-preschool-nav {
    padding: 12px 0;
    background-color: #ffffff !important;
}

.preschool-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    text-decoration: none !important;
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.preschool-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .preschool-logo-img:hover {
        transform: scale(1.08) rotate(-3deg);
    }

.brand-logo-container {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    display: flex;
    gap: 1px;
}

/* Fun colorful letters for Mothercare */
.letter-m {
    color: var(--color-pink);
}

.letter-o {
    color: var(--color-orange);
}

.letter-t {
    color: #FFC300;
}

.letter-h {
    color: var(--color-green);
}

.letter-e {
    color: var(--color-blue);
}

.letter-r {
    color: var(--color-purple);
}

.letter-c {
    color: var(--color-pink);
}

.letter-a {
    color: var(--color-orange);
}

.letter-r-2 {
    color: var(--color-green);
}

.letter-e-2 {
    color: var(--color-sky);
}

.brand-subtext {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #6C757D;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 2px;
}

/* Navigation Links */
.custom-preschool-nav .navbar-nav .nav-item {
    margin: 0 5px;
}

.custom-preschool-nav .navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #4A4A4A !important;
    padding: 10px 18px !important;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Custom interactive pill styling for each link */
.custom-preschool-nav .navbar-nav .nav-link-home:hover,
.custom-preschool-nav .navbar-nav .nav-item.active .nav-link-home {
    background-color: var(--color-pink-light);
    color: var(--color-pink) !important;
}

.custom-preschool-nav .navbar-nav .nav-link-about:hover,
.custom-preschool-nav .navbar-nav .nav-item.active .nav-link-about {
    background-color: var(--color-orange-light);
    color: var(--color-orange) !important;
}

.custom-preschool-nav .navbar-nav .nav-link-gallery:hover,
.custom-preschool-nav .navbar-nav .nav-item.show .nav-link-gallery {
    background-color: var(--color-green-light);
    color: var(--color-green) !important;
}

.custom-preschool-nav .navbar-nav .nav-link-inquiry:hover,
.custom-preschool-nav .navbar-nav .nav-item.active .nav-link-inquiry {
    background-color: var(--color-blue-light);
    color: var(--color-blue) !important;
}

/* Contact Button Pill */
.btn-contact-pill {
    background-color: var(--color-orange) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 10px 22px !important;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
    transition: all 0.3s ease !important;
}

    .btn-contact-pill:hover {
        background-color: #E88F10 !important;
        color: #ffffff !important;
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 6px 20px rgba(255, 159, 28, 0.4);
    }

    .btn-contact-pill:active {
        transform: translateY(0);
    }

/* Dropdown Menu */
.preschool-dropdown {
    border: none;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 10px;
    margin-top: 8px;
    background-color: #ffffff;
    animation: dropdownFadeIn 0.3s ease;
}



@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.preschool-dropdown .dropdown-item {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #4A4A4A;
    padding: 10px 15px;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .preschool-dropdown .dropdown-item i {
        font-size: 0.9rem;
        transition: all 0.2s ease;
    }

    .preschool-dropdown .dropdown-item:hover {
        background-color: var(--color-green-light);
        color: var(--color-green);
    }

        .preschool-dropdown .dropdown-item:hover i {
            transform: scale(1.2);
        }

.preschool-dropdown .dropdown-divider {
    border-top: 1px dashed #E3ECF0;
    margin: 6px 0;
}

/* Responsive Custom Mobile Toggle */
.custom-toggler {
    border: none !important;
    background: transparent !important;
    padding: 10px !important;
    outline: none !important;
}

.navbar-toggler-icon-custom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

    .navbar-toggler-icon-custom span {
        display: block;
        height: 3px;
        width: 100%;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

        .navbar-toggler-icon-custom span:nth-child(1) {
            background-color: var(--color-pink);
        }

        .navbar-toggler-icon-custom span:nth-child(2) {
            background-color: var(--color-orange);
        }

        .navbar-toggler-icon-custom span:nth-child(3) {
            background-color: var(--color-green);
        }

.custom-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.preschool-footer {
    background-color: var(--footer-bg);
    color: #D3E0EA;
    position: relative;
    padding-top: 0;
    margin-top: 80px;
    font-family: var(--font-body);
}

.footer-wave {
    position: relative;
    width: 100%;
    height: 60px;
    margin-top: -60px;
    z-index: 10;
    overflow: hidden;
}

    .footer-wave svg {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100%;
        left: 0;
    }

.footer-content {
    padding: 60px 15px 40px 15px;
}

.footer-col {
    margin-bottom: 40px;
}

    .footer-col h4 {
        color: #ffffff;
        font-size: 1.4rem;
        margin-bottom: 20px;
        position: relative;
        font-family: var(--font-heading);
    }

.footer-divider {
    height: 4px;
    width: 45px;
    border-radius: 4px;
    background: linear-gradient(to right, var(--color-orange), var(--color-yellow));
    margin-bottom: 25px;
}

/* About Column */
.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

    .footer-logo-img:hover {
        transform: scale(1.05);
    }

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

    .footer-logo-text .letter-m {
        color: var(--color-pink);
        font-size: 2.1rem;
        margin-right: 1px;
    }

.footer-logo-sub {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-yellow);
    margin-top: -2px;
}

.footer-desc {
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

    .social-circle:hover {
        color: #ffffff;
        transform: translateY(-4px) scale(1.1);
    }

    .social-circle.fb:hover {
        background-color: #1877F2;
    }

    .social-circle.insta:hover {
        background-color: #E4405F;
    }

    .social-circle.yt:hover {
        background-color: #CD201F;
    }

    .social-circle.tw:hover {
        background-color: #000000;
    }

/* Links Column */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links ul li {
        margin-bottom: 12px;
    }

        .footer-links ul li a {
            color: #D3E0EA;
            text-decoration: none !important;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            font-weight: 600;
        }

            .footer-links ul li a i {
                font-size: 0.8rem;
                color: var(--color-orange);
                transition: all 0.3s ease;
            }

            .footer-links ul li a:hover {
                color: var(--color-yellow);
                padding-left: 6px;
            }

                .footer-links ul li a:hover i {
                    transform: translateX(3px);
                    color: var(--color-yellow);
                }

/* Timings Column */
.timing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .timing-list li {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

        .timing-list li .day {
            font-family: var(--font-heading);
            color: #ffffff;
            font-weight: 600;
        }

        .timing-list li .time {
            color: #A9BCCB;
            margin-top: 2px;
        }

            .timing-list li .time.closed {
                color: var(--color-pink);
                font-weight: bold;
            }

/* Contact Column */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.1rem;
    color: var(--color-green);
    margin-top: 3px;
}

.contact-text {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.copyright-text {
    margin: 0;
}

.designed-text {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .designed-text i {
        color: var(--color-pink);
    }

.heartbeat {
    animation: beat 1.2s infinite alternate;
}

@keyframes beat {
    to {
        transform: scale(1.2);
    }
}

/* ==========================================================================
   Responsive & Padding Utilities
   ========================================================================== */
@media (max-width: 991px) {
    .custom-preschool-nav .navbar-nav {
        padding: 20px 0;
        width: 100%;
    }

        .custom-preschool-nav .navbar-nav .nav-item {
            width: 100%;
            margin: 5px 0;
            text-align: center;
        }

        .custom-preschool-nav .navbar-nav .nav-link {
            display: flex;
            justify-content: center;
            width: 100%;
        }

    .btn-contact-pill {
        display: inline-block !important;
        margin-top: 10px;
        width: auto !important;
    }

    .preschool-dropdown {
        text-align: center;
        box-shadow: none;
        background-color: #FFFDF9;
        border: 1px dashed rgba(6, 214, 160, 0.3);
    }

        .preschool-dropdown .dropdown-item {
            justify-content: center;
        }
}

/* ==========================================================================
   Page Title Bar & Breadcrumbs
   ========================================================================== */
.page-title-bar {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    margin-bottom: 50px;
    z-index: 1;
}

.page-main-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.preschool-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
}

    .preschool-breadcrumb a {
        color: #4A4A4A;
        text-decoration: none !important;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .preschool-breadcrumb a:hover {
            color: var(--color-orange);
        }

.breadcrumb-separator {
    color: #A0AEC0;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.breadcrumb-current {
    font-weight: 700;
}

/* Background Gradients & Colors for Individual Pages */
.title-bg-about {
    background: linear-gradient(135deg, #FFF0F2 0%, #FFE3E6 100%);
}

    .title-bg-about .page-main-title {
        color: var(--color-pink);
    }

    .title-bg-about .breadcrumb-current {
        color: var(--color-pink);
    }

.title-bg-photo {
    background: linear-gradient(135deg, #EBFDF5 0%, #D1FAE5 100%);
}

    .title-bg-photo .page-main-title {
        color: var(--color-green);
    }

    .title-bg-photo .breadcrumb-current {
        color: var(--color-green);
    }

.title-bg-video {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
}

    .title-bg-video .page-main-title {
        color: var(--color-blue);
    }

    .title-bg-video .breadcrumb-current {
        color: var(--color-blue);
    }

.title-bg-inquiry {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}

    .title-bg-inquiry .page-main-title {
        color: var(--color-orange);
    }

    .title-bg-inquiry .breadcrumb-current {
        color: var(--color-orange);
    }

.title-bg-contact {
    background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%);
}

    .title-bg-contact .page-main-title {
        color: var(--color-purple);
    }

    .title-bg-contact .breadcrumb-current {
        color: var(--color-purple);
    }

/* Decorative background accents */
.page-title-bar::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.page-title-bar::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .page-title-bar {
        padding: 45px 0;
        margin-bottom: 30px;
    }

    .page-main-title {
        font-size: 2.2rem;
    }
}
