/* 1. Typography & Reset */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --primary: #4B5320; /* Dark Moss Green */
    --accent: #C5A059; /* Gold */
    --bg: #F9F9F5;     /* Cream */
    --surface: #FFFFFF;
    --text-main: #1C1C1E;
    --text-sub: #8E8E93;
    --shadow: 0 8px 30px rgba(0,0,0,0.06); /* Soft Apple Shadow */
    --radius: 18px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    background-color: var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* Native Font */
    color: var(--text-main);
    margin: 0;
    padding: 20px;
    padding-bottom: 80px; /* Space for scroll */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif; /* The Royal Font */
    color: var(--primary);
    margin-top: 0;
}

/* 2. Components */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.back-btn {
    text-decoration: none;
    color: var(--primary);
    font-size: 1.1em;
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 20px;
}
.back-btn::before { content: "‹"; font-size: 1.5em; margin-right: 5px; position: relative; top: -2px; }

.card {
    background: var(--surface);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

.btn-main {
    background: var(--primary);
    color: white;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
}

/* 3. Dashboard Grid */
.grid-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}
.menu-item {
    background: var(--surface);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 110px;
}
.menu-icon { font-size: 28px; margin-bottom: 8px; }

/* 4. Form Elements (Apple Style) */
input[type="text"], input[type="number"], textarea {
    width: 100%;
    padding: 16px;
    background: #F2F2F7; /* Apple Grey Input */
    border: none;
    border-radius: 12px;
    font-size: 17px;
    margin-bottom: 15px;
    font-family: inherit;
}
input:focus, textarea:focus { outline: 2px solid var(--accent); background: #fff; }

/* 5. Custom Utilities */
.pill {
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    vertical-align: middle;
}