/* =========================================================
   SONICBLUEPRINTSTUDIO – CLEAN & OPTIMIZED GLOBAL DESIGN
   ========================================================= */

/* ---------------------------------------------------------
   GLOBAL
--------------------------------------------------------- */

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background: #f7efe4;
    color: #2c2c2c;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #3a2f1d;
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.8rem;
    margin-top: 30px;
}

p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

/* ---------------------------------------------------------
   HEADER / NAVIGATION
--------------------------------------------------------- */

header {
    background: #ffffff;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #e3d5c4;
}

.logo-box img {
    height: 70px; /* vergrößertes Logo */
    transition: 0.2s ease;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    color: #1d1d1d;
    font-size: 1rem;
    transition: 0.25s;
}

nav a:hover {
    color: #d7b894;
}

nav a.active {
    color: #d7b894;
    font-weight: 700;
}

/* ---------------------------------------------------------
   LANGUAGE DROPDOWN
--------------------------------------------------------- */

.lang-dropdown {
    margin-left: 10px;
}

.lang-dropdown select {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #cfcfcf;
    background: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.lang-dropdown select:hover {
    border-color: #d7b894;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ---------------------------------------------------------
   CONTENT SECTIONS
--------------------------------------------------------- */

.section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 30px;
}

/* ---------------------------------------------------------
   GENERAL CARD DESIGN (all pages)
--------------------------------------------------------- */

.cards,
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.card,
.project-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: 0.25s;
}

.card:hover,
.project-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #d7b894;
}

.card h3,
.project-item h3 {
    margin-top: 0;
}

.small-note {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ---------------------------------------------------------
   AUDIO PORTFOLIO – PERFECT ALIGNMENT
--------------------------------------------------------- */

.audio-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 260px;
}

.audio-card h3 {
    margin: 0 0 16px 0;
    min-height: 48px;        /* gleiche Titelhöhe */
    display: flex;
    align-items: center;
}

.audio-card audio {
    width: 100%;
    margin-bottom: 16px;     /* alle Player bündig */
}

.audio-card p {
    margin-top: auto;        /* Beschreibung nach unten drücken */
}

/* ---------------------------------------------------------
   PROJECT PAGE
--------------------------------------------------------- */

.project-item img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 18px;
}

/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #d7b894;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.btn:hover {
    background: #c9a77f;
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

footer {
    margin-top: 60px;
    background: #ffffff;
    padding: 25px;
    text-align: center;
    font-size: 0.95rem;
    border-top: 3px solid #e3d5c4;
}

footer a {
    text-decoration: none;
    font-weight: 600;
    color: #1d1d1d;
    transition: 0.2s;
}

footer a:hover {
    color: #d7b894;
}

/* ---------------------------------------------------------
   RESPONSIVE – TABLETS
--------------------------------------------------------- */

@media (max-width: 900px) {

    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
    }

    .logo-box img {
        height: 60px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
        gap: 16px;
    }

    .section {
        padding: 0 18px;
        margin-top: 35px;
    }

    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    p  { font-size: 1rem; }

    .cards,
    .project-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ---------------------------------------------------------
   RESPONSIVE – SMALL DEVICES
--------------------------------------------------------- */

@media (max-width: 480px) {

    h1 { font-size: 1.6rem; }
    nav { gap: 10px; }

    nav a {
        font-size: 0.9rem;
    }

    .section {
        padding: 0 15px;
    }

    footer {
        font-size: 0.85rem;
    }
}
