/* ============================================
   GLOBAL
============================================ */
body {
    background: #2F3238;
    color: #FFFFFF;
    font-family: 'Titillium Web', sans-serif;
}

/* ============================================
   HERO
============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    height: 100%;
}

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.6)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    opacity: 0.85;
}

.hero-btn {
    margin-top: 30px;
    padding: 14px 40px;
    background: #DE5E60;
    color: #fff;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   NAVIGATION
============================================ */
.main-nav {
    background: #26292E;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-desktop a {
    color: #FFFFFF;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-desktop a:hover {
    opacity: 1;
    color: #DE5E60;
}

.nav-desktop a.active {
    color: #DE5E60;
    font-weight: 600;
}

.nav-logo {
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}

/* ============================================
   BURGER MENU (nur Mobile)
============================================ */
.burger {
    width: 32px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Animation */
.burger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: #26292E;
    padding: 80px 30px;
    transition: 0.35s ease;
    z-index: 1000;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile-links {
    list-style: none;
	margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nav-mobile-links a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.nav-mobile-links a:hover {
    color: #DE5E60;
}

/* Burger sichtbar ab 992px */
@media (max-width: 992px) {
    .burger {
        display: flex;
    }
    .nav-desktop {
        display: none;
    }
}

/* ============================================
   SECTIONS
============================================ */
.section {
    padding: 120px 0;
    background: #2F3238;
}

.section-alt {
    padding: 120px 0;
    background: #26292E;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
}

/* ============================================
   ARTIST CARDS
============================================ */
.artist-card {
    background: #26292E;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    justify-content: space-between;
}

.artist-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.artist-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.artist-name {
    font-size: 22px;
    margin-bottom: 10px;
}

.artist-link {
    color: #DE5E60;
}

.artist-card p {
    flex: 1;
    opacity: 0.85;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   PRODUKTIONEN
============================================ */
.prod-card {
    background: #2F3238;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    justify-content: space-between;
}

.prod-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.prod-view {
    color: #DE5E60;
}

/* ============================================
   ABOUT
============================================ */
.about-sub {
    font-size: 28px;
    margin-bottom: 20px;
}

#about .row {
    position: relative;
}

#about .row::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 20%;
    width: 2px;
    height: 80%;
    background: #DE5E60;
    box-shadow: 0 0 12px rgba(222,94,96,0.6);
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    #about .row::before {
        display: none;
    }
}

/* ============================================
   KONTAKT
============================================ */
.contact-form-modern {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #26292E;
    border: 1px solid #3C3F45;
    border-radius: 6px;
    color: #fff;
}

.contact-btn {
    background: #DE5E60;
    padding: 14px 40px;
    border-radius: 6px;
    color: #fff;
    text-transform: uppercase;
}

/* ============================================
   DSGVO – MODERNE GLOW CHECKBOX
============================================ */
.dsgvo-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 25px;
    font-size: 14px;
    opacity: 0.9;
}

.dsgvo-modern input {
    display: none;
}

.dsgvo-modern .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #DE5E60;
    border-radius: 4px;
    position: relative;
    transition: 0.25s ease;
}

.dsgvo-modern input:checked + .checkmark {
    background: #DE5E60;
    box-shadow: 0 0 10px rgba(222,94,96,0.6);
}

.dsgvo-modern input:checked + .checkmark::after {
    content: "✔";
    position: absolute;
    top: -2px;
    left: 3px;
    font-size: 16px;
    color: #fff;
}

.dsgvo-modern a {
    color: #DE5E60;
    text-decoration: none;
}

.dsgvo-modern a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    padding: 80px 0;
    background: #26292E;
}

.footer-logo {
    font-size: 26px;
    margin-bottom: 10px;
}

.footer-copy {
    opacity: 0.7;
    margin-bottom: 30px;
}

.footer-disclaimer {
    font-size: 13px;
    opacity: 0.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
============================================ */

/* 1200px */
@media (max-width: 1200px) {
    .hero-title { font-size: 56px; }
    .section-title { font-size: 42px; }
}

/* 992px */
@media (max-width: 992px) {
    .hero-section { height: 80vh; }
    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 20px; }
    .section, .section-alt { padding: 90px 0; }
}

/* 768px */
@media (max-width: 768px) {
    .hero-section { height: 70vh; }
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 18px; }
    .section-title { font-size: 36px; margin-bottom: 40px; }
}

/* 576px */
@media (max-width: 576px) {
    .hero-section { height: 65vh; }
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .section, .section-alt { padding: 70px 0; }
    .section-title { font-size: 30px; }
    .contact-btn { width: 100%; }
}

/* 400px */
@media (max-width: 400px) {
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 15px; }
}
