/* ============================================================
   be-blond MUNICH — Main Stylesheet
   Clean rewrite of the original Adobe Muse export.
   Edit this file to change colours, fonts, and layout.
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
    --gold:    #9C7C58;   /* warm brown / accent */
    --dark:    #000000;   /* header & footer background */
    --text:    #333333;   /* body text */
    --light:   #f5f5f5;   /* subtle background */
    --white:   #ffffff;
    --border:  #e0e0e0;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { height: 100%; }

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: underline; }
a:hover { color: var(--dark); }

ul { list-style: none; }

h1, h2, h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 16px;
}
h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }

p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }


/* ── Header ───────────────────────────────────────────────── */
header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 80px;
}

.logo a { display: block; text-decoration: none; }
.logo img { height: 60px; width: auto; }


/* ── Main Navigation ──────────────────────────────────────── */
nav {
    display: flex;
    align-items: center;
}

nav > ul {
    display: flex;
    align-items: center;
    gap: 0;
}

nav li { position: relative; }

nav li > a {
    display: block;
    padding: 28px 14px;
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s;
}

nav li > a:hover,
nav li > a.active {
    color: var(--gold);
}

/* Dropdown */
nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: var(--dark);
    min-width: 190px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

nav li:hover > ul { display: flex; }

nav li ul li a {
    padding: 11px 14px;
    font-size: 11px;
    border-top: 1px solid rgba(255,255,255,0.07);
}


/* ── Header secondary links (Impressum, La Bio, etc.) ────── */
.header-extra {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.header-extra a,
.header-extra span {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-extra a:hover { color: var(--gold); }


/* ── Hamburger (mobile) ───────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}


/* ── Hero images ──────────────────────────────────────────── */
.hero {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
}

/* Dark background hero for home page */
.hero-dark {
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
}

.hero-dark img {
    max-width: 550px;
    width: 80%;
}


/* ── Page container ───────────────────────────────────────── */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 40px;
}


/* ── Notice / announcement box ───────────────────────────── */
.notice {
    background: var(--light);
    border-left: 4px solid var(--gold);
    padding: 28px 36px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.8;
}

.notice a { color: var(--gold); }

.notice .signature {
    margin-top: 20px;
    font-weight: 600;
    font-size: 16px;
}


/* ── Salon page ───────────────────────────────────────────── */
.salon-text {
    font-size: 18px;
    line-height: 1.9;
    max-width: 680px;
}


/* ── Gallery grid ─────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 48px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-grid a:hover img { transform: scale(1.06); }


/* ── Price page ───────────────────────────────────────────── */
.price-intro {
    font-size: 18px;
    max-width: 680px;
    margin-bottom: 48px;
}

.price-section {
    margin-bottom: 48px;
}

.price-section h2 {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 20px;
}

.price-list { width: 100%; border-collapse: collapse; }

.price-list tr { border-bottom: 1px solid var(--border); }
.price-list tr:last-child { border-bottom: none; }

.price-list td {
    padding: 12px 0;
    font-size: 16px;
    vertical-align: top;
}

.price-list td.price {
    text-align: right;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
    padding-left: 24px;
}

.price-note {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.contact-link-box {
    margin: 0 0 48px;
}

.contact-link-box a {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.contact-link-box a:hover { background: var(--dark); }


/* ── Hours page ───────────────────────────────────────────── */
.hours-wrap { max-width: 460px; }

.hours-wrap h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hours-table { width: 100%; border-collapse: collapse; }

.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
    padding: 14px 0;
    font-size: 20px;
}

.hours-table td.time {
    text-align: right;
    color: var(--gold);
    font-weight: 600;
}


/* ── Portrait overview page ───────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 24px;
}

.team-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}

.team-card img {
    width: 100%;
    margin-bottom: 18px;
}

.team-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.team-card .contact-small {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.team-card .contact-small a {
    color: var(--gold);
}


/* ── Individual profile page ──────────────────────────────── */
.profile-wrap {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
}

.profile-sidebar h1 {
    font-size: 30px;
    margin-top: 18px;
    line-height: 1.2;
}

.profile-sidebar .contact-small {
    margin-top: 24px;
    font-size: 14px;
    color: #555;
    line-height: 1.9;
}

.profile-sidebar .contact-small a { color: var(--gold); }

.profile-body { font-size: 17px; line-height: 1.9; }

.profile-body ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 14px;
}

.profile-body li { margin-bottom: 6px; }


/* ── Contact page ─────────────────────────────────────────── */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-wrap iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
}

.contact-info h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-info p { font-size: 16px; margin-bottom: 6px; }
.contact-info a { color: var(--gold); }


/* ── Contact / Model form ─────────────────────────────────── */
.form-wrap { max-width: 560px; }

.form-wrap h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 15px;
    border-radius: 2px;
    transition: border-color 0.2s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea { height: 120px; resize: vertical; }

.btn-submit {
    display: inline-block;
    padding: 13px 34px;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover { background: var(--dark); }


/* ── Job listings (Personalsuche) ────────────────────────── */
.job-list { margin-top: 24px; }

.job-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.job-item:last-child { border-bottom: none; }

.job-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--dark);
}

.job-item span { color: #666; font-size: 15px; }

.jobs-cta {
    margin-top: 32px;
    font-size: 17px;
    line-height: 1.9;
}

.jobs-cta a { color: var(--gold); }


/* ── Partners page ────────────────────────────────────────── */
.partners-list { margin-top: 32px; }

.partner-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
}

.partner-item:first-child { border-top: 1px solid var(--border); }

.partner-item img {
    max-width: 180px;
    max-height: 110px;
    object-fit: contain;
    flex-shrink: 0;
}

.partner-info p { margin-bottom: 4px; font-size: 15px; }
.partner-info .partner-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.partner-item:hover .partner-name { color: var(--gold); }


/* ── Impressum page ───────────────────────────────────────── */
.legal-block { max-width: 600px; }
.legal-block h1 { font-weight: 700; margin-bottom: 8px; }
.legal-block h2 { font-size: 20px; margin-bottom: 24px; }
.legal-block p { font-size: 16px; margin-bottom: 8px; }
.legal-block a { color: var(--gold); }

.legal-divider {
    margin: 32px 0;
    border: none;
    border-top: 1px solid var(--border);
}


/* ── Thank-you page ───────────────────────────────────────── */
.thankyou-box {
    text-align: center;
    padding: 80px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-box h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--gold);
}

.thankyou-box p { font-size: 18px; line-height: 1.8; }


/* ── Footer ───────────────────────────────────────────────── */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 28px 20px;
    font-size: 12px;
    letter-spacing: 0.4px;
}

footer a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

footer a:hover { color: var(--gold); }

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}


/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    header {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 20px;
        gap: 12px;
    }

    .logo img { height: 50px; }

    .hamburger { display: flex; }

    nav {
        display: none;
        width: 100%;
        order: 3;
    }

    nav.open { display: block; }

    nav > ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    nav li > a { padding: 12px 4px; font-size: 13px; }

    nav li ul {
        position: static;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        padding-left: 14px;
    }

    nav li:hover > ul { display: flex; }

    .header-extra { display: none; }

    .hero, .hero-dark { height: 260px; }

    .container { padding: 36px 20px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .team-grid { grid-template-columns: 1fr; }

    .profile-wrap { grid-template-columns: 1fr; }

    .contact-wrap { grid-template-columns: 1fr; }

    .contact-wrap iframe { height: 280px; }

    .partner-item { flex-direction: column; gap: 20px; text-align: center; }

    .partner-item img { max-width: 140px; }
}

@media (max-width: 500px) {
    .gallery-grid { grid-template-columns: 1fr; }
    h1 { font-size: 26px; }
}
