/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9ecce;
    color: #333;
    line-height: 1.6;
}

/* Header and Hero Section */
.hero {
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 3px solid white;
}

h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 3em;
    margin: 0;
}

.subtitle {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Main Content */
main {
    width: 100%;
}

section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* About Section */
.about {
    background-color: white;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
}

/* Features Section */
.features {
    background-color: #ffffff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-item h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5em;
    margin-top: 0;
}

/* CTA Section */
.cta {
    background-color: #708a4a;
    color: white;
}

.button {
    background: #f9ecce;
    color: #708a4a;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s, color 0.3s;
}

.button:hover {
    background-color: #e4d9b9;
    color: #708a4a;
}

/* Signup Section */
.signup {
    background-color: #e9e9e9;
}

.signup-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.signup-form input[type="email"] {
    width: calc(100% - 22px);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.signup-form button {
    background: #708a4a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
    transition: background-color 0.3s;
}

.signup-form button:hover {
    background: #5a723c;
}

#form-message {
    margin-top: 15px;
    font-weight: bold;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

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