/* === Algemene buttonstijl voor Miracle Liquors === */
.button,
.btn,
a.button,
input[type="submit"],
button {
    display: inline-block;
    font-family: 'Fauna One', serif;
    /* past goed bij je huisstijl */
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    background-color: #375248;
    /* donkergroen als basis */
    padding: 12px 28px;
    border: 2px solid #375248;
    border-radius: 8px;
    /* moderne afgeronde look */
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

/* Hover effect */
.button:hover,
.btn:hover,
a.button:hover,
input[type="submit"]:hover,
button:hover {
    background-color: #d6b36a;
    /* goudaccent bij hover */
    color: #375248;
    /* donkergroen voor tekst */
    border-color: #d6b36a;
    box-shadow: 0 6px 16px rgba(55, 82, 72, 0.3);
    transform: translateY(-2px);
    /* subtiele lift */
}

/* Actieve klik-animatie */
.button:active,
.btn:active,
a.button:active,
input[type="submit"]:active,
button:active {
    transform: scale(0.97);
    box-shadow: 0 2px 6px rgba(55, 82, 72, 0.25);
}

/* Focus voor toegankelijkheid */
.button:focus,
.btn:focus,
a.button:focus,
input[type="submit"]:focus,
button:focus {
    outline: 3px solid rgba(214, 179, 106, 0.5);
    /* subtiel goud focusring */
    outline-offset: 2px;
}

/* === Variaties === */

/* Secundaire knop */
.button-secondary {
    background-color: transparent;
    color: #375248;
    border: 2px solid #375248;
}

.button-secondary:hover {
    background-color: #375248;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Gouden accentknop (voor promoties) */
.button-gold {
    background-color: #d6b36a;
    color: #375248;
    border-color: #d6b36a;
}

.button-gold:hover {
    background-color: #bfa05d;
    border-color: #bfa05d;
    color: #ffffff;
}

/* Volledige breedte voor mobiel */
@media (max-width: 768px) {

    .button,
    .btn,
    a.button,
    input[type="submit"],
    button {
        width: 100%;
        text-align: center;
    }
}