/* Global Reset and Base Styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #222222;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: #222;
}

a {
    color: #CBB26A;
    text-decoration: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Logo */
.logo-image {
    max-height: 200px;
    width: auto;
    margin: 0 auto 2rem;
    display: block;
}

/* Headline */
.headline {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #CBB26A, #b9a255);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Form Styles */
.form-container {
    background-color: #e3dfd4;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.form-title {
    font-size: 1.4rem;
    color: #040000;
    margin-bottom: 1rem;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.email-input {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;           /* Light grey border */
    border-radius: 8px;
    background-color: #f5f5f5;        /* Light grey background */
    width: 100%;
    max-width: 400px;
    transition: border-color 0.3s, background-color 0.3s;
}

.email-input:focus {
    outline: none;
    border-color: #888;               /* Darker grey on focus */
    background-color: #fff;           /* Optional: white background on focus */
}

.submit-button {
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    color: #222;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.submit-button:hover {
    background-color: #f2f2f2;
}

.privacy-note {
    font-size: 0.9rem;
    color: #000000;
}

/* Features */
.features-section {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.section-title {
    font-size: 1.3rem;
    color: #CBB26A;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.icon {
    width: 24px;
    height: 24px;
    color: #CBB26A;
    flex-shrink: 0;
}

/* About */
.about-section {
    text-align: left;
}

.about-section p {
    font-size: 1rem;
    color: #333;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #999;
}
