/* ----------------------------------------------------
   Grundlayout
---------------------------------------------------- */

:root {
    --primary: #ff7a00;      /* Holiday4You Orange */
    --primary-dark: #e56c00; /* dunkleres Orange für Hover */
    --accent: #0099cc;       /* optionaler Akzent */
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #faf7f3;     /* warmes, helles Beige */
    --bg-grey: #f2f2f2;
}

body {
    color: var(--text-dark);
    font-family: "Helvetica", "Arial", sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

h3 {
    font-size: 1.4rem;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ----------------------------------------------------
   1) Themen-Kacheln
---------------------------------------------------- */

.themen-kacheln {
    padding: 4rem 0;
    background: var(--bg-light);
}

.kachel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.kachel {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    padding-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kachel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.kachel:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* ----------------------------------------------------
   2) Story-Sektionen
---------------------------------------------------- */

.story-section {
    padding: 4rem 0;
    background: #fff;
}

.story-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.story-row.reverse {
    flex-direction: row-reverse;
}

.story-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    color: var(--primary);
}

/* ----------------------------------------------------
   3) Neueste Beiträge Grid
---------------------------------------------------- */

.neueste-beitraege {
    padding: 4rem 0;
    background: var(--bg-grey);
}

.beitrag-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.beitrag {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beitrag img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.beitrag h3 {
    padding: 1rem;
    color: var(--text-dark);
}

.beitrag p {
    padding: 0 1rem 1rem;
}

.beitrag:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* ----------------------------------------------------
   Responsive Design
---------------------------------------------------- */

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

    .beitrag-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-row {
        flex-direction: column;
        text-align: center;
    }

    .story-row.reverse {
        flex-direction: column;
    }

    .story-image img {
        max-width: 100%;
    }
}

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

    .beitrag-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 1.6rem;
    }
}
