:root {
    --primary-color: #D3A130;
    /* Gold/Senfgelb */
    --secondary-color: #667573;
    /* Dunkles Schiefergrau/Teal */
    --accent-color: #AD302A;
    /* Dunkelrot/Burgunder */
    --background-color: #F5EFEA;
    /* Helles Beige/Creme */
    --text-color: #333333;
    --font-main: 'Roboto', sans-serif;
    --font-accent: 'Dancing Script', cursive;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: var(--primary-color);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 30px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-color);
}

main {
    flex: 1;
    /* Pushes footer down */
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

h1,
h2,
h3 {
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* Dashboard/Card Styles */
/* Dashboard/Card Styles */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: none;
    /* Remove default top border for cleaner look */
    /* Optional: subtle accent border on top if desired, otherwise cleaner without */
    /* border-top: 4px solid var(--primary-color); */
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.data-item {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #eee;
}

.label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    /* Slightly darker for better readability */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Skan Park Accent */
.script-accent {
    font-family: var(--font-accent);
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: -1rem;
    margin-bottom: 2rem;
    display: block;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    /* Slightly larger padding */
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fdfdfd;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(211, 161, 48, 0.15);
    /* Soft focus ring */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(211, 161, 48, 0.2);
}

.btn:hover {
    background-color: #bfa05d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(211, 161, 48, 0.3);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(211, 161, 48, 0.2);
}