/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f9fc;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    background-color: #ff4081;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 18px;
    padding: 8px 20px;
    transition: background-color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.navbar-toggler {
    border: none;
}

/* Hero Section */
.hero {
    background: url('https://storage.googleapis.com/kidvar-prod/static-images/hearo-img.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero .btn {
    padding: 12px 30px;
    font-size: 18px;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #f7f9fc;
    text-align: center;
}

.features-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.feature {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #ff4081;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.feature p {
    font-size: 1rem;
    color: #555;
}

/* Parenting Journey Section */
.parenting-journey-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.parenting-journey-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.parenting-journey-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: #ff4081;
    border-color: #ff4081;
    font-size: 18px;
    padding: 12px 30px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e91e63;
}

/* Community Section */
.community-section {
    padding: 60px 0;
    background-color: #f7f9fc;
    text-align: center;
}

.community-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.community-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer a {
    color: #fff;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff4081;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .btn {
        font-size: 16px;
    }
    .feature {
        margin-bottom: 30px;
    }
}
