:root {
    --primary-color: #4a7a91;
    --secondary-color: #e24c1e;
    --accent-color: #e24c1e;
    --text-color: #333333;
    --light-gray: #e2c8aa;
    --off-white: #b6ccce;
    --warm-accent: #f8d597;
    --nature-accent: #c5c971;
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--off-white);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-image: 
        linear-gradient(to right, rgba(74, 122, 145, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(74, 122, 145, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.dynamic-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    min-height: 3.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.changing-text {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    min-width: 10ch;
    font-weight: 500;
}

.event-info {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--primary-color);
    line-height: 1.6;
}

.event-info p:first-child {
    margin-bottom: 0.5rem;
}

.feedback-section {
    margin-top: 4rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-content {
    width: 100%;
}

.subtitle-label {
    font-size: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.feedback-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 480px) {
    body {
        padding: 1rem;
    }
    
    .dynamic-text {
        min-height: 4.5em;
    }
    
    .feedback-section {
        padding: 1rem;
        margin-top: 3rem;
    }
    
    .feedback-content h2 {
        font-size: 1.5rem;
    }
    
    .form-group textarea {
        padding: 0.5rem;
    }
} 