/* =========================================================
   R.ANGLE – PERSONAL / SHOOTING

   Zusammengeführt aus index_personal.css + workspace CSS
   ========================================================= */

:root {
    --bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text: #f2f2f2;
    --gray: #888;
    --border: #333;
    --accent: rgb(213, 76, 100);
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================================
   GRUNDLAYOUT
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}

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: 1.5rem 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 {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    z-index: 1;
}

nav ul li {
    list-style: none;
}

nav ul li a,
nav a {
    font-weight: 600;
    letter-spacing: 0.03em;
}

nav ul li a:hover,
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;
}

.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;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    display: block;
    width: 400px;
    height: 400px;
    max-width: 100%;
    margin: 0 auto 2rem;
    object-fit: cover;
    border-radius: 50%;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border: 2px solid var(--accent);
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    background: none;
    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(--accent);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: #fff;
}


.news-read-more {

    display:inline-block;

    margin-top:20px;

    color:#d54c64;

    font-size:14px;

    text-decoration:none;

    letter-spacing:1px;

    cursor:pointer;

    transition:0.3s ease;

}


.news-read-more:hover {

    color:#ffffff;

    padding-left:8px;

}



/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.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: 3rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================================
   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;
    text-align: left;
}

.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;
    text-align: center;
}

.card p {
    color: var(--text);
    margin-bottom: 1rem;
}

.card a {
    color: var(--accent);
}

.card a:hover {
    color: var(--text);
}

.card img,
.artist-card img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
    border-radius: 3px;
}


/* =========================================================
   HEADER ICON
   ========================================================= */

.header-icon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
}

.header-icon img {
    max-width: 150px;
    width: auto;
    height: auto;
    display: block;
}


/* =========================================================
   CUSTOMER CARD
   ========================================================= */

.customer-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.customer-card .header-icon {
    margin-bottom: 1.5rem;
}

.customer-card .header-icon img {
    display: block;
    width: 250px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 3px;
    object-fit: cover;
}

.customer-card p {
    max-width: 400px;
    margin: 0 auto 1rem;
    color: var(--text);
    text-align: center;
}

.customer-card .buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* =========================================================
   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);
}

/* =========================================================
   NEWS
   ========================================================= */

.news-modal {

    display:none;

    position:fixed;

    z-index:9999;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,0.85);

}



.news-modal-content {

    background:#1a1a1a;

    color:#f2f2f2;

    width:80%;

    max-width:900px;

    margin:5% auto;

    padding:40px;

    position:relative;

    max-height:80vh;

    overflow-y:auto;

}



.news-close {

    position:absolute;

    right:25px;

    top:15px;

    font-size:32px;

    cursor:pointer;

    color:#d54c64;

}



.news-modal-image {

    width:100%;

    margin-bottom:30px;

}

/* =========================================================
   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;
}


/* =========================================================
   CARD LINKS / ICONS
   ========================================================= */

.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;
}


/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.social-links {
    width: 100%;
    margin: 2rem 0;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent);
}

.social-links a img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.social-links a img:hover {
    transform: scale(1.3);
}


/* =========================================================
   KONTAKTFORMULAR
   ========================================================= */

.contact-form {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

#contact-form > p {
    color: var(--gray);
    margin-bottom: 2rem;
}

#contact-form form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}


/* =========================================================
   KONTAKT LABELS
   ========================================================= */

#contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}


/* =========================================================
   KONTAKT EINGABEFELDER
   ========================================================= */

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form textarea,
.contact-form input,
.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;
}

#contact-form input[type="text"]:focus,
#contact-form input[type="email"]:focus,
#contact-form input[type="tel"]:focus,
#contact-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(213, 76, 100, 0.15);
    outline: none;
}

#contact-form textarea,
.contact-form textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.6;
}


/* =========================================================
   INTERESSEN / PROJEKT-AUSWAHL
   ========================================================= */

#contact-form fieldset {
    border: 0;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

#contact-form fieldset legend {
    width: 100%;
    margin-bottom: 1rem;
    font-weight: 600;
}

#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;
}

#contact-form fieldset input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#contact-form fieldset label span {
    width: 100%;
}

#contact-form fieldset label:hover {
    border-color: var(--accent);
}

#contact-form fieldset label:has(input[type="checkbox"]:checked) {
    background: rgba(213, 76, 100, 0.12);
    border-color: var(--accent);
    color: var(--accent);
}


/* =========================================================
   BUDGET
   ========================================================= */

.budget-section {
    margin: 2rem 0;
}

.budget-section > label {
    margin-bottom: 1rem;
}

.budget-slider {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.budget-min,
.budget-max {
    flex-shrink: 0;
    color: var(--gray);
    font-size: 0.9rem;
    white-space: nowrap;
}


/* =========================================================
   BUDGET SLIDER
   ========================================================= */

#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 ANZEIGE
   ========================================================= */

#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-BUTTON
   ========================================================= */

#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);
}

.contact-form button {
    align-self: center;
}


/* =========================================================
   HONEYPOT
   ========================================================= */

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

/* =========================================================
   NEWS SECTION
   ========================================================= */

.news-section {

    width:100%;

    max-width:1100px;

    margin:0 auto;

    padding:5rem 2rem;

}


.news-section h2 {

    font-family:"Playfair Display", serif;

    font-size:2.2rem;

    text-align:center;

    margin-bottom:2.5rem;

}


/* =========================================================
   NEWS GRID
   ========================================================= */

#rangle-news {

    width:100%;
    max-width:1100px;
    margin:0 auto;

}


.news-grid {

    display:grid;

    grid-template-columns:
        repeat(3,minmax(280px,1fr));

    gap:2rem;

}

.rangle-news {

    width:100%;

}



/* News Grid */


.news-grid {

    grid-template-columns:
        repeat(2,1fr);

}



/* News Karte */

.news-card {

    background:var(--card-bg);

    border:1px solid var(--border);

    border-radius:4px;

    overflow:hidden;

    transition:.3s ease;

}



.news-card:hover {

    border-color:var(--accent);

    transform:translateY(-3px);

}



/* Beitragsbild */

.news-image {

    width:100%;

    aspect-ratio:1 / 1;

    object-fit:cover;

    display:block;

}



/* Text */

.news-content {

    padding:1.5rem;

}



.news-content h3 {

    font-family:"Playfair Display", serif;

    margin-bottom:.8rem;

}



.news-date {

    color:var(--gray);

    font-size:.85rem;

}



.news-text {

    margin-top:1rem;

}



.news-button {

    display:inline-block;

    margin-top:1rem;

    color:var(--accent);

}


.news-button:hover {

    color:var(--text);

}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
    width: 100%;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
}

footer h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

footer p {
    margin-bottom: 0.5rem;
}


/* =========================================================
   CENTER / ALTE ELEMENTE
   ========================================================= */

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;
}


/* =========================================================
   TRENNLINIE
   ========================================================= */

.hr-shadow {
    border: none;
    height: 2px;
    background-color: var(--accent);
    position: relative;
    margin: 0;
}


/* =========================================================
   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;
    }

    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;
    }

    .intro {
        padding: 1.5rem 1rem;
    }

    .intro h1 {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .intro p {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section h2,
    #contact-form h2 {
        font-size: 1.8rem;
    }

    .card {
        padding: 1.5rem;
    }

    .header-icon img {
        max-width: 130px;
    }

    .customer-card .header-icon img {
        width: 220px;
    }

    .hero-video {
        width: 240px;
        height: 240px;
    }

    #contact-form {
        padding: 3rem 1rem;
    }

    #contact-form fieldset {
        grid-template-columns: 1fr;
    }

    .budget-slider {
        gap: 0.5rem;
    }

    .budget-min,
    .budget-max {
        font-size: 0.8rem;
    }

    .social-links {
        padding: 1.5rem 1rem;
        gap: 0.7rem;
    }
}


/* =========================================================
   SEHR KLEINE BILDSCHIRME
   ========================================================= */

@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;
    }
}


@media(max-width:900px){

    #rangle-news {

        grid-template-columns:
            repeat(2,1fr);

    }

}

@media(max-width:600px){

    #rangle-news {

        grid-template-columns:
            1fr;

    }

}