:root {
    /* Einheitliches Gold für alle Buttons */
    --color-gold: #c5a059;
    --color-gold-hover: #b38e4a;
    
    --color-dark: #1a1a24;
    --color-light: #f8f9fa;
    --color-text: #333333;
    --color-pastel-purple: #e0d4e3;
    --color-pastel-blue: #d4e5e3;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--color-text);
    background-color: var(--color-light);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-dark);
}

.logo-container .subtitle {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--color-gold);
}

/* Typografie & Buttons */
h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.btn-gold {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    color: #fff !important;
    background-color: var(--color-gold);
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

/* Hero Sektion */
#hero {
    position: relative;
    text-align: center;
    padding: 120px 20px;
    background-color: #fff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

.hero-watercolor {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: blur(10px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* About Sektion */
#about {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.artist-photo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
}

/* Musik Sektion */
#music {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.03);
    text-align: center;
    position: relative;
}

/* Segmented Controls Styling */
.segmented-control-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.segmented-control {
    display: inline-flex;
    background-color: #f1f3f5;
    border-radius: 30px;
    overflow: hidden;
    padding: 4px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.segmented-control input[type="radio"] {
    display: none;
}

.segmented-control label {
    padding: 10px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #666;
    border-radius: 26px;
}

.segmented-control input[type="radio"]:checked + label {
    background-color: #fff;
    color: var(--color-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-section.active {
    display: block;
}

/* Alben Grid */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.album-card {
    text-align: center;
}

.album-cover {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    background-color: #eee;
}

.album-card:hover .album-cover {
    transform: scale(1.03);
}

.album-card h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.album-card .year {
    color: #777;
    margin: 0;
}

/* Singles Liste */
.disc-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.disc-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.disc-list li:hover {
    background-color: #fafafa;
}

.song-details {
    display: flex;
    flex-direction: column;
}

.song-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-dark);
}

.song-album {
    font-size: 0.85rem;
    color: #777;
    margin-top: 4px;
}

.song-year {
    color: #888;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 15px;
}

/* Soundwave Dekoration */
.soundwave-container {
    margin-top: 50px;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.soundwave-graphic {
    max-width: 100%;
    height: auto;
    opacity: 0.9;
}

/* Kontakt Formular Sektion */
#contact {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-box {
    background-color: var(--color-dark);
    color: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-box h2 {
    color: #fff;
    margin-top: 0;
    text-align: center;
}

.contact-box p {
    color: #ccc;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #ddd;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #2a2a35;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
}

.form-group select option {
    background-color: var(--color-dark);
    color: #fff;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 15px;
}

/* DSGVO Checkbox Styling */
.checkbox-group {
    margin-top: 5px;
    margin-bottom: 10px;
}

.checkbox-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin-top: 3px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ccc;
}

.checkbox-label a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.checkbox-label a:hover {
    color: var(--color-gold-hover);
}

/* DSGVO Modal Styles (Neu) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 35px 40px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    color: var(--color-text);
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.modal-content h2 {
    margin-top: 0;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-weight: 500;
}

.modal-content h3 {
    color: var(--color-gold);
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.modal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.close-modal {
    color: #999;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--color-gold);
    text-decoration: none;
}

/* Footer & Signatur */
footer {
    text-align: center;
    padding: 30px;
    color: #777;
    border-top: 1px solid #eee;
}

footer p {
    margin: 5px 0;
}

.signature {
    font-size: 0.85rem;
    margin-top: 10px !important;
    letter-spacing: 1px;
}

.signature a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.signature a:hover {
    color: var(--color-gold-hover);
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    nav {
        flex-direction: column;
        gap: 15px;
    }
    .hero-content h2 {
        font-size: 2.2rem;
    }
    .contact-box {
        padding: 40px 20px;
    }
    .modal-content {
        padding: 25px 20px;
        margin: 10% auto;
    }
    .close-modal {
        top: 10px;
        right: 15px;
    }
}