/* shared styles for zowee world pages */
body {
    font-family: 'Courier New', monospace;
}

/* Brown button style matching the art gallery theme */
.brown-button {
    background-color: #6b4e3d;
    color: #f5e6d3;
    border: 2px solid #8b6e5d;
    padding: 12px 30px;
    font-size: 16px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.brown-button:hover {
    background-color: #8b6e5d;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.brown-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Back link style */
.back-link {
    position: fixed;
    top: 20px;
    left: 20px;
    color: #f5e6d3;
    text-decoration: none;
    font-size: 18px;
    z-index: 500;
    padding: 10px 15px;
    background-color: rgba(61, 40, 23, 0.9);
    border-radius: 5px;
    transition: background-color 0.3s;
    border: 2px solid #6b4e3d;
    font-family: 'Courier New', monospace;
}

.back-link:hover {
    background-color: rgba(107, 78, 61, 0.9);
}

/* Color palette variables */
:root {
    --bg-dark: #2d1b0f;
    --bg-medium: #3d2817;
    --border-brown: #6b4e3d;
    --text-light: #f5e6d3;
    --text-medium: #c9b8a3;
    --accent-brown: #d4a373;
    --button-brown: #6b4e3d;
    --button-hover: #8b6e5d;
}