:root {
    --primary-pink: #f8d7da;
    --dark-pink: #e4a7ad;
    --text-color: #2c1810;
    --background: #fff5f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier Prime', monospace;
    background-color: var(--background);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.logo {
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease-in;
}

.logo img {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

.content {
    max-width: 600px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--dark-pink);
}

.typewriter-text p {
    font-size: 1.8rem;
    margin: 2rem 0;
    border-right: 2px solid var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

.newsletter {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--primary-pink);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter p {
    margin-bottom: 1rem;
}

form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

input[type="email"] {
    padding: 0.8rem 1rem;
    width: 300px;
    border: 2px solid var(--dark-pink);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="email"]:focus {
    border-color: var(--text-color);
}

button {
    padding: 0.8rem 1.5rem;
    background-color: var(--dark-pink);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--text-color);
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--text-color) }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    .typewriter-text p {
        font-size: 1.4rem;
    }
    
    input[type="email"] {
        width: 100%;
    }
    
    .newsletter {
        margin: 2rem 1rem;
    }
} 