/* 1. Set up your variables (The "Database" of your CSS) */
:root {
    --bg-color: #121212;       /* Very dark grey, almost black */
    --text-color: #E0E0E0;     /* Off-white for readability */
    --accent-color: #A67C52;   /* A muted coffee bean brown */
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* 2. Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 3. The Layout Engine */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-stack);
    height: 100vh;              /* Full Viewport Height */
    display: flex;              /* Activates Flexbox */
    justify-content: center;    /* Centers horizontally */
    align-items: center;        /* Centers vertically */
    text-align: center;
}

#menu-container {
    /* The Border */
    border: 2px solid #A67C52; 
    border-radius: 12px;
    
    /* Layout Magic */
    width: fit-content;  /* Shrink-wrap the box to the text */
    max-width: 90%;      /* Safety net so it doesn't hit mobile screen edges */
    margin: 3rem auto 0; /* Top: 3rem, Left/Right: Auto (Center), Bottom: 0 */
    
    /* Spacing */
    padding: 2rem;       /* Equal padding on all 4 sides */
    
    /* Text styling */
    text-align: center;
}

/* 4. Typography */
h1 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;     /* Adds that premium "spaced out" look */
    font-size: clamp(1.5rem, 5vw, 4rem); /* Dynamic resizing */
    margin-bottom: 1rem;
}


.accent {
    display: inline-block;       /* Allows us to move it precisely */
    color: var(--accent-color);
    font-weight: 300;
    font-size: 0.7em;            /* Shrunk it slightly more for elegance */
    vertical-align: middle;      /* Gets us to the lowercase middle */
    transform: translateY(-15%); /* The "All Caps" correction: Lifts it higher */
}

.tagline {
    font-family: "Caveat Brush", cursive, serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.8;               /* Slight transparency for elegance */
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    font-style: normal;
    color: var(--accent-color);
}