/* Modern site styles */
:root {
    --primary-color: #F06292;
    --secondary-color: #4a91e267;
    --dark-color: #333333;
    --light-color: #FFFFFF;
    --section-padding: 6rem;
    --card-bg: #FFFFFF;
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Sora', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--dark-color);
}

/* Global Section Heading */
.section-heading {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Sora', sans-serif;
}

/* Navigation Styles */
.site-navigation {
    padding: 1rem 0;
    background: var(--light-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 80px;
}
.logo img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}
.nav-center-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.nav-center-wrap a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-center-wrap a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Styles */
.site-mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2000;
    width: 300px;
    height: 100vh;
    background: var(--light-color);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 2rem;
    display: none;
}
.site-mobile-menu.active {
    display: block;
    transform: translateX(0);
}
.site-mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}
.site-mobile-menu-close {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-color);
}
.site-mobile-menu-body ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.site-mobile-menu-body ul li a {
    display: block;
    padding: 0.75rem 0;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.site-mobile-menu-body ul li a:hover {
    color: var(--primary-color);
}

/* Burger Button Styles */
.burger {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    display: none;
}
@media (max-width: 991.98px) {
    .site-navigation .row {
        justify-content: center;
        align-items: center;
    }
    .site-navigation .logo {
        order: -1;
    }
    .burger {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

/* The previous overlay and image background are no longer needed */
.hero .overlay,
.hero .img-bg {
    display: none;
}
.hero .container {
    position: relative;
    z-index: 2;
    color: var(--light-color);
}
.hero .heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}
.tagline {
    font-family: var(--heading-font);
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* About Section */
.service-section-1 {
    padding: var(--section-padding) 0;
    background: #f8f9fa;
}
.service-section-1 img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #f8f9fa;
    display: block;
    margin: 0 auto;
}
.service-section-1 .heading {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}
.features {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.feature-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex: 1 1 calc(50% - 1.5rem);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.feature-icon {
    color: var(--primary-color);
    font-weight: bold;
}

/* Mission Section */
.section-2 {
    padding: var(--section-padding) 0;
    background: var(--light-color);
}
.section-2 .heading {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Waitlist Section */
#please {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding: var(--section-padding) 0;
    text-align: center;
}
#please h2 {
    margin-bottom: 2rem;
}

/* Social Media Section */
#social-media {
    padding: var(--section-padding) 0;
    background: var(--light-color);
    text-align: center;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.social-icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}
.social-icons img:hover {
    transform: scale(1.2);
}

/* Social icon link size */
.social-link {
    width: 20px;
    display: inline-block;
}

/* Waitlist form styles */
.waitlist-input {
    border-radius: 10px;
}

#loadingSpinner {
    display: none;
}

/* Footer */
.site-footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0;
    text-align: center;
}

/* Loading Overlay */
#overlayer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light-color);
    z-index: 9999;
}
.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .nav-center-wrap {
        display: none;
    }
    .site-mobile-menu {
        display: block;
    }
    .hero .heading {
        font-size: 2.5rem;
    }
}
@media (max-width: 767.98px) {
    .hero .heading {
        font-size: 2rem;
    }
    .service-section-1 {
        padding: 3rem 0;
    }
    .section-2 {
        padding: 3rem 0;
    }
}
