/* Preloader */
/* Change the appearance of selected text (if selection is allowed) */
::selection {
    background: transparent; /* Transparent background for selected text */
    color: inherit; /* Keep text color as is */
}

/* Preloader Styling */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Ensure it stays on top */
    
}

@media (max-width:600px){
    .mobile-spacer {
        margin-bottom:85px;
    }
}

/* Static Logo Styling (reuse from earlier) */
.static-logo {
    display: inline-block; /* Allows placement within other elements */
    text-align: center;
    font-weight: 700;
    color: #333; /* Adjust this to the desired color */
    font-family: Arial, sans-serif;
    line-height: 1.2; /* Adjust for spacing */
}

.static-logo .one-kid {
    font-size: 48px; /* Adjust for primary size */
    font-family: 'Arial Bold', sans-serif;
    letter-spacing: -1px;
   
}

.static-logo .foundation {
    font-size: 15px;
    font-family: 'Arial Light Regular', sans-serif;
    letter-spacing: 9px;
    display: flex;
    color:#333;
    align-items: center;
    justify-content: center;
    margin-top: -5px;
    margin-left:-7px;
}

.static-logo .foundation:after{
    content: "";
    display: block;
    width: 15px; /* Adjust line length */
    height: 1px; /* Line thickness */
    background: #333; /* Matches the logo color */
    margin: 0 -7px; /* Space around the text */
}


.static-logo .foundation:before {
    content: "";
    display: block;
    width: 15px; /* Adjust line length */
    height: 1px; /* Line thickness */
    background: #333; /* Matches the logo color */
    margin: 0 4px; /* Space around the text */
}


/* Static Logo Footer Styling (reuse from earlier) */
.static-logo-footer {
    display: inline-block; /* Allows placement within other elements */
    text-align: center;
    font-weight: 700;
    color: #fff; /* Adjust this to the desired color */
    font-family: Arial, sans-serif;
    line-height: 1.2; /* Adjust for spacing */
}

.static-logo-footer .one-kid {
    font-size: 29px; /* Adjust for primary size */
    font-family: 'Arial Bold', sans-serif;
    letter-spacing: -1px;
   
}

.static-logo-footer .foundation {
    font-size: 6px;
    font-family: 'Arial Light Regular', sans-serif;
    letter-spacing: 7px;
    display: flex;
    color:#fff;
    align-items: center;
    justify-content: center;
    margin-top: -5px;
    margin-left:-7px;
}

.static-logo-footer .foundation:after{
    content: "";
    display: block;
    width: 11px; /* Adjust line length */
    height: 1px; /* Line thickness */
    background: #fff; /* Matches the logo color */
    margin: 0 -4px; /* Space around the text */
}


.static-logo-footer .foundation:before {
    content: "";
    display: block;
    width: 11px; /* Adjust line length */
    height: 1px; /* Line thickness */
    background: #fff; /* Matches the logo color */
    margin: 0 4px; /* Space around the text */
}

p.footer_text {
    font-size: 12px;
    margin-bottom: 0px;
}

p.footer-text {
    font-size: 12px;
    margin-bottom: 4px;
}

ul.footer_links {
    list-style-type: none;
    padding: 0px;
    text-align: center;
}

ul.footer_links li a {
    text-decoration: none;
    color: #fff;
}

ul.footer_links li a:hover {
    text-decoration: none;
    color: #e1e1e1;
}

ul.footer_links li {
    padding: 2px;
}

#preloader img {
    max-width: 196px;
}




#preloader {
    transition: opacity 0.5s ease;
}





/* Typesettings */

h1, h2, h3 {
    font-family: 'Mona Sans',sans-serif;
    font-weight:600;
    text-transform:none;
    letter-spacing:-0.5px;
   
}

h1.display-4 {
    font-weight: 600 !important;
    font-size: 41px;
    color: #fefefe;
}

@media (min-width:700px){
    h1.display-4 {
    font-weight: 600 !important;
    font-size: 45px;
    color: #fefefe;
}
}

h4 {
    font-family: 'Roboto',sans-serif;
    font-weight:500;
    text-transform:none;
   
}

h3.stats {
    font-size: 50px;
    letter-spacing: -2px;
    
}

 /* General styles */
        body {
            margin: 0;
            font-family: Mona Sans, sans-serif;
            font-weight: 300;
        }
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }
        .header.transparent {
            background: transparent;
        }
        .header.scrolled {
            background: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        .logo-container {
            text-align: center;
            font-weight: 700;
            font-family: Arial, sans-serif;
            transition: color 0.3s ease;
        }
        .logo-container .one-kid {
    font-size: 30px;
    letter-spacing: -1px;
    font-family: 'Arial Bold', sans-serif;
    line-height: 1;
    padding-left:7px;
}
       .logo-container .foundation {
    font-size: 6px;
    font-family: 'Arial Light Regular', sans-serif;
    letter-spacing: 7px;
    display: flex;
    line-height: 1;
    align-items: center;
    justify-content: center;
}
      .logo-container .foundation:after {
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    background: currentColor;
    margin: 0 -4px;
}

.logo-container .foundation:before {
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    background: currentColor;
    margin: 0 4px;
}
        .header.transparent .logo-container {
            color: white;
        }
        .header.scrolled .logo-container,
        .hamburger.open ~ .logo-container {
            color: #333;
        }
        .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            order: 2; /* Move hamburger to the left */
        }
        .hamburger span {
            background-color: white;
            height: 2px;
            transition: all 0.3s ease;
        }
        .hamburger.scrolled span,
        .hamburger.open span {
            background-color: #333;
        }
        .hamburger span:nth-child(1) {
            transform: translateY(0);
        }
        .hamburger span:nth-child(2) {
            opacity: 1;
        }
        .hamburger span:nth-child(3) {
            transform: translateY(0);
        }
        .hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translateY(12px);
        }
        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translateY(-12px);
        }
        .full-page-nav {
            position: fixed;
            top: 0;
            left: 100%;
            width: 100vw;
            height: 100vh;
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .full-page-nav.open {
            left: 0;
        }
        .full-page-nav a {
            font-size: 16px;
            color: #333;
            margin: 10px 0;
            text-decoration: none;
        }
        
        .logo-container {
    cursor: pointer;
}

/* Modal Container */
.slide-up-modal {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #fffffff0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: bottom 0.5s ease-in-out;
    z-index: 1050;
    padding: 0px;
}

/* Modal Content */
.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 100%;
    width: 90%;
    box-shadow: none;
    position: relative;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 0px;
    right: 0px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}
