/* --------------------------------------------------
   GLOBAL STYLES
-------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #111;
    color: #eee;
    line-height: 1.6;
    padding-top: 140px; /* Platz für den Header */
}

/* Goldfarbe für das Projekt */
:root {
    --gold: #cfa56b;
    --white: #ffffff;
    --dark: #111111;
    --card-bg: #1a1a1a;
}


/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.6);
    z-index: 1000;
}

/* Logo */
.logo-box {
    height: 190px;
    display: flex;
    align-items: center;
}

.logo-box img {
    height: 180px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--gold);
}

/* Sprachumschalter */
.lang-switch {
    display: flex;
    gap: 12px;
    font-size: 1rem;
}

.lang-switch span {
    color: var(--white);
    cursor: pointer;
    transition: 0.3s;
}

.lang-switch span:hover {
    color: var(--gold);
}


/* --------------------------------------------------
   SECTIONS
-------------------------------------------------- */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section h1 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.section p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}


/* --------------------------------------------------
   PORTFOLIO CARDS
-------------------------------------------------- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: 0.3s;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(207,165,107,0.2);
}

.card h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.card audio {
    width: 100%;
    margin-bottom: 15px;
}

.small-note {
    color: #bbb;
    font-size: 0.95rem;
}


/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
    text-align: center;
    padding: 30px;
    color: #aaa;
    margin-top: 50px;
    font-size: 0.9rem;
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 900px) {

    header {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    body {
        padding-top: 240px; /* mehr Platz wenn Header höher wird */
    }

    .logo-box {
        height: auto;
    }
}

@media (max-width: 600px) {
    .section h1 {
        font-size: 2rem;
    }

    .section p {
        font-size: 1rem;
    }
}
