/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, sans-serif;
    background: linear-gradient(180deg, #0b0f1a, #06080f);
    color: #e6e6e6;
    line-height: 1.6;
    padding: 2rem;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

/* Typografie */
h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.4rem;
}

h3 {
    margin-top: 1rem;
}

.intro {
    max-width: 600px;
    margin-bottom: 3rem;
    color: #b8c1d1;
}

/* Rezeptkarte */
.recipe {
    background-color: #0f1626;
    border-radius: 14px;
    padding: 1.8rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.recipe img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    margin-top: 1rem;
}

/* Header + Pfeil */
.recipe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.arrow {
    transition: transform 0.3s ease;
}

/* Kurzbeschreibung */
.recipe-short {
    margin-top: 0.5rem;
    color: #cfd6e0;
}

/* Details (aufklappbar) */
.recipe-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* geöffnet */
.recipe.open .recipe-details {
    max-height: 3000px;
}

.recipe.open .arrow {
    transform: rotate(180deg);
}

/* Video */
.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    margin: 1.5rem 0;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: none;
}

/* Listen */
ul, ol {
    margin-left: 1.2rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 700px) {
    body {
        padding: 1.2rem;
    }
}