/* Farben:
	dunkelblau: #1E398F
	hellblau: #0068B4
	grau: #717776
	rot: #D32F2F*/
	
body {
	color: #D32F2F;
	font-family: "Open Sans", sans-serif;
}

#header {
    position: sticky;
    top: 0;
    z-index: 1000;
	display: flex;
    align-items: center;
    justify-content: space-between; /* links / rechts */
    font-size: x-large;
	color: #1E398F;
	background: #ffffff;
	height: 120px;
    padding: 0 40px;
	transition:
        height 0.3s ease,
        padding 0.3s ease,
        box-shadow 0.3s ease;
		font-size 0.3s ease,
}

#header.shrink {
    height: 80px;
    padding: 0 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	font-size: 20px;
}

#logo {
    width: 200px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background-image: url("../images/rpi_signet.svg");
    background-repeat: no-repeat;
    background-position: left center;

    padding-left: 120px;

    font-weight: 700;
    line-height: 1.05;
    font-size: 26px;

    transition:
        font-size 0.3s ease,
        line-height 0.3s ease,
        transform 0.3s ease;
}

#header.shrink #logo {
    font-size: 20px;
    line-height: 1.0;
    transform: scale(0.95);
}

#headermenu {
    display: flex;
	padding-right: 50px;
}

#headermenu ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
	font-weight: 700;
}

#headermenu ul li a {
    text-decoration: none;
	color: #1E398F;
	letter-spacing: 0.1em;
	display: inline-block; /* wichtig für transform */
    transition: 
        color 0.25s ease,
        transform 0.25s ease;
}

#header.shrink #headermenu ul li a {
    font-size: 15px;
}

#headermenu ul li a:hover {
    color: #0068B4;  
	transform: scaleX(1.08) translateY(-2px);
}

#welcome {
	color: #1E398F;
	font-size: 60px;
	font-weight: 700;
	margin-left: 50px;
    margin-top: 50px;
}

.systemnote {
    margin: 40px 50px;
    padding: 20px 25px;
    border-left: 6px solid #D32F2F; /* rot: corporate accent */
    background: rgba(211, 47, 47, 0.08); /* dezenter Rot-Ton */
    color: #1E398F; /* dunkelblau */
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 8px;
    backdrop-filter: blur(2px); /* leichter Glas-Effekt */
}

.systemnote i {
    margin-right: 10px;
    color: #D32F2F;
}

#cardbox {
	padding-left: 50px;
    padding-right: 50px;
	padding-top: 50px;
}

#cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.card {
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
	text-align: center;
	color: #1E398F;
	background: #ffffff;
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.15);
}

.card h3 {
    font-weight: 700;
	font-size: 26px;
}

.card p {
    color: #0068B4;
	font-size: 22px;
}

#content {
	margin: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

#footer {
    margin-top: 80px;
    padding: 25px 40px;
    border-top: 1px solid rgba(0,0,0,0.1); /* hauchdünne Linie */
    font-size: 14px;
    color: #717776; /* dein grauer Farbton */
}

.footer-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-right a {
    color: #717776;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-right a:hover {
    color: #0068B4; /* ganz dezenter Akzent */
}

.sep {
    margin: 0 6px;
    color: #717776;
}