/* ---------------------------------------
   custom.css für Podcast über Abtreibungserfahrungen
   Autor: Thea Amanda Kupler
   Verwendung: Hugo / Castanet Theme
-----------------------------------------*/

/* -----------------------
   Farbpalette
----------------------- */
:root {
    --color-primary: #dbb0c6; /* zartes Rosé */
    --color-accent: #f2dce6; /* helles Pastell-Lila/Blau */
    --color-text: #333333; /* Anthrazit, sanft */
    --color-background: #ffffff; /* viel Weißraum */
    --color-button: var(--color-primary);
    --color-button-text: #ffffff;
    --color-link: #dbb0c6;
    --color-link-hover: #f2dce6;
}

/* -----------------------
   Grundlayout
----------------------- */
html,
body {
    height: 100%;
}

body {
    font-family: "Lato", "DM Sans", "Inter", sans-serif;
    background: url("/img/hintergrund.png") repeat center center;
    background-size: cover;
    color: var(--color-text);
}

.startdate-container p {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}

/* -----------------------
   Banner
----------------------- */

.jumbotron {
    position: relative;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    background-image: url("/img/banner_neu.png?v=1");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0.3rem;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* -----------------------
   Überschriften
----------------------- */
h1,
h2,
h3,
h4 {
    font-family: "Dancing Script";
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

/* -----------------------
   Fließtext
----------------------- */
p {
    margin-bottom: 1.5rem;
}

.footer_copyright {
    color: rgba(0, 0, 0, 0.5);
}

/* -----------------------
   Links
----------------------- */
a {
    color: var(--color-link);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-link-hover);
}

/* -----------------------
   Buttons / Call-to-Action
----------------------- */
a.button {
    display: inline-block;
    background-color: var(--color-button);
    color: var(--color-button-text);
    border-radius: 12px;
    padding: 0.8em 1.5em;
    text-decoration: none;
    font-weight: 600;
    transition:
        background 0.3s ease,
        transform 0.2s ease;
    margin: 0.5em 0;
}

a.button:hover {
    background-color: var(--color-link-hover);
    transform: translateY(-2px);
}

/* -----------------------
   Zitate / Blockquote
----------------------- */
blockquote {
    font-style: italic;
    border-left: 3px solid var(--color-accent);
    padding-left: 1em;
    margin-left: 0;
    margin-right: 0;
    color: var(--color-text);
    background-color: var(--color-accent);
    border-radius: 8px;
    padding: 1em;
}

/* -----------------------
   Header / Startseite
----------------------- */
.header-jumbo {
    /*background: url("/img/header-aquarell.jpg") no-repeat center center;*/
    /*background-size: cover;
    text-align: center;
    padding: 6rem 2rem;
    color: var(--color-text);*/
}

.header-jumbo h1 {
    /*color: var(--color-primary);
    font-size: 3.5rem;
    margin-bottom: 1rem;*/
}

.header-jumbo p {
    /*font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;*/
}

/* -----------------------
   Section / Weißraum
----------------------- */
section {
    padding: 4rem 2rem;
}

/* -----------------------
   Formulare / Inputs
----------------------- */
input,
textarea,
select {
    border: 1px solid var(--color-accent);
    border-radius: 8px;
    padding: 0.6em 0.8em;
    font-family: "Lato", sans-serif;
    width: 100%;
    margin-bottom: 1em;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* dancing-script-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Dancing Script";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/dancing-script-v29-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* -----------------------
   Footer
----------------------- */
footer {
    background-color: var(--color-accent);
    color: var(--color-text);
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* -----------------------
   Kleinere dekorative Elemente
----------------------- */
.star,
.circle {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    margin: 0 0.2em;
}

/* -----------------------
   Responsive Anpassungen
----------------------- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .header-jumbo {
        padding: 4rem 1rem;
    }
}
