/* Grundlayout & Farben – angelehnt an dein Logo/Background */
:root {
    --color-bg: #1b1116;
    --color-bg-alt: #261822;
    --color-accent: #d4af37;
    --color-accent-soft: #f0e2a4;
    --color-text: #f7f3f0;
    --color-text-muted: #c3b8b0;
    --color-error: #ff6b6b;
    --max-width: 1100px;
    --font-serif: "Playfair Display", "Times New Roman", serif;
    --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
    --shadow-soft: 0 18px 45px rgba(0,0,0,0.6);
}

* {
    box-sizing: border-box;
}

body {
    background: #1A1A1A;
    color: var(--color-text);
    font-family: var(--font-sans);
    margin: 0;
    line-height: 1.6;
}


a {
    color: var(--color-accent-soft);
    text-decoration: none;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: linear-gradient(to bottom, rgba(10,5,8,0.92), rgba(10,5,8,0.75));
    border-bottom: 1px solid rgba(212,175,55,0.25);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.3rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 0%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Logo bleibt vollständig sichtbar */
    display: block;
}

.brand-text-main {
    font-family: var(--font-serif);
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.brand-text-sub {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

nav a {
    padding: 0.4rem 0.3rem;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

nav a:hover {
    border-bottom-color: var(--color-accent);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-accent-soft);
}

@media (max-width: 800px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(10,5,8,0.98);
        padding: 0.8rem 1.2rem;
        flex-direction: column;
        box-shadow: var(--shadow-soft);
        border-left: 1px solid rgba(212,175,55,0.25);
        border-bottom: 1px solid rgba(212,175,55,0.25);
    }

    nav ul.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}

/* Sektionen & Layout */
main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem;
}

section {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

section:last-of-type {
    border-bottom: none;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--color-text-muted);
    max-width: 620px;
    margin-bottom: 2rem;
}

/* Hero / Startseite */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    align-items: center;
    gap: 2rem;
}

.hero-badge {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent-soft);
    margin-bottom: 0.8rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.3rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 1.2rem;
}

.hero-title span {
    color: var(--color-accent);
}

.hero-text {
    color: var(--color-text-muted);
    margin-bottom: 1.8rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.btn-primary {
    background: linear-gradient(135deg, #f3e3aa, #d4af37 50%, #8b6920 100%);
    color: #1a1208;
    box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

.btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--color-accent-soft);
    border-color: rgba(212,175,55,0.4);
}

.btn-outline:hover {
    background: rgba(212,175,55,0.12);
}

.hero-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}



.hero-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 15% 0%, rgba(250,244,201,0.16), transparent 55%),
                radial-gradient(circle at 85% 100%, rgba(212,175,55,0.16), transparent 55%);
    opacity: 0.8;
    pointer-events: none;
}

.hero-logo-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    border: 1px solid rgba(212,175,55,0.35);
    background: radial-gradient(circle at 25% 0%, #f9f1dc 0, #d4af37 45%, #5a3b11 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #25190a;
    text-align: center;
    padding: 0.8rem;
    position: relative;
    overflow: hidden;
}

.hero-logo-placeholder span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.24em;
}

.hero-card-caption {
    margin-top: 0.9rem;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.hero-card-highlight {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    border-top: 1px solid rgba(212,175,55,0.3);
    padding-top: 0.7rem;
    color: var(--color-accent-soft);
}

@media (max-width: 800px) {
    .hero {
        grid-template-columns: 1fr;
    }
}

/* Über uns */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 2.5rem;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-fact {
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.3);
    background: #000000;
    font-size: 0.85rem;
}

.about-fact strong {
    display: block;
    font-size: 1.2rem;
    color: var(--color-accent-soft);
    margin-bottom: 0.2rem;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Leistungen */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.3rem;
}

.service-card {
    background: #000000;
    border-radius: 18px;
    padding: 1.3rem;
    border: 1px solid rgba(212,175,55,0.28);
    box-shadow: 0 14px 30px rgba(0,0,0,0.6);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent-soft);
    margin-bottom: 0.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0;
    font-size: 0.9rem;
}

.service-list li {
    margin-bottom: 0.3rem;
}

.service-list li::before {
    content: "◆ ";
    color: var(--color-accent);
    font-size: 0.7rem;
}

/* Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.2);
    background: #000000;
    height: 170px;
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Bild füllt die Kachel perfekt */
	display: block;
}

.gallery-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

/* Blog / News */
.blog-list {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2rem;
}

.blog-entry {
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.25);
    background: #000000;
    margin-bottom: 0.9rem;
}

.blog-entry h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
}

.blog-entry time {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.blog-entry p {
    margin: 0.5rem 0 0.3rem;
}

@media (max-width: 900px) {
    .blog-list {
        grid-template-columns: 1fr;
    }
}

/* Kontakt, Newsletter, Termin, Karte */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

form {
    display: grid;
    gap: 0.8rem;
}

label {
    font-size: 0.85rem;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.55rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(212,175,55,0.35);
    background: rgba(5,3,6,0.95);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
}

input::placeholder,
textarea::placeholder {
    color: #8d7a71;
}

textarea {
    resize: vertical;
    min-height: 110px;
}

.form-row-inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.form-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.small-text {
    font-size: 0.75rem;
}

.contact-details {
    font-size: 0.9rem;
}

.contact-details p {
    margin: 0.3rem 0;
}

.contact-highlight {
    margin-top: 1rem;
    padding: 0.9rem;
    border-radius: 12px;
    border: 1px dashed rgba(212,175,55,0.5);
    font-size: 0.8rem;
}

.newsletter-box,
.appointment-box,
.map-box {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 14px;
    background: #000000;
    border: 1px solid rgba(212,175,55,0.25);
    font-size: 0.82rem;
}

.map-placeholder {
    height: 190px;
    border-radius: 10px;
    border: 1px dashed rgba(212,175,55,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* Shop-Bereich */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.product-card {
    background: #000000;
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(212,175,55,0.25);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.product-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--color-accent-soft);
    font-weight: 600;
    margin-bottom: 0.7rem;
}

/* Impressum & Datenschutz */
.legal-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.legal-text h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-top: 1.6rem;
    margin-bottom: 0.6rem;
}

.legal-text h4 {
    font-size: 0.95rem;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}

/* Footer */
footer {
    background: #050307;
    border-top: 1px solid rgba(212,175,55,0.25);
    margin-top: 2rem;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.8rem;
}

@media (max-width: 700px) {
    .footer-inner {
        flex-direction: column;
        gap: 0.6rem;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}
.social-media {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-media img {
    width: 32px;          /* Größe des Icons */
    height: auto;         /* verhindert Verzerrung */
    aspect-ratio: 1 / 1;  /* Icon bleibt quadratisch */
    object-fit: contain;  /* Icon wird nicht gestaucht */
    transition: 0.2s ease;
}

.social-media img:hover {
    transform: scale(1.15);
}
.ssl-badge img {
    width: 40px;
    height: auto;
}
