/* Root theme variables */
:root {
    --primary-color: #f13a11;
    --white-color: #ffffff;
    --dark-color: #171819;
    --about-bg-color: #f9f9f9;
    --gray-color: #909090;
    --link-color: #404040;
    --p-color: #666262;
    --base-font-family: 'Manrope', sans-serif;
    --font-weight-bold: bold;
    --font-weight-normal: normal;
    --font-weight-light: 300;
    --font-weight-thin: 100;
    --h1-font-size: 48px;
    --h2-font-size: 36px;
    --h3-font-size: 28px;
    --h4-font-size: 24px;
    --h5-font-size: 22px;
    --h6-font-size: 22px;
    --p-font-size: 18px;
    --base-font-size: 16px;
    --menu-font-size: 14px;
    --border-radius-large: 100%;
    --border-radius-small: 2px;
}

/* Global base styles */
body {
    background: var(--white-color);
    font-family: var(--base-font-family);
    margin: 0;
    color: var(--link-color);
}
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-thin);
    line-height: normal;
    margin: 0;
}
h1 { font-size: var(--h1-font-size); font-weight: var(--font-weight-bold); letter-spacing: -1px; text-transform: uppercase; margin: 20px 0; }
h2 { font-size: var(--h2-font-size); font-weight: var(--font-weight-bold); letter-spacing: -2px; }
h3 { font-size: var(--h3-font-size); font-weight: var(--font-weight-bold); letter-spacing: -1px; }
h4 { font-size: var(--h4-font-size); }
h5 { font-size: var(--h5-font-size); }
h6 { font-size: var(--h6-font-size); color: var(--gray-color); text-transform: uppercase; }

p { font-size: var(--p-font-size); line-height: 1.6; color: var(--p-color); margin: 0 0 1.5rem 0; }
ul { margin: 0; padding: 0; }
ul li { list-style: none; text-align: left; }

/* Section spacing */
.section { padding: 7rem 0; }
.section.bg-light { background: var(--about-bg-color); }

/* Hero Section */
.hero {
    background-image: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}
.bg-overlay {
    background: var(--dark-color);
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.85;
}

/* Feature Section (Pricing) */
.feature {
    background: var(--dark-color);
    padding: 5rem 0;
}
.feature h2, .feature h6, .about-working-hours h2 {
    color: var(--white-color);
}
.about-working-hours {
    border-left: 2px solid var(--white-color);
    padding-left: 3.5rem;
}
.about-working-hours strong {
    color: var(--white-color);
    opacity: 0.85;
}

/* Navigation Bar */
.navbar {
    background: var(--dark-color);
    padding: 1rem;
}
.navbar-brand {
    color: var(--white-color);
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    line-height: normal;
    padding-top: 0;
    white-space: nowrap;
}
.navbar-nav .nav-link {
    display: block;
    color: var(--white-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    padding: 6px 12px;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Social Icons in Navbar */
.navbar .social-icon li a {
    color: var(--white-color);
    font-size: 0.9rem;
    margin: 0 8px;
}

/* Navbar Toggler (Hamburger) */
.navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0 10px 0 0;
    width: 30px;
    height: 35px;
    outline: none;
}
.navbar-toggler .navbar-toggler-icon {
    background: var(--primary-color);
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
    transition: background 0.3s ease 0.3s;
}
.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 30px;
    height: 2px;
    transition: top 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.navbar-toggler .navbar-toggler-icon::before { top: -8px; }
.navbar-toggler .navbar-toggler-icon::after { top: 8px; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Services Section (Service Overview) */
.service-thumb img { border-radius: 2px 2px 0 0; width: 100%; }
.service-info {
    background: var(--white-color);
    box-shadow: 6px 0 38px rgba(20,20,20,0.1);
    border-radius: 0 0 2px 2px;
    position: relative;
    padding: 1rem 4rem 1rem 2rem;
}
.service-info h3 { font-size: var(--h3-font-size); }
.price-badge {
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    font-size: 16px;
    text-align: center;
}
.service-info ul li { font-size: 1rem; line-height: 1.5; color: var(--link-color); }
.service-info ul li strong { color: var(--link-color); }

/* About Me Section (ALT - überschrieben weiter unten für neues Layout!) */
.team-thumb {
    float: left;
    width: 45%;
    margin-right: 5%;
    position: relative;
}
.team-info {
    position: relative;
    overflow: hidden;
}
.team-info .social-icon {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: auto;
}
.team-info .social-icon li a {
    color: var(--link-color) !important;
    font-size: 1.4rem;
}

/* Desktop Optimization */
@media (min-width: 992px) {
    .team-info .social-icon {
        right: calc(45% - 30px); /* Präzise Ausrichtung am Bildrand */
        transform: translateX(50%);
    }
}

/* References Section */
.references-item {
    text-align: left;
    margin-bottom: 2.5rem;
}
.references-item h6 {
    text-align: left;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-color);
    display: inline-block;
}

/* Contact Form & Info */
.contact .form-control { margin-bottom: 1rem; }
.contact .form-control::placeholder { color: #999; font-size: 0.9rem; }
.contact .form-control:focus { box-shadow: none; }
#submit-button { cursor: pointer; }
.site-footer a { color: var(--link-color); text-decoration: none; }

/* Scroll offset for fixed navbar */
section[id] { scroll-margin-top: 80px; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section { padding: 5rem 0; }
    .about-working-hours { border-left: 0; padding: 22px 0 0 0; }
    .service-info ul li { font-size: 15px; }
    .nav-group .social-icon li a { font-size: 0.8rem; margin: 2px 6px; }
    .team-thumb {
        float: none;
        width: 100%;
        margin-right: 0;
    }
    .team-info .social-icon {
        position: static;
        flex-direction: row;
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .navbar-brand { font-size: 1.5rem; }
}

@media (max-width: 575px) {
    .navbar .container-fluid {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        padding: 0 15px;
    }
    .navbar-toggler {
        order: 1;
        margin: 0 5px 0 0 !important;
    }
    .navbar-brand {
        order: 2;
        margin: 0 0 0 10px !important;
        font-size: 1.4rem !important;
        white-space: normal;
        flex-shrink: 1;
    }
    .nav-group {
        order: 3;
        margin-left: auto !important;
        padding-right: 0;
    }
}

@media (max-width: 400px) {
    .navbar-brand { font-size: 1.2rem !important; }
    .price-badge { width: 50px; height: 50px; font-size: 14px; }
    .service-info ul li { font-size: 0.9rem; }
    .team-info .social-icon li a { font-size: 1.2rem; }
}

/* ------------- NEUER ABOUT-BEREICH (wie Photoshop-Vorlage) ------------- */

.team-thumb-about {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: none;
}

.team-img-about {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    display: block;
}

.about-info-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    background: #fff;
    padding: 0.6rem 0 0 0;
    min-height: 52px;
}

.about-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 auto;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #404040;
    margin: 0;
    line-height: 1.1;
}

.about-text span {
    font-size: 1.1rem;
    color: #666262;
    margin: 0;
    font-weight: 400;
    display: block;
    line-height: 1.1;
}

.about-icons {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 10px;
    margin: 0 0 0 18px;
    padding: 0;
    list-style: none;
    height: 100%;
}

.about-icons li {
    list-style: none;
    padding: 0;
}

.about-icons li a {
    color: #404040 !important;
    font-size: 1.4rem;
    transition: color 0.2s;
    display: inline-block;
    line-height: 1.2;
}

.about-icons li a:hover {
    color: #f13a11 !important;
}

/* Mobile Anpassung für neuen About-Bereich */
@media (max-width: 991px) {
    .team-thumb-about {
        max-width: 100%;
    }
    .about-info-row {
        flex-direction: column;
        align-items: flex-start;
        min-height: 0;
    }
    .about-icons {
        flex-direction: row;
        margin: 14px 0 0 0;
        align-items: flex-start;
        gap: 18px;
    }
}
.about-icons li:nth-child(2) {
    margin-top: -8px;
}
.site-footer {
    background: #fff;
    border-top: 1px solid #eee;
    font-size: 1rem;
    padding: 22px 30px 14px 30px;
}

.footer-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    color: #404040;
    font-weight: normal;
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-right a {
    color: #404040;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.2s;
}
.footer-right a:hover {
    color: #f13a11;
    text-decoration: underline;
}

@media (max-width: 700px) {
    .footer-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .footer-right, .footer-left {
        text-align: left;
        width: 100%;
    }
}
@media (max-width: 575px) {
    .navbar .social-icon {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .about-info-row {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: flex-end;
        width: 100%;
        min-height: 0;
    }
    .about-text {
        align-items: flex-start;
        flex: 1 1 auto;
    }
    .about-icons {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        margin: 0 0 0 18px;
        gap: 10px;
    }
}
/* --- Artist & Label References jeweils zentriert --- */
#references .row.text-center > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#references .row.text-center p {
    text-align: center;
    width: 100%;
    margin-bottom: 12px;
}

#references .row.text-center ul {
    text-align: center;
    padding-left: 0;
    margin: 0;
    width: 100%;
}

#references .row.text-center li {
    text-align: center;
    list-style: none;
    margin-bottom: 6px;
}
#references .row.text-center p {
    font-weight: bold;
    color: #404040;
    font-size: 1.18rem;  /* Optional: passe nach Geschmack an */
    margin-bottom: 12px;
}
