/* frontpage_style.css – Frontpage im Candy/Candyshop-Stil */

/* --- Allgemeines Layout für den Seiteninhalt --- */
main {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1.5rem 2rem;
}

/* Überschriften im Candy-Stil (aber nicht global aus base_style überschreiben) */
#hero-section h2,
#aktionen-section h3,
#aktionen-section h4,
#partner-section h2,
#kontakt-oeffnungszeiten h3 {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    color: #FF69B4; /* Hot Pink */
}

/* Kleine Emoji-Überschriften noch etwas hervorheben */
#hero-section h2,
#partner-section h2 {
    text-shadow: 1px 1px 0 #ffffff;
}

/* --- Hero/Intro Section --- */
#hero-section {
    padding: 50px 25px;
    background: linear-gradient(135deg, #ffe0f5, #ffd1ec);
    /*background: linear-gradient(135deg, #faf4e1, #f7f3e8);*/
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.28);
    margin-bottom: 3rem;
}

#hero-section h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
}

.history-text {
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
    font-size: 1rem;
    color: #444;
}

/* Primärer Call-to-Action-Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 6px 16px rgba(255, 105, 180, 0.5);
    transition: all 0.25s ease-in-out;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.7);
    background: linear-gradient(135deg, #FF1493, #FF69B4);
}

/* --- Aktions-Sektion --- */
#aktionen-section {
    padding: 30px 10px 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
}

#aktionen-section h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.aktionen-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.aktion-item {
    width: 280px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    overflow: hidden;
    text-align: left;
    background-color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aktion-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.aktion-item h4 {
    padding: 12px 15px 5px 15px;
    font-size: 1.1rem;
    color: #FF69B4;
}

.aktion-item p {
    padding: 0 15px 14px 15px;
    line-height: 1.5;
    color: #555;
}

.aktion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(255, 105, 180, 0.4);
}

/* --- Partner-Sektion: Nur Überschrift & Abstand, Slider selbst bleibt unberührt --- */
#partner-section {
    margin: 3rem 0;
    text-align: center;
}

#partner-section h2 {
    margin-bottom: 1rem;
}

/* Partner-Slider-HTML/CSS/JS bleibt wie besprochen unangetastet */

/* --- Öffnungszeiten & Standort Sektion --- */
#kontakt-oeffnungszeiten {
    padding: 40px 20px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
    margin-bottom: 2rem;
}

.info-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.info-block {
    text-align: left;
    min-width: 220px;
}

.info-block h3 {
    border-bottom: 2px solid #FF69B4;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.info-block p {
    margin: 4px 0;
}

.contact-link {
    margin-top: 10px;
}

.contact-link a {
    color: #FF69B4;
    font-weight: bold;
    text-decoration: none;
}

.contact-link a:hover {
    text-decoration: underline;
}

/* --- HR-Trenner zwischen Sektionen etwas dezenter machen --- */
main > hr {
    border: none;
    border-top: 1px dashed #ffc0d9;
    margin: 2.5rem auto;
    max-width: 60%;
}

/* --- Responsiv etwas anpassen --- */
@media (max-width: 768px) {
    #hero-section {
        padding: 40px 20px;
    }

    .aktionen-grid {
        gap: 18px;
    }

    .aktion-item {
        width: 100%;
        max-width: 320px;
    }

    main {
        padding: 0 1rem 2rem;
    }
}
