/* === Anigdha Ausbildung — Base Styles === */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CTA button hover states */
.btn-primary {
    background: #DD0000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .2s;
}

.btn-primary:hover {
    background: #1A1A1A;
}

.btn-dark {
    background: #1A1A1A;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.btn-dark:hover {
    background: #DD0000;
    color: #fff;
}
