/* Emotion Reset Method - Complete Homepage Styles */

:root {
    --primary: #72A98F;
    --primary-dark: #5A8772;
    --accent: #E8F4F0;
    --foreground: #1A2E2A;
    --muted: #6B7280;
    --border: #E5E7EB;
    --card-bg: #F9FAFB;
    --background: #FFFFFF;
    --font-display: 'Fraunces', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--foreground);
    background: var(--background);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    top: 0;
    z-index: 100;
}

.currentPage{
    font-weight:800;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

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

nav a {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 2rem;
}

/* Opt-in Card */
.opt-in-card {
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 42rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.opt-in-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}

.opt-in-description {
    text-align: center;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.opt-in-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-size: 1.125rem;
    font-family: var(--font-body);
}

.form-input:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.opt-in-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    font-size: 1.125rem;
    padding: 0.75rem 2rem;
}

.btn-animate {
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Sections */
.section-padding {
    padding: 5rem 0;
}

.bg-card {
    background: var(--card-bg);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Content Prose */
.content-prose {
    font-size: 1.125rem;
    line-height: 1.75;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.lead-text.strong {
    font-weight: 500;
    color: var(--foreground);
}

.bullet-list {
    list-style: none;
    margin: 1.5rem 0;
}

.bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.bullet {
    color: var(--primary);
    font-weight: 700;
}

/* Images */
.image-container {
    margin: 3rem 0;
}

.section-image {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Meridian Proof */
.meridian-proof {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: #e11919;
    margin-bottom: 3rem;
    line-height: 1.4;
}

/* Milestone Map Container */
        .milestone-map {
            max-width: 56rem;
            margin: 0 auto 4rem;
            position: relative;
        }

        /* Vertical connecting line */
        .milestone-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, rgba(114, 169, 143, 0.2), var(--primary), var(--accent));
            transform: translateX(-50%);
        }

        /* Milestone items */
        .milestones {
            position: relative;
            z-index: 1;
        }

        .milestone-item {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .milestone-item:last-child {
            margin-bottom: 0;
        }

        /* Left side content (for even items: 0, 2, 4) */
        .milestone-left {
            flex: 1;
            text-align: right;
            padding-right: 2rem;
        }

        /* Right side content (for odd items: 1, 3) */
        .milestone-right {
            flex: 1;
            text-align: left;
            padding-left: 2rem;
        }

        /* Empty spacer */
        .milestone-spacer {
            flex: 1;
        }

        /* Circle in the center */
        .milestone-circle {
            position: relative;
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            border: 4px solid var(--background);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .milestone-circle-inner {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            background: var(--primary);
        }

        /* Different background colors for each milestone */
        .milestone-circle.level-1 {
            background: rgba(114, 169, 143, 0.1);
        }

        .milestone-circle.level-2 {
            background: rgba(114, 169, 143, 0.2);
        }

        .milestone-circle.level-3 {
            background: rgba(114, 169, 143, 0.3);
        }

        .milestone-circle.level-4 {
            background: rgba(114, 169, 143, 0.4);
        }

        .milestone-circle.level-5 {
            background: rgba(232, 244, 240, 0.4);
        }

        /* Content styling */
        .milestone-level {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .milestone-title {
            font-family: var(--font-display);
            font-size: 1.125rem;
            font-weight: 600;
            line-height: 1.4;
        }

/* Slogan */
.slogan-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.slogan-large {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3rem;
}

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

.feature-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--muted);
}

/* About Preview */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-preview-content {
    order: 1;
}

.about-preview-image {
    order: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--primary);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-preview-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-preview-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.about-preview-text p {
    margin-bottom: 1rem;
}

.image-frame {
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(114, 169, 143, 0.2), rgba(232, 244, 240, 0.2));
    border-radius: 1.5rem;
    transform: rotate(3deg);
    z-index: -1;
}

.claire-portrait {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(114, 169, 143, 0.1), rgba(232, 244, 240, 0.1));
}

/* Footer */
footer {
    background-color: #ffffff !important; /* Changes background to white */
    padding: 80px 0;
    border-top: 1px solid #eeeeee; /* Optional: adds a slight line to separate from body */
}





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

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #2d3436 !important; 
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #2d3436 !important; 
    text-decoration: none;
    transition: color 0.3s;
}

.footer-inner-box {
    width:fit-content;
}

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

.social-links a {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.footer h4, .footer p, .footer li, .footer a {
    color: #2d3436 !important; 
}

.footer a:hover {
    color: #00cec9 !important; /* Keeps your brand teal color on hover */
}

/* Utility Classes */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.mb-medium { margin-bottom: 2rem; }
.mb-large { margin-bottom: 4rem; }
.mt-medium { margin-top: 2rem; }
.mt-large { margin-top: 3rem; }

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .about-preview-content {
        order: 2;
    }
    
    .about-preview-image {
        order: 1;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .milestone-line {
        display: none;
    }

    .milestone-item {
        flex-direction: row;
        gap: 1rem;
    }

    .milestone-left,
    .milestone-right {
        display: none;
    }

    .milestone-spacer {
        display: none;
    }

    .milestone-mobile {
        flex: 1;
        text-align: left;
        padding-left: 1rem;
    }

    .milestone-circle {
        width: 3rem;
        height: 3rem;
    }

    .milestone-circle-inner {
        width: 1.5rem;
        height: 1.5rem;
    }
}


/* Targets the container holding the 3 columns */
.footer .row {
    display: flex;
    justify-content: space-between; /* Pushes boxes to the edges with equal space between */
    flex-wrap: wrap;
}

/* Targets each of the 3 boxes */
.footer .col-md-4 {
    flex: 1;
    padding: 0 30px; /* Adds breathing room inside the boxes */
    text-align: left; /* Ensures text stays aligned correctly */
}

/* Mobile responsive fix */
@media (max-width: 768px) {
    .footer .col-md-4 {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}


.social-links {
    margin-top: 20px;
    display: flex;
    gap: 20px; /* Spaces icons apart */
}

.social-links i {
    font-size: 22px; /* Makes icons larger */
    color: #2d3436;
    transition: transform 0.2s ease;
}

.social-links i:hover {
    color: #00cec9;
    transform: translateY(-3px); /* Slight lift effect on hover */
}