/* LINKEASY BY MATTHIAS CLAUDIUS REEF - V2.0 */

/* === FARBSYSTEM === */
:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --text-color-light: #777777;
    --highlight-color: #a78a5e;
    --button-bg: #a78a5e;
    --button-text: #ffffff;
    --divider-color: #eeeeee;
    --light-grey: #cccccc;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #111111;
        --text-color: #eeeeee;
        --text-color-light: #aaaaaa;
        --highlight-color: #a78a5e;
        --button-bg: #d4b081;
        --button-text: #000000;
        --divider-color: #333333;
        --light-grey: #888888;
    }
}

/* === BASIS === */
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    text-align: left;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 100%;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: Montserrat, Helvetica, sans-serif;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 19px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}

h2 {
    font-size: 17px;
    line-height: 1.4;
    color: var(--text-color);
    font-weight: 400;
    padding: 0;
    margin: 0;
}

h3 {
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-color);
    font-weight: 400;
    padding: 0;
    margin: 0;
}

p {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

small {
    font-size: 16px;
    color: var(--light-grey);
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

a {
    font-weight: 400;
    text-decoration: none;
    color: var(--text-color-light);
}

a:hover {
    color: var(--highlight-color);
}

.section {
    width: 90%;
    max-width: 600px;
    position: relative;
    margin: 0 auto;
    background: var(--bg-color);
}

.social-spacing {
    margin-left: 16px;
    margin-right: 16px;
    white-space: nowrap;
    line-height: 1.5;
}

.clear {
    clear: both;
}

.avy {
    opacity: .95;
    width: 96px;
    height: 96px;
}
.avy:hover {
    opacity: 1;
}

.round {
    border-radius: 50%;
    -webkit-appearance: none;
}

/* UNDERLINE-EFFEKTE */
.underline:hover {
    border-bottom: 1px solid var(--highlight-color);
}

.preul {
    border-bottom: 1px solid var(--divider-color);
}

.center-align {
    text-align: center;
}

.white {
    color: #fff;
}

.light-grey {
    color: var(--light-grey);
}

.divider {
    border-bottom: 1px solid var(--divider-color);
}

/* BUTTON DESIGN */
.button {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    background: var(--button-bg);
    color: var(--button-text);
    opacity: .9;
    transition: opacity 0.2s ease;
    text-decoration: none;
    font-weight: 600;
    padding: 20px;
    margin: 10px auto;
    border-radius: 12px;
    position: relative;
}

/* BUTTON-HOVER – dunkler/heller je nach Modus */
@media (prefers-color-scheme: light) {
  .button:hover {
    color: var(--button-text); /* bleibt lesbar */
    background: var(--button-bg); /* gleich oder dunkler, wie du magst */
  }
}

@media (prefers-color-scheme: dark) {
  .button:hover {
    color: var(--button-text); /* bleibt lesbar */
    background: var(--button-bg); /* gleich oder heller, wie du magst */
  }
}

.button i {
    justify-self: start;
    margin-right: 20px;
}

.button span {
    justify-self: center;
    width: 100%;
    text-align: center;
}

/* SPACING */
.padding-top-50 { padding-top: 50px; }
.padding-bottom-50 { padding-bottom: 50px; }
.padding-bottom-100 { padding-bottom: 100px; }
.padding-top-25 { padding-top: 25px; }
.padding-top-15 { padding-top: 15px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 { font-size: 18px; }
    h2 { font-size: 16px; }
    p, small { font-size: 15px; }
    .button { padding: 16px; }
}
