body {
    background-color:rgb(218,255,231);
    font-family: 'Cinzel', serif;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px; /* Give the header some breathing room */
}

.names {
    display: flex;
    flex-direction: column; /* This stacks them vertically */
    align-items: center;
    color: #1E3A2F;
    font-weight: 700;
}

.name-line {
    font-size: 60px;      /* Big and bold names */
    letter-spacing: 5px;  /* Adds that "expensive" feel */
    line-height: 1;
}

.amp-line {
    font-size: 40px;      /* Make the & slightly smaller so it doesn't fight the names */
    color: #455A50;       /* Muted green for the symbol */
    margin: 10px 0;       /* Space above and below the & */
}

.sub-header {
    margin-top: 25px;
    font-size: 24px;
    color: #455A50;
    letter-spacing: 10px; /* Wide spacing for the party tag */
    border-top: 1px solid rgba(30, 58, 47, 0.2); /* Optional: thin line for class */
    padding-top: 15px;
}
/* Only the name input is visible at the start */
#attendance_input, #food_selection {
    display: none;
}




/* Container styling to match your vertical header */
.name-input, .attendance-input, .food-input {
    max-width: 450px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff; /* White card on the mint background */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 47, 0.08); /* Soft green-tinted shadow */
    text-align: center;
    border: 1px solid rgba(218, 255, 231, 0.5);
}

/* Label styling */
h1 {
    display: block;
    font-family: 'Cinzel', serif;font-weight: bold;
    text-decoration: underline;
    font-size: 22px;
    color: #1E3A2F;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* The actual text box */
.name-input input[type="text"] {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    border: 2px solid #DEFFEA;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box; /* Important for width alignment */
    transition: border-color 0.3s ease;
    font-family: 'Montserrat', sans-serif; /* Or Segoe UI */
    color: #455A50;
    text-align: center; /* Centers the typing itself */
}

/* Focus effect when user clicks the box */
.name-input input[type="text"]:focus {
    border-color: #4A7C59; /* Sage green border on click */
}

/* The Next Button */
button {
    margin-top: 25px;
    width: 100%;
    padding: 15px;
    background-color: #1E3A2F;
    color: #DEFFEA;
    border: none;
    border-radius: 8px;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #4A7C59;
    transform: translateY(-2px);
}