:root {
    --bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text: #f2f2f2;
    --gray: #888;
    --border: #333;
    --accent: #d54c64;
}


/* =========================================================
   GRUNDEINSTELLUNGEN
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: var(--accent);
}


/* =========================================================
   TRENNLINIE
   ========================================================= */

.hr-shadow {
    border: none;
    height: 2px;
    background-color: var(--accent);
    margin: 0;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

nav img {
    height: 75px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    z-index: 2;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}


/* =========================================================
   INTRO / HERO
   ========================================================= */

.intro {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0.35;
    z-index: 1;
}

.intro p {
    max-width: 700px;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    z-index: 1;
}


/* =========================================================
   HERO VIDEO
   ========================================================= */

.hero-video {
    width: 400px;
    height: 400px;
    max-width: 80vw;
    max-height: 80vw;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-bottom: 1.5rem;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
}

.btn-secondary {
    color: var(--accent);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--accent);
    color: #fff;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 5rem 2rem;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}


/* =========================================================
   GRID
   ========================================================= */

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* =========================================================
   CARDS
   ========================================================= */

.card {
    background: var(--card-bg);
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid var(--border);
    min-width: 0;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.card h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}


/* =========================================================
   HEADER ICON
   ========================================================= */

.header-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.header-icon img {
    display: block;
    max-width: 150px;
    height: auto;
}


/* =========================================================
   ARTIST CARD
   ========================================================= */

.artist-card {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
}

.artist-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.artist-image img {
    width: 220px;
    max-width: 100%;
    border-radius: 8px;
    border: 0;
}

.artist-card p {
    margin-top: 1rem;
}

.artist-card p:first-of-type {
    margin-top: 0;
}


/* =========================================================
   DETAILS
   ========================================================= */

details {
    text-align: justify;
    line-height: 1.8;
}

summary {
    cursor: pointer;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 1rem;
}

summary:hover {
    color: var(--accent);
}

details p {
    margin-top: 1rem;
}


/* =========================================================
   IFRAMES
   ========================================================= */

.card iframe {
    width: 100%;
    max-width: 100%;
    border: 0;
    margin-top: 0.5rem;
}


/* =========================================================
   SOCIAL MEDIA
   ========================================================= */

.social-title {
    text-align: center;
    margin: 2rem 0 1rem;
}

.social-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: block;
}

.social-links a img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-links a img:hover {
    transform: scale(1.1);
}


/* =========================================================
   KONTAKTFORMULAR
   ========================================================= */

#contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

#contact-form h2 {
    margin-bottom: 1rem;
}

#contact-form > p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--gray);
}

#contact-form form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}


/* =========================================================
   FORMULAR-LABELS
   ========================================================= */

#contact-form > form > label {
    font-weight: 600;
    margin-top: 0.5rem;
}


/* =========================================================
   TEXTFELDER
   ========================================================= */

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form textarea {
    width: 100%;
    padding: 1rem;

    background: var(--card-bg);

    border: 1px solid var(--border);

    color: var(--text);

    font-family: inherit;
    font-size: 1rem;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

#contact-form textarea {
    min-height: 180px;
    resize: vertical;
}


/* =========================================================
   FOKUS
   ========================================================= */

#contact-form input[type="text"]:focus,
#contact-form input[type="email"]:focus,
#contact-form input[type="tel"]:focus,
#contact-form textarea:focus {
    border-color: var(--accent);
    outline: none;
    background: #202020;

    box-shadow:
        0 0 0 1px var(--accent);
}


/* =========================================================
   INTERESSEN
   ========================================================= */

#contact-form fieldset {
    border: 1px solid var(--border);

    background: var(--card-bg);

    padding: 1.5rem;

    margin: 1rem 0 1.2rem;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 0.7rem;
}

#contact-form legend {
    padding: 0 0.5rem;

    color: var(--text);

    font-weight: 600;
}


/* =========================================================
   INTERESSEN-KACHELN
   ========================================================= */

#contact-form fieldset label {
    position: relative;

    display: flex;
    align-items: center;

    padding: 0.9rem 1rem;

    margin: 0;

    border: 1px solid var(--border);

    background: #151515;

    color: var(--gray);

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   CHECKBOX AUSBLENDEN
   ========================================================= */

#contact-form fieldset input[type="checkbox"] {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


/* =========================================================
   HOVER
   ========================================================= */

#contact-form fieldset label:hover {
    border-color: var(--accent);

    background:
        rgba(213, 76, 100, 0.08);

    color: var(--text);

    transform:
        translateY(-2px);

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   AUSGEWÄHLT
   ========================================================= */

#contact-form fieldset label:has(
    input[type="checkbox"]:checked
) {
    border-color: var(--accent);

    background:
        rgba(213, 76, 100, 0.15);

    color: var(--text);

    box-shadow:
        0 0 0 1px var(--accent),
        0 4px 14px rgba(213, 76, 100, 0.12);
}


/* =========================================================
   AUSGEWÄHLT + HOVER
   ========================================================= */

#contact-form fieldset label:has(
    input[type="checkbox"]:checked
):hover {
    background:
        rgba(213, 76, 100, 0.22);

    transform:
        translateY(-2px);
}


/* =========================================================
   BUDGET-BEREICH
   ========================================================= */

.budget-section {
    margin: 1rem 0 1.5rem;

    padding: 1.5rem;

    border: 1px solid var(--border);

    background: var(--card-bg);
}

.budget-section > label:first-child {
    display: block;

    margin-bottom: 1.5rem;

    color: var(--text);

    font-weight: 600;
}


/* =========================================================
   SLIDER
   ========================================================= */

.budget-slider {
    display: flex;

    align-items: center;

    gap: 1rem;

    width: 100%;
}

.budget-min,
.budget-max {
    flex-shrink: 0;

    color: var(--gray);

    font-size: 0.85rem;

    white-space: nowrap;
}

#budget {
    flex: 1;

    width: 100%;

    height: 4px;

    appearance: none;

    -webkit-appearance: none;

    background: var(--border);

    border-radius: 0;

    cursor: pointer;
}


/* =========================================================
   SLIDER - CHROME / EDGE / SAFARI
   ========================================================= */

#budget::-webkit-slider-thumb {
    appearance: none;

    -webkit-appearance: none;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: var(--accent);

    border: 2px solid var(--text);

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

#budget::-webkit-slider-thumb:hover {
    transform: scale(1.15);

    box-shadow:
        0 0 0 5px rgba(213, 76, 100, 0.15);
}


/* =========================================================
   SLIDER - FIREFOX
   ========================================================= */

#budget::-moz-range-thumb {
    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: var(--accent);

    border: 2px solid var(--text);

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

#budget::-moz-range-thumb:hover {
    transform: scale(1.15);

    box-shadow:
        0 0 0 5px rgba(213, 76, 100, 0.15);
}


/* =========================================================
   AKTUELLER BUDGETWERT
   ========================================================= */

#budget-value {
    display: block;

    margin-top: 1rem;

    text-align: center;

    color: var(--accent);

    font-size: 1.1rem;

    font-weight: 600;
}


/* =========================================================
   BUDGET "NOCH OFFEN"
   ========================================================= */

.budget-open {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 1rem;

    padding: 0.8rem 1rem;

    border: 1px solid var(--border);

    background: #151515;

    color: var(--gray);

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.budget-open:hover {
    border-color: var(--accent);

    background:
        rgba(213, 76, 100, 0.08);

    color: var(--text);
}

.budget-open input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.budget-open:has(input:checked) {
    border-color: var(--accent);

    background:
        rgba(213, 76, 100, 0.15);

    color: var(--text);

    box-shadow:
        0 0 0 1px var(--accent);
}


/* =========================================================
   ABSENDEN
   ========================================================= */

#contact-form button {
    align-self: center;

    margin-top: 1rem;

    padding: 0.9rem 2rem;

    background: var(--accent);

    color: #fff;

    border: 2px solid var(--accent);

    font-family: inherit;

    font-size: 1rem;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.3s ease;
}

#contact-form button:hover {
    background: transparent;

    color: var(--accent);

    box-shadow:
        0 0 12px rgba(213, 76, 100, 0.2);
}

#contact-form button:active {
    transform:
        translateY(1px);
}


/* =========================================================
   HONEYPOT
   ========================================================= */

.honeypot {
    position: absolute;

    left: -9999px;

    width: 1px;
    height: 1px;

    overflow: hidden;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 3rem 2rem;

    text-align: center;

    color: var(--gray);

    font-size: 0.9rem;
}

footer h3 {
    color: var(--text);

    margin-bottom: 0.5rem;
}

footer hr {
    border: none;

    border-top: 1px solid var(--border);

    margin: 1rem 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 768px) {

    nav {
        flex-direction: column;

        gap: 1.5rem;

        padding: 1.5rem 1rem;
    }

    nav ul {
        gap: 1rem;

        flex-wrap: wrap;

        justify-content: center;
    }

    nav img {
        height: 60px;
    }


    /* HERO */

    .intro {
        min-height: 80vh;

        padding: 2rem 1rem;
    }

    .hero-video {
        width: 300px;
        height: 300px;
    }

    .intro h1 {
        font-size:
            clamp(2rem, 9vw, 3rem);
    }

    .intro p {
        font-size: 1rem;
    }


    /* GRID */

    .grid {
        grid-template-columns: 1fr;

        padding: 0 1rem;

        gap: 2rem;
    }


    /* SECTION */

    .section {
        padding: 4rem 1rem;
    }


    /* CARDS */

    .card {
        padding: 1.5rem;
    }


    /* KONTAKT */

    #contact-form {
        padding: 4rem 1rem;
    }


    /* INTERESSEN */

    #contact-form fieldset {
        grid-template-columns: 1fr;
    }


    /* BUDGET */

    .budget-section {
        padding: 1.2rem;
    }

}


/* =========================================================
   KLEINE SMARTPHONES
   ========================================================= */

@media (max-width: 480px) {

    nav ul {
        flex-direction: column;

        gap: 0.7rem;
    }


    /* BUTTONS */

    .buttons {
        flex-direction: column;

        width: 100%;

        max-width: 300px;
    }

    .btn {
        width: 100%;

        text-align: center;
    }


    /* SOCIAL */

    .social-links {
        gap: 0.7rem;
    }

    .social-links a img {
        width: 45px;
        height: 45px;
    }


    /* HERO */

    .hero-video {
        width: 240px;
        height: 240px;
    }


    /* KONTAKT */

    #contact-form fieldset {
        padding: 1rem;
    }

    #contact-form fieldset label {
        padding: 0.85rem;
    }


    /* BUDGET */

    .budget-slider {
        gap: 0.5rem;
    }

    .budget-min,
    .budget-max {
        font-size: 0.75rem;
    }

}