/* =========================================================
   R.ANGLE – PERSONAL / SHOOTING
   index_perönal.css
   ========================================================= */


/* =========================================================
   GRUNDWERTE
   ========================================================= */

:root {
    --bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text: #f2f2f2;
    --gray: #888;
    --border: #333;
    --accent: #d54c64;
}


/* =========================================================
   RESET
   ========================================================= */

 {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   LINKS
   ========================================================= */

a {
    color: var(--text);
    text-decoration: none;
    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

a:hover {
    color: var(--accent);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

nav {
    width: 100%;
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 1rem 2rem;

    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

nav > a {
    display: flex;
    align-items: center;
}

nav img {
    width: 75px;
    height: auto;
    display: block;
}

nav ul {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 2rem;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    font-weight: 600;
    letter-spacing: 0.03em;
}

nav ul li a:hover {
    color: var(--accent);
}


/* =========================================================
   ALLGEMEINE SECTIONS
   ========================================================= */

.section {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 5rem 2rem;
}

.section h2,
#contact-form h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 700;

    margin-bottom: 1rem;
}

.section > p {
    color: var(--gray);
}


/* =========================================================
   GRID
   ========================================================= */

.grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 2rem;

    width: 100%;
}


/* =========================================================
   CARDS
   ========================================================= */

.card {
    background: var(--card-bg);

    border: 1px solid var(--border);
    border-radius: 4px;

    padding: 2rem;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.card:hover {
    border-color: var(--accent);

    transform: translateY(-3px);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.35);
}

.card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;

    margin-bottom: 1rem;
}

.card p {
    color: var(--text);
}


/* =========================================================
   SHOOTING-KONZEPT
   ========================================================= */

.shooting-konzept {
    list-style: none;
}

.shooting-konzept li {
    margin-bottom: 2rem;
}

.shooting-konzept li:last-child {
    margin-bottom: 0;
}

.shooting-konzept strong {
    display: block;

    color: var(--text);

    font-size: 1.1rem;
    font-weight: 600;

    margin-bottom: 0.5rem;
}

.shooting-konzept p {
    color: #d0d0d0;

    line-height: 1.7;
}


/* =========================================================
   KUNDENKARTE
   ========================================================= */

.customer-card {
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}


/* Bildbereich */

.customer-card .header-icon {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 1.5rem;
}


/* Kundenbild
   Wichtig:
   Die allgemeine .card img-Regel wird hier überschrieben.
*/

.customer-card .header-icon img {
    display: block;

    width: 250px;
    max-width: 100%;
    height: auto;

    margin: 0 auto;

    border-radius: 3px;

    object-fit: cover;
}


/* Text */

.customer-card p {
    max-width: 400px;

    margin: 0 auto;

    color: var(--text);

    text-align: center;
}


/* Button-Bereich */

.customer-card .buttons {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-block;

    padding: 0.8rem 1.5rem;

    border: 1px solid var(--border);
    border-radius: 3px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: #fff;

    border-color: var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);

    border-color: var(--accent);
}

.btn-secondary {
    background: transparent;
    color: var(--text);

    border-color: var(--border);
}

.btn-secondary:hover {
    color: var(--accent);

    border-color: var(--accent);
}


/* =========================================================
   DISCORD / TEAMS LINKS
   ========================================================= */

.card a img {
    display: inline-block;

    width: 50px;
    height: 50px;

    object-fit: contain;

    margin: 0 0.4rem;

    border-radius: 3px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.card a:hover img {
    transform: scale(1.08);
    opacity: 0.8;
}


/* =========================================================
   KONTAKTFORMULAR
   ========================================================= */

#contact-form {
    width: 100%;
    max-width: 700px;

    margin: 0 auto;

    padding: 5rem 2rem;
}

#contact-form > p {
    color: var(--gray);

    margin-bottom: 2rem;
}


/* Formular */

#contact-form form {
    width: 100%;
    max-width: 600px;

    margin: 0 auto;
}


/* Labels */

#contact-form label {
    display: block;

    margin-bottom: 0.5rem;

    font-weight: 600;
}


/* Inputs */

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form textarea {
    width: 100%;

    padding: 0.9rem 1rem;

    margin-bottom: 1.5rem;

    background: #111;

    color: var(--text);

    border: 1px solid var(--border);
    border-radius: 3px;

    font-family: "Montserrat", sans-serif;
    font-size: 1rem;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* Focus */

#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);

    box-shadow:
        0 0 0 2px rgba(213, 76, 100, 0.15);
}


/* Textarea */

#contact-form textarea {
    min-height: 180px;

    resize: vertical;

    line-height: 1.6;
}


/* =========================================================
   CHECKBOXEN / INTERESSEN
   ========================================================= */

#contact-form fieldset {
    border: 0;

    margin: 0 0 2rem;
    padding: 0;
}

#contact-form fieldset legend {
    width: 100%;

    margin-bottom: 1rem;

    font-weight: 600;
}


/* Checkbox Grid */

#contact-form fieldset {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0.8rem;
}


/* Checkbox Label */

#contact-form fieldset label {
    position: relative;

    display: flex;
    align-items: center;

    margin: 0;

    padding: 0.9rem 1rem;

    background: #111;

    border: 1px solid var(--border);
    border-radius: 3px;

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


/* Checkbox */

#contact-form fieldset input[type="checkbox"] {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}


/* Checkbox Text */

#contact-form fieldset label span {
    width: 100%;
}


/* Hover */

#contact-form fieldset label:hover {
    border-color: var(--accent);
}


/* Checked */

#contact-form fieldset label:has(input[type="checkbox"]:checked) {
    background: rgba(213, 76, 100, 0.12);

    border-color: var(--accent);

    color: var(--accent);
}


/* =========================================================
   BUDGET-BEREICH
   ========================================================= */

.budget-section {
    margin: 2rem 0;
}

.budget-section > label {
    margin-bottom: 1rem;
}


/* Slider-Bereich */

.budget-slider {
    display: flex;

    align-items: center;

    gap: 1rem;

    width: 100%;
}


/* Min / Max */

.budget-min,
.budget-max {
    flex-shrink: 0;

    color: var(--gray);

    font-size: 0.9rem;

    white-space: nowrap;
}


/* Range */

#budget {
    flex: 1;

    width: 100%;

    margin: 0;

    padding: 0;

    background: transparent;

    border: none;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}


/* Chrome / Edge / Safari */

#budget::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;

    background: var(--border);

    border-radius: 5px;
}

#budget::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;

    width: 18px;
    height: 18px;

    margin-top: -6.5px;

    background: var(--accent);

    border: none;
    border-radius: 50%;

    cursor: pointer;
}


/* Firefox */

#budget::-moz-range-track {
    width: 100%;
    height: 5px;

    background: var(--border);

    border-radius: 5px;
}

#budget::-moz-range-thumb {
    width: 18px;
    height: 18px;

    background: var(--accent);

    border: none;
    border-radius: 50%;

    cursor: pointer;
}


/* Budget-Ausgabe */

#budget-value {
    display: block;

    margin-top: 1rem;

    color: var(--accent);

    font-weight: 600;

    text-align: center;
}


/* =========================================================
   BUDGET – NOCH OFFEN
   ========================================================= */

.budget-open {
    display: flex !important;

    align-items: center;

    gap: 0.7rem;

    margin-top: 1rem;

    cursor: pointer;
}

.budget-open input[type="checkbox"] {
    width: 18px;
    height: 18px;

    margin: 0;

    accent-color: var(--accent);

    cursor: pointer;
}

.budget-open span {
    color: var(--gray);

    font-size: 0.9rem;
}


/* =========================================================
   ABSENDEN
   ========================================================= */

#contact-form button[type="submit"] {
    width: 100%;

    padding: 1rem 1.5rem;

    margin-top: 1rem;

    background: var(--accent);

    color: #fff;

    border: 1px solid var(--accent);
    border-radius: 3px;

    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.2s ease;
}

#contact-form button[type="submit"]:hover {
    background: transparent;

    color: var(--accent);

    border-color: var(--accent);

    transform: translateY(-2px);
}


/* =========================================================
   HONEYPOT
   ========================================================= */

.honeypot {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;
}


/* =========================================================
   VIDEO
   ========================================================= */

.hero-video {
    display: block;

    width: 400px;
    height: 400px;

    max-width: 100%;

    margin: 0 auto 2rem;

    object-fit: cover;

    border-radius: 50%;
}


/* =========================================================
   ALLGEMEINE BILDER
   ========================================================= */

.card img,
.artist-card img {
    width: 100%;
    height: auto;

    display: block;

    margin-bottom: 1.5rem;

    border-radius: 3px;
}


/* =========================================================
   FOOTER / CENTER-INHALTE
   ========================================================= */

footer {
    width: 100%;

    padding: 3rem 2rem;

    text-align: center;

    color: var(--gray);

    border-top: 1px solid var(--border);
}

footer h3 {
    color: var(--text);

    margin-bottom: 0.5rem;
}

footer p {
    margin-bottom: 0.5rem;
}


/* Falls weiterhin <center> im HTML verwendet wird */

center {
    display: block;

    width: 100%;

    padding: 3rem 2rem;

    color: var(--gray);

    text-align: center;

    border-top: 1px solid var(--border);
}

center h3 {
    color: var(--text);
}

center hr {
    max-width: 700px;

    margin-left: auto !important;
    margin-right: auto !important;
}


/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.social-links {
    width: 100%;

    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 1rem;

    padding: 2rem;

    border-top: 1px solid var(--border);
}

.social-links a {
    color: var(--gray);

    font-size: 0.9rem;

    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent);
}


/* =========================================================
   HORIZONTALE LINIE
   ========================================================= */

.hr-shadow {
    border: none;

    border-top: 1px solid var(--accent);

    margin: 2rem auto;

    max-width: 700px;

    opacity: 0.7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .hero-video {
        width: 300px;
        height: 300px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    body {
        font-size: 15px;
    }


    /* Navigation */

    nav {
        min-height: auto;

        padding: 1rem;

        flex-direction: column;

        gap: 1rem;
    }

    nav img {
        width: 60px;
    }

    nav ul {
        gap: 1rem;

        flex-wrap: wrap;

        justify-content: center;
    }


    /* Sections */

    .section {
        padding: 3rem 1rem;
    }

    .section h2,
    #contact-form h2 {
        font-size: 1.8rem;
    }


    /* Cards */

    .card {
        padding: 1.5rem;
    }


    /* Kundenkarte */

    .customer-card .header-icon img {
        width: 220px;
    }


    /* Video */

    .hero-video {
        width: 240px;
        height: 240px;
    }


    /* Kontakt */

    #contact-form {
        padding: 3rem 1rem;
    }


    /* Checkboxen */

    #contact-form fieldset {
        grid-template-columns: 1fr;
    }


    /* Budget */

    .budget-slider {
        gap: 0.5rem;
    }

    .budget-min,
    .budget-max {
        font-size: 0.8rem;
    }


    /* Social */

    .social-links {
        padding: 1.5rem 1rem;

        gap: 0.7rem;
    }
}


/* =========================================================
   SEHR KLEINE HANDYS
   ========================================================= */

@media (max-width: 400px) {

    nav ul {
        gap: 0.7rem;
    }

    .card {
        padding: 1.2rem;
    }

    .hero-video {
        width: 210px;
        height: 210px;
    }

    .customer-card .header-icon img {
        width: 200px;
    }

    .budget-min,
    .budget-max {
        font-size: 0.75rem;
    }
}