/* --- Core Page and Responsive Layout --- */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Georgia', serif; 
    color: #4a2e15; 
    background-color: #f7ede3; /* This is the parchment color from your original background image */
}

/* A main wrapper to help with vertical layout */
.responsive-page-container {
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Pushes the banner to the very bottom */
    padding: 2rem 0; /* Adds some breathing room at the top and bottom */
}

/* --- Responsive Logo --- */
.logo-container {
    width: 60%; /* This is how we make it responsive: it's a percentage of the window width */
    max-width: 250px; /* But don't let it get crazy big on huge monitors */
    min-width: 150px; /* And don't let it get unreadably small on tiny phones */
    margin-bottom: 2rem;
}

.logo-image {
    width: 100%; /* It takes up all the space its container allows */
    height: auto;
}

/* --- CSS-Based Menu Border --- */
.menu-content-border {
    width: 85%; /* Responsive width */
    max-width: 500px;
    margin: 0 auto; /* Centers the menu content */
    padding: 2.5rem;
    
    /* This creates the double lined border look entirely from CSS! */
    border: 10px double #4a2e15; 
    border-radius: 12px;
    box-sizing: border-box; /* Crucial: padding and border don't break the width */
}

/* --- Menu Typography and Layout (Inherited) --- */
.order-form {
    text-align: center;
}

h1 {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #4a2e15;
    display: inline-block;
    padding-bottom: 5px;
}

/* --- Menu Items Section (Inherited and Polished) --- */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: left; 
    padding-left: 10%; 
}

.radio-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-label div {
    display: flex;
    flex-direction: column;
}

input[type="radio"] {
    transform: scale(1.3);
    accent-color: #4a2e15; 
}

/* --- Special Section (Inherited) --- */
.special {
    background-color: rgba(255, 255, 255, 0.5); 
    font-size: 1.4rem;
    margin: 1.5rem 0;
    padding: 15px;
    border: 2px dashed #4a2e15;
    border-radius: 10px;
}

.special-label {
    justify-content: center;
}

.special strong {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8c5b3e; 
}

/* --- Size & Milk Options (Inherited) --- */
.details-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
    border-top: 1px solid #4a2e15;
    padding-top: 1.5rem;
    text-align: left;
}

.options-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1rem;
}

.options-group strong {
    font-size: 1.2rem;
    margin-bottom: 5px;
    border-bottom: 1px dashed #8c5b3e;
    padding-bottom: 3px;
}

.secondary-label {
    font-size: 1.1rem;
    font-weight: normal; 
}

/* --- Contact and Submit (Inherited) --- */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.contact-info input {
    width: 90%;
    max-width: 300px;
    padding: 12px;
    border: 2px solid #4a2e15;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #4a2e15;
}

.contact-info input::placeholder {
    color: #8c5b3e;
}

.submit-btn {
    margin-top: 1.5rem;
    padding: 12px 30px;
    background-color: #4a2e15;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #8c5b3e;
}

/* --- Pickup Time Dropdown --- */
.pickup-time-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #4a2e15;
}

.pickup-time-container strong {
    font-size: 1.2rem;
    color: #4a2e15;
}

.pickup-time-container select {
    width: 90%;
    max-width: 300px;
    padding: 12px;
    border: 2px solid #4a2e15;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: #4a2e15;
    cursor: pointer;
    text-align: center;
}