:root {
    --color-bg-dark: #57515c;
    /* Anthrazit (Bleibt für Navi & Footer) */
    --color-bg-light: #7e7c85;
    /* Dein originales Hellgrau */
    --color-accent: #848490;
    /* DEIN PINK (Bleibt genau wie vorher) */
    --color-accent-dark: #87858d;
    /* DEIN DUNKLES VIOLETT (Bleibt genau wie vorher) */
    --color-text-main: #333333;
    --color-text-light: #ffffff;
    --color-hero-bg: #66656f;
    --color-bg-black: #000000;

    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--color-text-main);
}

/* Container & Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

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

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
}

.section-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

/* Der Rest bleibt wie gewünscht (Pink mit schwarzer Schrift) */
.section-accent {
    background-color: var(--color-accent);
    color: var(--color-bg-black);
}

/* Typography */
h1,
h2,
h3 {
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.section-dark h2,
#prices-title {
    border-color: var(--color-accent);
}

#prices-title {
    font-size: 2rem;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

#prices-title p {
    margin-bottom: 0;
}

/* Glanzwerk Logo */

.glanzwerk-logo {
    max-width: 100%;
}

/* Hero */
/* WICHTIG: Hero-Bereich auf Rot umstellen */
.hero-section {
    background-color: var(--color-hero-bg);
    color: var(--color-text-main);
    padding: 120px 0;
    text-align: center;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Navigation */
nav {
    background: var(--color-bg-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #444;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-nav {
    border: 1px solid var(--color-accent);
    padding: 8px 15px;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-nav:hover {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}

.instagram-icon {
    width: 30px;
    height: 30px;
}

/* About Section Image */
.about-image-dynamic {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--color-accent);
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-image-dynamic {
        max-width: 100%;
        margin-top: 20px;
    }
}

/* Cards & Lists */
.card {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card h3 {
    color: var(--color-bg-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.card-no ul li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #999;
}

.card-yes ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent-dark);
    font-weight: bold;
}

/* Prices */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Automatische Spalten, mind. 300px breit */
    gap: 30px;
    margin-bottom: 40px;
}

/* Die einzelne Karte */
.package-card {
    background-color: #fff;
    /* Weiße Karte auf dunklem Hintergrund */
    border-radius: 8px;
    overflow: hidden;
    /* Damit das Bild an den Ecken abgerundet bleibt */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    /* Leichter Schwebe-Effekt beim Drüberfahren */
}

/* Das Bild in der Karte */
.package-img-container {
    height: 200px;
    background-color: #ddd;
    /* Fallback Farbe */
    overflow: hidden;
}

.package-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Bild füllt den Bereich aus ohne Verzerrung */
}

/* Inhalt der Karte */
.package-content {
    padding: 25px;
    flex-grow: 1;
    /* Drückt den Footer (Preis) nach unten, falls Text unterschiedlich lang ist */
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-size: 1.25rem;
    color: var(--color-bg-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 5px;
    display: inline-block;
}

.package-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.package-price {
    font-weight: bold;
    background-color: var(--color-hero-bg);
    color: var(--color-text-main);
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    margin-top: auto;
    /* Schiebt den Preis ganz nach unten */
}

/* Inklusive Box Anpassung */
.included-box {
    margin-top: 50px;
}

/* Davines Loo */
.davines-logo {
    width: 300px;
}

/* Placeholder Image */
.placeholder-img {
    width: 100%;
    height: 300px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--color-bg-dark);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #444;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--color-bg-dark);
    color: var(--color-bg-dark);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--color-bg-dark);
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    background: var(--color-bg-light);
    color: var(--color-bg-dark);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #444;
}

/* Footer */
footer {
    background: #222;
    color: #777;
    padding: 40px 0;
    text-align: center;
}

.small-text {
    font-size: 0.8rem;
    margin-top: 10px;
}

.small-text a {
    color: inherit;
    text-decoration: none;
}

.small-text a:hover {
    color: var(--color-accent);
}

/* Legal Pages Styles */
.legal-text-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.legal-text-container h1,
.legal-text-container h2,
.legal-text-container h3 {
    margin-top: 2rem;
    color: var(--color-bg-dark);
    display: block;
    border: none;
}

.legal-text-container p {
    margin-bottom: 1rem;
}

.legal-text-container ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-text-container strong {
    color: var(--color-bg-dark);
}