/* impressum_style.css – CandyShop Pink Theme */

main {
    max-width: 800px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 1.2rem;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.25);
    color: #333;
    font-family: 'Roboto', sans-serif;
}

/* Abschnittscontainer */
.imp-section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed #ffb6c1; /* heller Candy-Rosa-Strich */
}

/* Überschriften */
.imp-section h2 {
    color: #FF69B4; /* Hot Pink */
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    text-shadow: 1px 1px 0 #fff;
}

/* Text / Adressen */
.imp-section p,
.imp-section address {
    line-height: 1.6;
    font-style: normal;
    margin: 0.3rem 0;
}

/* Links */
.imp-section a {
    color: #FF69B4;
    text-decoration: none;
    font-weight: 500;
}

.imp-section a:hover {
    text-decoration: underline;
}

/* Datum unten */
.imp-date {
    font-size: 0.9rem;
    text-align: right;
    opacity: 0.7;
    margin-top: 2rem;
}

/* Kleine Candy-Deko-Icons vor Überschriften */
.imp-section h2::before {
    content: "🍭 ";
}

/* Responsiv etwas luftiger */
@media (max-width: 600px) {
    main {
        padding: 1.2rem;
    }
}
