/* --- Global Styles & Variables --- */
:root {
    --primary-blue: #87CEEB;    /* Sky Blue */
    --secondary-blue: #AADDEE;  /* Light Blue */
    --dark-blue: #4682B4;     /* Steel Blue */
    --water-blue: #85D1FA;
    --transparent: rgba(1, 1, 1, 0);
    --sonic-blue: #1F88DD;
    --softer-green: #79DB8C;
    --accent-green: #AAFDAA;   /* Pale Green (from logo) */
    --sunlight-yellow: #FFEE99; /* Soft sunlight color */
    --grass-green: #6fcc4b;    /* Fresh grass color */
    --light-bg: #F0FCFF;     /* Alice Blue */
    --text-color: #333;
    --heading-color: #2c3e50; /* Darker blue-gray */
    --darker-blue: #2A548A;
    --white: #FFFFFF;
    --soft-shadow: 0 6px 20px rgba(70, 130, 180, 0.15); /* Softer, more diffused shadow */
    --glow-shadow: 0 8px 25px rgba(255, 238, 153, 0.25); /* Sunlight glow effect */
    --border-radius: 18px; /* More rounded corners for Frutiger Aero */
    --subtle-border: 1px solid rgba(70, 130, 180, 0.1); /* Subtle blue border */
    --glass-bg: rgba(255, 255, 255, 0.7); /* Glass effect background */
    --glass-border: 1px solid rgba(255, 255, 255, 0.8); /* Glass effect border */
}

body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(160deg, var(--light-bg) 0%, #FFFFFF 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from blobs */
    position: relative; /* Needed for positioning background shapes */
    min-height: 100vh;
}

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

h1, h2, h3 {
    color: var(--heading-color);
    margin-bottom: 0.8em;
    font-weight: 700;
}

h1 {
    font-size: 2.8em;
    line-height: 1.2;
}

h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 1em;
    padding-top: 1em; /* Spacing for section titles */
}

h3 {
    font-size: 1.4em;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Header & Navigation --- */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(70, 130, 180, 0.1);
}

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

.logo-link {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5em;
    color: var(--heading-color);
}
.logo-link:hover {
    color: var(--dark-blue);
}

.logo {
    height: 45px;
    margin-right: 10px;
}

.logobig {
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: var(--sonic-blue);
}

header nav ul li a:hover {
    color: var(--grass-green);
}


/* --- Background Blobs & Animation --- */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Behind content */
    pointer-events: none; /* Don't interfere with clicks */
}

.blob {
    position: absolute;
    opacity: 0.25; /* Slightly more visible */
    filter: blur(15px); /* Softer edges for Frutiger Aero */
}

/* Positioning and animation for blobs */
.blob-1 {
    width: 45vw;
    height: 45vw;
    top: -10vh;
    left: -15vw;
    filter: blur(20px) hue-rotate(10deg); /* Blue-green tint */
}

.blob-2 {
    width: 40vw;
    height: 40vw;
    bottom: -5vh;
    right: -10vw;
    filter: blur(20px) hue-rotate(10deg); /* Blue-green tint */
}

/* Load SVG content within the object tag */
.blob object {
    width: 100%;
    height: 100%;
}

/* --- Main Content Sections --- */
main {
    padding-top: 10px;
    padding-bottom: 20px;
}

section {
    margin-bottom: 60px;
    padding: 40px 0;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 70vh;
    text-align: left;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 450px; /* Adjust as needed */
    opacity: 0.8;
}


.cta-button {
    display: inline-block;
    background: radial-gradient(#fdfdfd, #edf7fc 10%, #e6f7ff 40%, var(--water-blue));
    color: var(--darker-blue);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bolder;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.5), 0 0 20px rgba(255, 238, 153, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(1, 1, 1, 0);
    backdrop-filter: blur(5px);
    cursor: pointer;
    font-size: 1.0em;
}

.cta-button:hover {
    color: var(--darker-blue);
    box-shadow: 0 6px 15px rgba(135, 206, 235, 0.5);
    background: radial-gradient(var(--white), #edf7fc 40%, var(--water-blue));
}

/* Features/Screenshot Section */

.screenshot {
    margin: 30px auto;
    max-width: 800px;
    border-radius: var(--border-radius);
    overflow: hidden; /* Keep image within rounded corners */
    box-shadow: var(--soft-shadow);
    background-color: var(--white); /* Background if image is transparent */
}

.screenshot img {
     border-radius: var(--border-radius);
}

/* New styles for collapsible screenshots */
.screenshot-container {
    margin: 30px auto; /* Keep original margin */
    max-width: 800px; /* Keep original max-width */
    text-align: center; /* Center the toggle button */
}

.screenshot-toggle {
    background: none;
    border: none;
    color: var(--dark-blue); /* Link color */
    text-decoration: underline;
    cursor: pointer;
    font-size: 1em; /* Match surrounding text */
    margin-bottom: 15px; /* Space between toggle and content */
    padding: 0; /* Remove default button padding */
    font-family: inherit; /* Use body font */
    transition: color 0.3s ease;
}

.screenshot-toggle:hover {
    color: var(--primary-blue); /* Hover color */
}

.screenshot-content {
    max-height: 0; /* Start collapsed */
    overflow: hidden;
    transition: max-height 0.3s ease-out; /* Collapse transition */
}

.screenshot-content.expanded {
    max-height: 1000px; /* Expand to show content (adjust if needed) */
    transition: max-height 0.3s ease-in; /* Expand transition */
}

/* Adjust existing .screenshot style */
.screenshot {
    margin: 0 auto; /* Center the screenshot within its container */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    background-color: var(--white);
}

/* The original .caption style was for the paragraph *after* the screenshot div,
   which is now replaced by the button. If you add a caption *inside* the
   screenshot div later, you might need a new style for it. */


/* Generic Page Content (About, Pricing, Contact) */
.page-content {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Pricing Page */
.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--soft-shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-card h2 {
    margin-top: 0;
    text-align: center;
}

.pricing-card .price {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1; /* Make list take up space */
}

.pricing-card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pricing-card ul li::before {
    content: '✓'; /* Checkmark */
    color: var(--accent-green);
    padding-right: 5px;
    font-weight: bolder;
    font-size: 1.4em;
}

.pricing-card .cta-button {
    margin-top: auto; /* Push button to bottom */
}

.contact-prompt {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1em;
}

/* About Us Page */
.founders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.founder-card {
    text-align: center;
}

.founder-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    object-fit: cover;
    background-color: #eee; /* Placeholder bg */
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.founder-card h2 {
    font-size: 1.5em;
    margin-bottom: 5px;
    text-align: center;
}
.founder-card h3 {
    font-size: 1em;
    color: var(--dark-blue);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 400;
}

.mission {
    margin-top: 60px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--soft-shadow);
    text-align: center;
}
.mission h2 {
    margin-top: 0;
}


/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--soft-shadow);
}

#contact-form .form-group {
    margin-bottom: 20px;
}

#contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--heading-color);
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px; /* Slightly less rounded for inputs */
    font-family: inherit;
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
    transition: border-color 0.3s ease;
}

#contact-form input[type="text"]:focus,
#contact-form input[type="email"]:focus,
#contact-form textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 5px rgba(135, 206, 235, 0.5);
}

#contact-form textarea {
    resize: vertical; /* Allow vertical resize */
    min-height: 120px;
}

#contact-form button[type="submit"] {
    /* Uses .cta-button styles */
}

.contact-info h3 {
    margin-top: 0;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 10px;
    display: inline-block;
}

.contact-info p {
    margin-bottom: 15px;
}

/* Quick Links Section */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    text-align: center;
}

.quick-links div {
    background-color: var(--glass-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--soft-shadow);
    border: var(--glass-border);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-links h3 {
    margin-top: 0;
}

.quick-links a {
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
}

/* How It Works Section */
.info-rows {
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 35px;
    margin-top: 40px;
    text-align: center;
}

.step-card {
    background-color: var(--glass-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--soft-shadow);
    border: var(--glass-border);
    backdrop-filter: blur(10px);
    position: relative;
    transition: transform 0.3s ease;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--water-blue), var(--grass-green));
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.benefit-card {
    background-color: var(--glass-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--soft-shadow);
    border: var(--glass-border);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.benefit-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

/* --- Footer --- */
footer {
    background: linear-gradient(to right, var(--dark-blue), #3a6d94);
    color: var(--light-bg);
    padding: 25px 0;
    margin-top: 60px; /* Ensure space above footer */
    text-align: center;
    font-size: 0.9em;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer.fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
}

footer p {
    margin: 0;
}

footer a {
    color: var(--primary-blue);
}
footer a:hover {
    color: var(--white);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }

    header nav {
        flex-direction: column;
        align-items: center;
    }
    header nav ul {
        margin-top: 15px;
        flex-wrap: wrap; /* Allow wrapping on small screens */
        justify-content: center;
    }
    header nav ul li {
        margin: 5px 10px; /* Adjust spacing */
    }

    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto; /* Adjust height */
        padding-top: 30px;
    }
    .hero-content {
        order: 2; /* Text below image */
    }
     .hero-image {
        order: 1;
        margin-bottom: 30px;
    }
    .hero-image img {
        max-width: 300px;
    }

    .quick-links {
        grid-template-columns: 1fr; /* Stack links */
    }

    .founders {
        grid-template-columns: 1fr; /* Stack founders */
    }

    .pricing-options {
         grid-template-columns: 1fr; /* Stack pricing cards */
    }

    .contact-container {
        grid-template-columns: 1fr; /* Stack form and info */
    }
     .contact-info {
        margin-top: 30px;
        text-align: center;
     }

    /* Adjust blob sizes/positions for smaller screens if needed */
    .blob-1 { width: 60vw; height: 60vw; top: -5vh; left: -25vw;}
    .blob-2 { width: 55vw; height: 55vw; bottom: -2vh; right: -20vw;}

}
