/* General Body & Typography */
body {
    font-family: 'Arial', sans-serif; /* A more neutral font for now, will find a more Seinfeld-esque one later if needed */
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Georgia', serif; /* Classic serif for a touch of nostalgia */
    color: #222;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 1em;
}

h3 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 1em;
}

p {
    font-size: 1.1em;
    margin-bottom: 1em;
}

/* Header & Navigation */
header {
    background-color: #222;
    color: #fff;
    padding: 1em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.logo {
    margin: 0;
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
}

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

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f0c040; /* A playful, golden-yellow accent */
}

/* CTA Button Styling */
.cta-button {
    display: inline-block;
    background-color: #f0c040;
    color: #222;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #e0b030;
    transform: translateY(-2px);
}

/* Sections General */
section {
    padding: 60px 0;
    text-align: center;
}

section:nth-child(even) {
    background-color: #e8e8e8;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-content {
    text-align: center;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3.5em;
    margin-bottom: 0.2em;
    color: #fff;
}

.hero-content .subheadline {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #eee;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Problem & Solution Sections */
.problem, .solution {
    padding: 80px 0;
}

.problem h3, .solution h3 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.solution-visual, .solution-content {
    flex: 1;
    min-width: 300px;
}

.solution-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Features Section */
.features {
    background-color: #f9f9f9;
    padding-bottom: 80px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.5em;
    color: #333;
    margin-top: 0;
}

.feature-item p {
    font-size: 1em;
    color: #666;
}

/* Social Proof Section */
.social-proof {
    background-color: #f0c040;
    color: #222;
    padding: 80px 0;
}

.social-proof h3 {
    color: #222;
}

.social-proof .waitlist-count {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.social-proof .waitlist-count span {
    color: #a00; /* A subtle red for emphasis */
}


/* Contact Form Section */
.contact {
    padding-bottom: 80px;
}

.contact form {
    max-width: 600px;
    margin: 40px auto 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f0c040;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    font-size: 0.9em;
    color: #888;
    margin-top: 5px;
    display: block;
}

/* Footer */
footer {
    background-color: #222;
    color: #eee;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    .hero .container, .solution .container {
        flex-direction: column;
    }

    .hero-content h2 {
        font-size: 2.5em;
    }

    .hero-content .subheadline {
        font-size: 1.2em;
    }

    .solution-visual, .solution-content {
        min-width: unset;
        width: 100%;
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.7em;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2em;
    }

    .hero-content .subheadline {
        font-size: 1em;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.5em;
    }

    .contact form {
        padding: 20px;
    }
}
