/* LAFwords Website Styles */

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

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

/* Typography */
h1, h2 {
    color: #2BB8D8;
    font-weight: 600;
}

h3 {
    color: #7A7A7A;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    margin-top: 0;
    color: white;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

/* Header Styles */
header {
    text-align: center;
    padding: 2rem 0;
}

.logo-container {
    text-align: left;
}

.logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

.title-background {
    background-color: #2BB8D8;
    width: 100%;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
}

/* Feature Section */
.highlight {
    background-color: #f0f7ff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Steps Section */
.steps {
    counter-reset: step-counter;
    margin: 2rem 0;
}

.step {
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.step:before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ffd85a;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* CTA and Button Styles */
.cta {
    text-align: center;
    margin: 3rem 0;
}

.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #ffd85a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #e6c34e;
}

/* Footer Styles */
footer {
    background-color: #555555;
    padding: 0 0;
    text-align: center;
    margin-top: 3rem;
}

footer p {
    font-size: 0.55rem;
    color: #bbb;
}

/* Badges and Special Elements */
.ai-badge {
    display: inline-block;
    background-color: #ffd85a;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Mailchimp Form Styles */
#mc_embed_signup {
    background: #fff;
    clear: left;
    font: 14px Helvetica, Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
