/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blush: #F4C2C2;
    --cream: #FFF8F0;
    --lavender: #E6E6FA;
    --light-teal: #B0E0E6;
    --soft-pink: #FFE4E1;
    --warm-gray: #F5F5F5;
    --text-dark: #4A4A4A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Navigation */
.navbar {
    position: relative;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    padding: 0;
    margin: 0;
}

.nav-logo h2 {
    color: var(--blush);
    margin: 0;
    font-size: 1.5rem;
}

.logo-image {
    height: 110px;
    width: auto;
    max-width: 600px;
    display: block;
    margin: -13px 0;
    position: relative;
    z-index: 10;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--blush);
}

.cta-nav {
    background: var(--blush);
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 2px solid #e67373;
}

.cta-nav:hover {
    background: var(--lavender);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.2) 100%), 
        url('assets/homemom.png') center center/cover no-repeat;
    background-attachment: fixed;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, var(--cream) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Hero Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('assets/homemom.png') center/cover no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    display: none; /* Hide until real video is added */
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin: 0 auto 4rem;
    padding: 2rem 0;
    text-align: center;
    max-width: 600px;
}

.hero-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.hero-location {
    font-size: 1rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    font-style: italic;
}

/* Features and Value Section */
.features-value-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-gray) 100%);
    padding: 80px 0;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Value Proposition */
.value-proposition {
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.value-proposition h2 {
    color: var(--text-dark);
    text-align: center;
}

.value-proposition p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* CTA Buttons */
.cta-button {
    background: var(--blush);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: var(--lavender);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.secondary-cta {
    background: #2c7873;
    border: 2px solid #225a56;
}

.secondary-cta:hover {
    background: #1e5955;
    border-color: #164440;
    transform: translateY(-2px);
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.how-it-works-section,
.benefits-section,
.about-section,
.testimonials-section,
.signup-section {
    padding: 80px 0;
}

.how-it-works-section {
    background: var(--white);
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f8f6f4' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.benefits-section {
    background: linear-gradient(45deg, var(--soft-pink) 0%, var(--lavender) 100%);
}

.about-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 209, 209, 0.1) 0%, transparent 70%);
    transform: rotate(15deg);
}

.testimonials-section {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--soft-pink) 100%);
}

.signup-section {
    background: linear-gradient(135deg, var(--light-teal) 0%, var(--blush) 100%);
    color: white;
}

.contact-section {
    background: var(--white);
    padding: 80px 0;
}

.pain-points-section {
    background: var(--warm-gray);
    padding: 80px 0;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pain-point-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pain-point-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.pain-point-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: linear-gradient(145deg, var(--white) 0%, var(--cream) 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--blush);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--blush);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--light-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    font-size: 1.5rem;
    color: white;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--lavender);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.benefit-item h3 {
    margin: 0;
    color: var(--text-dark);
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow-hover);
}

.about-content {
    text-align: left;
}

.about-title {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Testimonials */
.testimonials-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow);
    display: none;
    text-align: center;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author {
    color: var(--blush);
    font-weight: 600;
}

.testimonial-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    height: 12px;
    width: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--blush);
}

/* Forms */
.signup-form,
.contact-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blush);
    box-shadow: 0 0 0 3px rgba(244, 194, 194, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.success-message,
.contact-success-message {
    background: #d4edda;
    color: #155724;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.download-link {
    color: #155724;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(21, 87, 36, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: rgba(21, 87, 36, 0.2);
}

.contact-section .contact-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--warm-gray);
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow);
}

.signup-section .contact-form-container {
    max-width: 500px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.contact-section .contact-form-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.signup-section .contact-form-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.cta-container {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--blush);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blush);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--blush);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--lavender);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 900px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 450px;
        margin: 0 auto 4rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-img {
        height: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-content {
        padding: 1.5rem 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    /* Fix background attachment for mobile */
    .hero-section {
        background-attachment: scroll;
        min-height: 100vh;
        background-size: cover;
        background-position: center center;
    }
    
    .hero-video {
        opacity: 0.4;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .value-proposition {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: 70vh;
    }
    
    .how-it-works-section,
    .benefits-section,
    .about-section,
    .testimonials-section,
    .signup-section {
        padding: 60px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 90px;
        padding-bottom: 50px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center 30%;
        min-height: 100vh;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 1.25rem 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .feature-card,
    .step-card,
    .benefit-item {
        padding: 1.5rem;
    }
    
    .value-proposition {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for forms */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading .cta-button {
    background: #ccc;
    cursor: not-allowed;
}
