/* --- 1. GLOBAL RESET & BASE STYLES --- */
:root {
    /* BRANDING COLORS: FINAL EASTER PASTEL PALETTE */
    --color-primary: #a1e05d;      /* Lighter Pastel Green (Main Accent) */
    --color-pastel-green: #c4f395; /* Softer Pastel Green (Hover/Highlights) */
    --color-accent: #111111;       /* Dark Text */
    --color-page-bg: #ffffff;
    --color-light-bg: #f5f5f5;
    --color-header-footer-bg: #f5f5f5;
    --color-text-dark: #333333;
    --color-text-secondary: #555555;
    --color-white: #ffffff;

    --max-width: 1200px;
    --transition: 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* ... (body, container, typography styles are unchanged) ... */

/* --- BUTTONS (CTAs) --- */
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.75rem;
    border-radius: 10px; 
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-button.primary {
    background-color: var(--color-primary); 
    color: var(--color-accent);
    border: 2px solid var(--color-primary);
}

.cta-button.primary:hover {
    background-color: var(--color-pastel-green);
    transform: translateY(-2px);
}


/* --- 2. NAVBAR (Stylized Header) --- */
.navbar {
    background-color: var(--color-header-footer-bg);
    padding: 1.5rem 0; 
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 70px; /* FINAL LOGO SIZE INCREASED FOR PROMINENCE */
    width: auto;
}

/* Navigation links are removed, pushing buttons to the right */
.desktop-nav {
    flex-grow: 1; 
}

/* NAVIGATION BUTTONS (Login and Signup) */
.nav-buttons {
    display: flex;
    gap: 8px; /* TIGHTENED GAP to 'squish' buttons slightly */
    align-items: center;
}

/* Log In Button (Secondary Style) */
.nav-login-btn {
    background: none; 
    color: var(--color-primary); 
    border: 2px solid var(--color-primary);
    padding: 0.5rem 1rem; 
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    order: 2; /* MOVED TO THE OUTSIDE RIGHT (After the primary CTA) */
}

.nav-login-btn:hover {
    background-color: var(--color-pastel-green);
    color: var(--color-accent);
}

.nav-cta {
    padding: 0.5rem 1rem; 
    font-size: 0.9rem;
    order: 1; /* Ensured Signup remains primary/left */
}


@media (max-width: 768px) {
    .desktop-nav, .nav-buttons {
        display: none;
    }
}

/* --- 3. HERO SECTION (Main Content) --- */
/* ... (Hero content styles unchanged) ... */

/* PROMINENT BORDER AND SHADOW FOR HERO VISUAL */
.hero-visual {
    position: relative; /* Needed for any future feature pointer/dot */
    width: 100%;
    max-width: 1000px;
    padding: 0 1rem;
    margin-top: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25); /* Much heavier, prominent shadow */
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid var(--color-primary); /* THICK, PRIMARY COLOR BORDER */
    cursor: zoom-in; /* Indicate clickability for JS */
}

.screenshot-desktop {
    width: 100%;
    height: auto;
    display: block;
}

/* LIGHTBOX TRIGGER STYLING */
/* Removed anchor tag styling as link is now handled by JS */
.lightbox-trigger {
    cursor: zoom-in;
    display: block; 
    text-decoration: none;
}

/* --- CSS FOR IMAGE POINTERS (ANNOTATION CONCEPT) --- */
/* To point out features, you would wrap the .hero-visual 
    in a new div and add marker elements inside that div 
    with absolute positioning. Example HTML for a dot:
    
    <span class="feature-marker" style="top: 30%; left: 80%;"></span>
*/

.feature-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: red; /* Use a contrasting color */
    border: 2px solid white;
    border-radius: 50%;
    z-index: 10;
}

/* --- 4. CORE FEATURES SECTION --- */
/* ... (Rest of sections 4, 5, 6 styles are unchanged) ... */
