:root {
    /* HIER FARBEN ANPASSEN */
    --cp-bg: #1a1a1a;          /* Hintergrund der Seite (Dunkelgrau) */
    --cp-header: #000000;      /* Farbe des Headers (Schwarz) */
    --cp-accent: #e67e22;      /* Die "Kartoffel"-Farbe (Orange) */
    --cp-text: #ecf0f1;        /* Textfarbe (Fast Weiß) */
    --cp-card-bg: #222222;     /* Hintergrund der Boxen */
}

body {
    background-color: var(--cp-bg);
    color: var(--cp-text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* HEADER DESIGN */
.navbar {
    background-color: var(--cp-header) !important;
    border-bottom: 3px solid var(--cp-accent);
    padding: 15px 0;
}

.navbar-brand img {
    height: 50px; /* Logo Höhe anpassen */
    width: auto;
    object-fit: contain;
}

.navbar-brand span {
    color: var(--cp-accent);
    font-weight: bold;
    margin-left: 10px;
    vertical-align: middle;
}

/* BUTTONS */
.btn-potato {
    background-color: var(--cp-accent);
    color: #fff;
    border: none;
    font-weight: 600;
}
.btn-potato:hover {
    background-color: #d35400; /* Dunkleres Orange beim Drüberfahren */
    color: #fff;
}

/* KARTEN / BOXEN */
.card {
    background-color: var(--cp-card-bg);
    border: 1px solid #333;
    color: var(--cp-text);
}

/* TABELLEN (Admin) */
.table-dark {
    background-color: var(--cp-card-bg);
    --bs-table-bg: var(--cp-card-bg);
}

/* KARTOFFEL RATING */
.potato-rating-wrapper {
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 1;
}
.potato-base { color: #444; opacity: 0.5; }
.potato-fill {
    color: #f1c40f; /* Kartoffel-Gelb */
    position: absolute;
    top: 0; left: 0;
    overflow: hidden;
    white-space: nowrap;
}

/* KUNUNU STYLE HERO HEADER */
.hero-header {
    position: relative;
    height: 350px;
    background-color: #333;
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid var(--cp-accent);
}
.hero-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 0;
}
.company-logo-large {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* KONTAKT KARTE */
.contact-card img {
    width: 100%;
    aspect-ratio: 3 / 4; /* Erzwingt 3:4 Format */
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
    background-color: #333;
}

/* FLAGS */
.flag-icon { font-size: 1.2em; margin-right: 5px; }

/* ADMIN BILD VORSCHAU */
.admin-preview-img { height: 50px; margin-right: 10px; border: 1px solid #555; }