/* ==========================================
   GLOBAL STYLES (DUNE THEME VIBE)
========================================== */
:root {
    --dune-text-color: #100d0d;
    --dune-bg-color: #ffffff;
    --dune-accent-color: #2a2a28;
    --dune-border-color: rgba(0,0,0,0.08);
}

body, html {
    color: var(--dune-text-color);
    background-color: var(--dune-bg-color);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Replace with your specific font */
    letter-spacing: 0.02em;
}

/* Clean up buttons to match Dune */
.button, button, input[type="submit"], .btn {
    background-color: var(--dune-accent-color) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0; /* Sharp edges */
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.1em;
    padding: 15px 30px;
    transition: opacity 0.3s ease;
}

.button:hover, button:hover, .btn:hover {
    opacity: 0.8;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    text-transform: none;
    font-weight: 400;
    margin-bottom: 20px;
}