@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --rose-gold: #d4a88a;
    --deep-rose: #b87961;
    --bordeaux: #8f2f35;
    --dark: #241817;
    --cream: #fbf4ee;
    --soft: #fffaf6;
    --white: #ffffff;
    --text: #3f3431;
    --muted: #766865;
    --border: #eadbd0;
    --shadow: 0 18px 45px rgba(52, 30, 26, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.55rem; }

/* ==================== HEADER ==================== */
.site-header,
header {
    background: rgba(36, 24, 23, 0.96);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.85rem 6%;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.brand img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 10px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.2rem);
}

.main-nav a {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

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

.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.cart-count {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--bordeaux);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    position: absolute;
    top: -10px;
    right: -12px;
    display: grid;
    place-items: center;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(251, 244, 238, 0.85), rgba(251, 244, 238, 0.95));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100vh;
    width: 100%;
    padding: 0 6%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
}

.hero-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 380px;
    max-width: 90vw;
    height: auto;
    margin: 0 auto 2.5rem;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 80px rgba(212, 168, 138, 0.3);
    transform: scale(1);
    transition: transform 0.3s ease;
    border: 4px solid rgba(212, 168, 138, 0.4);
}

.hero-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3), 0 0 100px rgba(212, 168, 138, 0.5);
}

.eyebrow {
    color: var(--bordeaux);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
}

.hero p {
    max-width: 720px;
    margin: 1.3rem auto;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--muted);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.2rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.85rem 1.5rem;
    border: 1px solid var(--bordeaux);
    border-radius: 8px;
    background: var(--bordeaux);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:hover {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--bordeaux);
}

/* ==================== SERVICES ==================== */
.services {
    padding: 5.5rem 6%;
    background: var(--white);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 3.2rem;
    text-align: center;
}

.section-heading p:last-child {
    color: var(--muted);
    margin-top: 1rem;
}

.services-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.services-grid.services-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.22s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(52, 30, 26, 0.16);
}

.service-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.service-info {
    padding: 1.5rem;
}

.service-info p {
    color: var(--muted);
    margin: 0.75rem 0 1rem;
}

.text-link {
    color: var(--bordeaux);
    font-weight: 700;
}

.text-link:hover {
    color: var(--deep-rose);
}

.page-hero {
    padding: 3.5rem 6%;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.page-hero.compact {
    padding: 2.5rem 6%;
}

.page-hero h1 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: clamp(2.6rem, 4vw, 4rem);
}

.page-hero p {
    max-width: 720px;
    margin: 0.75rem auto 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.notice {
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    background: #f8e4d8;
    border-bottom: 4px solid #c23d3d;
    color: #8f2f35;
    padding: 1.3rem 6%;
    font-weight: 700;
    text-align: center;
    border-radius: 0 0 18px 18px;
}

.legal-section {
    padding: 4rem 6%;
    background: var(--cream);
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    color: var(--text);
    line-height: 1.8;
}

.legal-card h2 {
    margin-top: 1.8rem;
    font-size: 1.75rem;
    color: var(--dark);
}

/* ==================== CTA & FOOTER ==================== */
.cta-section {
    padding: 4rem 6%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-section > div {
    max-width: 720px;
}

footer {
    background: var(--dark);
    color: #ddd;
    padding: 3rem 6%;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-icons img {
    width: 34px;
    height: 34px;
    transition: transform 0.2s;
}

.social-icons img:hover {
    transform: scale(1.15);
}

.footer-links span {
    color: var(--rose-gold);
    margin: 0 0.5rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card img {
        height: 280px;
    }
    .cta-section {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .main-nav ul {
        gap: clamp(0.8rem, 2vw, 1.5rem);
    }
    .main-nav a {
        font-size: 0.95rem;
    }
    h3 { font-size: 1.35rem; }
}

@media (max-width: 560px) {
    .site-header,
    header {
        padding: 0.7rem 4%;
        gap: 1.2rem;
    }
    .brand img {
        width: 56px;
        height: 56px;
    }
    .main-nav ul {
        gap: clamp(0.6rem, 1.5vw, 1rem);
    }
    .main-nav a {
        font-size: 0.88rem;
    }
    .hero {
        min-height: auto;
        padding: 3.5rem 4%;
    }
    .hero-logo {
        width: 180px;
        margin-bottom: 1.2rem;
    }
    .eyebrow {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }
    h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
    h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
    h3 { font-size: 1.15rem; }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    .btn {
        width: 100%;
        min-height: 44px;
        padding: 0.75rem 1.2rem;
        font-size: 0.95rem;
    }
    .services {
        padding: 3.5rem 4%;
    }
    .services-grid {
        gap: 1.2rem;
    }
    .service-card img {
        height: 220px;
    }
    .service-info {
        padding: 1.2rem;
    }
    .service-info p {
        font-size: 0.92rem;
        margin-bottom: 0.8rem;
    }
    .cta-section {
        padding: 3rem 4%;
        flex-direction: column;
        align-items: stretch;
    }
    .cta-section > div {
        max-width: 100%;
    }
    .cta-section h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
}
/* ===================== WARRENKORB - ALTER STIL ===================== */

.cart-page {
    padding: 2rem 6% 6rem;
    background: var(--cream);
}

.cart-items {
    max-width: 820px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    align-items: stretch;
    gap: 1.2rem;
    padding: 1.4rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item-details h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--dark);
}

.cart-item-price {
    color: var(--deep-rose);
    font-weight: 700;
    margin-top: 0.35rem;
    display: inline-block;
}

.cart-item-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    color: var(--muted);
    font-size: 0.98rem;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--cream);
    padding: 0.35rem 0.7rem;
}

.quantity-controls button {
    border: none;
    background: transparent;
    font-size: 1.3rem;
    color: var(--dark);
    width: 32px;
    height: 32px;
    line-height: 1;
    cursor: pointer;
}

.quantity-controls span {
    min-width: 1.4rem;
    text-align: center;
    font-weight: 700;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.remove-button {
    border: none;
    background: #f6d8d6;
    color: var(--dark);
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font-size: 0.98rem;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, background 0.2s ease;
}

.remove-button:hover {
    transform: translateY(-2px);
    background: #c23d3d;
    color: #fff;
}

.cart-summary {
    max-width: 820px;
    margin: 2.5rem auto;
    padding: 3rem 2.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(143, 47, 53, 0.15);
}

.cart-summary h2 {
    font-size: 2.3rem;
    color: var(--dark);
    margin-bottom: 1.8rem;
}

.cart-summary span {
    color: var(--deep-rose);
    font-weight: 700;
}

/* Rundere & größere Buttons wie im alten Design */
.cart-actions .btn {
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1.08rem;
    font-weight: 600;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.cart-actions .btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #102216;
}

.btn-whatsapp:hover {
    background: #1eb855;
    color: #0c1a12;
}

/* Löschen Button */
.btn-danger {
    background: #c23d3d;
    border-color: #c23d3d;
}

.btn-danger:hover {
    background: #a83232;
}

/* Hinweis bei leerem Warenkorb */
#cart-items:empty::after {
    content: "Dein Warenkorb ist noch leer.";
    display: block;
    text-align: center;
    padding: 4rem 1rem;
    color: var(--muted);
    font-size: 1.15rem;
}

@media (max-width: 820px) {
    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cart-item-image {
        width: 100%;
        max-width: 280px;
        height: 180px;
    }

    .cart-item-info {
        justify-content: center;
    }
}
 
/* ===================== KONTAKT ===================== */
.contact-section {
    padding: 4rem 6% 6rem;
    background: var(--cream);
}

.contact-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-photo {
    width: 100%;
        max-width: 320px;
    box-shadow: 0 20px 45px rgba(52, 30, 26, 0.16);
    border: 10px solid var(--cream);
}

.contact-list {
    display: grid;
    gap: 1rem;
}

.contact-list p {
    display: grid;
    gap: 0.25rem;
    color: var(--text);
}

.contact-list a {
    color: var(--bordeaux);
    font-weight: 600;
}

@media (max-width: 900px) {
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-photo {
        max-width: 100%;
    }
}

/* ===================== �BER MICH - ZENTRIERT ===================== */

.about-section {
    padding: 6rem 6% 7rem;
    background: var(--white);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    max-width: 280px;
    margin: 0 auto 3rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 8px solid var(--cream);
}

.about-text {
    max-width: 720px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.35rem;
    line-height: 1.25;
    margin-bottom: 1.6rem;
    color: var(--dark);
}

.about-text p {
    font-size: 1.09rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--muted);
}

.about-text .btn {
    margin-top: 2rem;
    padding: 16px 42px;
}

/* F�r kleine Bildschirme noch besser */
@media (max-width: 560px) {
    .about-image {
        max-width: 320px;
    }
    
    .about-text h2 {
        font-size: 2.1rem;
    }
}
