@import url(../styles/modules.css);
@import url(../styles/nav.css);

html {
    box-sizing: border-box;
    font-size: var(--font-size-base);
    height: 100%; /* wichtig für Flexbox-Layout */
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #b01f24;
    --color-sec: #FF0307;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-text: #000000;

    --font-main: 'Open Sans', sans-serif;
    --font-alt: 'Roboto', sans-serif;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-l: 24px;
    --font-size-xl: 30px;
    --font-size-sm: 14px;
    --spacing-base: 16px;
    --spacing-lg: 24px;
    --spacing-sm: 8px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-alt);
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 40px
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 16px;
}       
h4 {
    font-size: 14px;
}
h5 {
    font-size: 13px;
}
h6 {
    font-size: 12px;
}   

p {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--color-white);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh; 
}


/* Buttons */
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--color-primary), #d32f34);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--font-size-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(176, 31, 36, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: linear-gradient(135deg, #8f1a1e, #b01f24);
    box-shadow: 0 8px 25px rgba(176, 31, 36, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(176, 31, 36, 0.3);
}

.cta-button.primary {
    padding: 16px 32px;
    font-size: var(--font-size-lg);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(176, 31, 36, 0.4);
}


footer {
    text-align: center;
}