/* SchettiWare - Keramik-fokussiertes Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

:root {
    --primary-clay: #8B6F47;
    --primary-terracotta: #C86F3F;
    --accent-warm: #D4A574;
    --accent-cream: #F5E6D3;
    --accent-sage: #9CAF88;
    --dark-earth: #4A3F35;
    --light-sand: #FAF5EF;
    --ceramic-white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', 'Georgia', Tahoma, serif;
    line-height: 1.7;
    color: var(--dark-earth);
    background: linear-gradient(to bottom, var(--light-sand) 0%, var(--accent-cream) 100%);
    scrollbar-gutter: stable;
    overflow-x: hidden;
    overflow-y: scroll;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: linear-gradient(135deg, var(--primary-clay) 0%, var(--primary-terracotta) 100%);
    color: white;
    padding: 2.5rem 0;
    box-shadow: 0 4px 20px rgba(139, 111, 71, 0.3);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><circle cx="100" cy="50" r="60" fill="%23D4A574" opacity="0.1"/><circle cx="900" cy="120" r="80" fill="%239CAF88" opacity="0.1"/><circle cx="500" cy="80" r="50" fill="%23F5E6D3" opacity="0.1"/></svg>');
    background-size: cover;
    opacity: 0.5;
    animation: floatParticles 15s ease-in-out infinite;
}

@keyframes floatParticles {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.header-logo {
    height: 180px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
    cursor: pointer;
}

.header-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .header-logo {
        height: 240px;
    }
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.95;
    font-weight: 300;
}

nav {
    background-color: var(--dark-earth);
    padding: 1rem 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav li {
    margin: 0 1rem;
}

nav a {
    color: var(--accent-cream);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-warm);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover {
    color: var(--accent-warm);
    background: rgba(212, 165, 116, 0.1);
}

nav a:hover::after {
    width: 60%;
}

nav a.active {
    background: rgba(212, 165, 116, 0.2);
    font-weight: 600;
    color: var(--accent-warm);
}

nav a.active::after {
    width: 60%;
}

.hero {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.9) 0%, rgba(200, 111, 63, 0.85) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="pottery" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="30" fill="%23D4A574" opacity="0.15"/></pattern></defs><rect width="1200" height="400" fill="url(%23pottery)"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: inset 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--primary-terracotta) 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(200, 111, 63, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button * {
    position: relative;
    z-index: 2;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--primary-clay) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 25px rgba(200, 111, 63, 0.6);
    transform: translateY(-2px);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(200, 111, 63, 0.6);
    }
    50% {
        box-shadow: 0 6px 35px rgba(200, 111, 63, 0.8);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section {
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    animation: subtleRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes subtleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.section h2 {
    color: var(--primary-clay);
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    z-index: 1;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-warm), var(--primary-terracotta));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(200, 111, 63, 0.4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 230, 211, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.15);
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-warm), var(--primary-terracotta));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(139, 111, 71, 0.25);
    border-color: var(--accent-warm);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: var(--primary-clay);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--dark-earth);
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
    justify-items: center;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 230, 211, 0.9) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.2);
    border: 3px solid rgba(212, 165, 116, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    max-width: 450px;
    width: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--accent-warm), var(--primary-terracotta), var(--accent-sage));
    border-radius: 20px 20px 0 0;
}

.pricing-card.highlight {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(245, 230, 211, 0.95) 100%);
    border: 4px solid var(--accent-warm);
    box-shadow: 0 12px 40px rgba(200, 111, 63, 0.3);
    transform: scale(1.05);
}

.pricing-card.highlight::before {
    height: 10px;
    background: linear-gradient(90deg, var(--primary-terracotta), var(--accent-warm), var(--primary-clay));
}

.pricing-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px rgba(139, 111, 71, 0.3);
}

.pricing-card h3 {
    color: var(--primary-clay);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    color: var(--primary-terracotta);
    font-weight: 800;
    margin: 1.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.info-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.info-container p {
    margin: 0.8rem 0;
    color: var(--dark-earth);
    font-size: 1.05rem;
}

.info-container a {
    color: var(--primary-terracotta);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-container a:hover {
    color: var(--accent-warm);
    text-decoration: underline;
}

.event-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 230, 211, 0.8) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--accent-warm);
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.15);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.25);
}

.event-card h3 {
    color: var(--primary-clay);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.event-card p {
    color: var(--dark-earth);
    margin-bottom: 0.5rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 230, 211, 0.8) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.8rem;
    border-left: 5px solid var(--primary-terracotta);
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.15);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.25);
    border-left-width: 8px;
}

.service-card h3 {
    color: var(--primary-clay);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card p {
    color: var(--dark-earth);
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 230, 211, 0.8) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--accent-sage);
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.15);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.25);
    transform: translateX(5px);
}

.faq-item h3 {
    color: var(--primary-clay);
    margin-bottom: 0.8rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-item h3:hover {
    color: var(--primary-terracotta);
}

.faq-item p {
    color: var(--dark-earth);
    margin: 0.8rem 0;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.2);
    transition: transform 0.4s ease;
    border: 2px solid rgba(212, 165, 116, 0.3);
}

.gallery-item:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: var(--accent-cream);
}

.gallery-item p {
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--light-sand) 100%);
    color: var(--primary-clay);
    text-align: center;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 230, 211, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(212, 165, 116, 0.3);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-warm), var(--primary-terracotta));
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.25);
    border-color: var(--accent-warm);
}

.contact-card h3 {
    color: var(--primary-clay);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--dark-earth);
    line-height: 1.7;
}

.contact-card a {
    color: var(--primary-terracotta);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--accent-warm);
    text-decoration: underline;
}

.booking-page-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.2);
    padding: 3rem;
    margin: 2rem auto;
    max-width: 900px;
    border: 2px solid rgba(212, 165, 116, 0.3);
}

.booking-page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-clay);
    margin: 0 0 1rem 0;
    text-align: center;
}

.booking-page-subtitle {
    font-size: 1.15rem;
    color: var(--dark-earth);
    margin: 0 0 2rem 0;
    text-align: center;
}

.booking-iframe-fullsize {
    width: 100%;
    height: 1800px;
    border: none;
    border-radius: 15px;
}

footer {
    background: linear-gradient(135deg, var(--primary-clay) 0%, var(--dark-earth) 100%);
    color: var(--accent-cream);
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 -4px 20px rgba(139, 111, 71, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.footer-content a {
    color: var(--accent-warm);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--accent-cream);
    text-decoration: underline;
}

.embed-container {
    position: fixed;
    right: 20px;
    bottom: 10px;
    width: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 30px rgba(139, 111, 71, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    border: 2px solid var(--accent-warm);
}

.embed-container.hidden {
    transform: translateY(calc(100% - 52px));
}

.embed-container.hidden .widget-content {
    display: none;
}

.widget-toggle {
    background: linear-gradient(135deg, var(--primary-clay) 0%, var(--primary-terracotta) 100%);
    color: white;
    padding: 1rem;
    border-radius: 15px 15px 0 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.widget-toggle:hover {
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--primary-clay) 100%);
}

.widget-toggle h2 {
    color: white;
    text-align: left;
    margin: 0;
    font-size: 1.2rem;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.embed-container.hidden .toggle-icon {
    transform: rotate(180deg);
}

.widget-content {
    padding: 1rem;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.booking-iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
    background: white;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    nav {
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    nav li {
        margin: 0.5rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .booking-iframe-fullsize {
        height: 2000px;
    }

    .booking-iframe {
        min-height: 800px;
    }

    .section {
        padding: 2rem;
    }

    .embed-container {
        position: static;
        bottom: 10px;
        width: 100%;
        margin: 2rem auto;
        max-width: 500px;
        transform: none !important;
    }

    .widget-content {
        max-height: none;
    }

    .onboarding-timeline {
        padding: 0;
    }

    .timeline-step {
        margin-bottom: 2rem;
    }

    .step-connector {
        display: none;
    }

    .step-number {
        position: relative;
        left: 0;
        transform: none;
        margin: 0 auto 1rem auto;
    }
}

/* Onboarding Timeline Styles */
.onboarding-timeline {
    padding: 2rem 0;
    position: relative;
}

.timeline-step {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.timeline-step.final-step {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--primary-terracotta) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(200, 111, 63, 0.4);
    position: relative;
    z-index: 2;
    border: 4px solid white;
}

.step-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 230, 211, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(139, 111, 71, 0.2);
    border: 2px solid rgba(212, 165, 116, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 35px rgba(139, 111, 71, 0.3);
    border-color: var(--accent-warm);
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-warm), var(--primary-terracotta));
    border-radius: 15px 15px 0 0;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.step-content h3 {
    color: var(--primary-clay);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-content > p {
    color: var(--dark-earth);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-sage);
}

.step-details li {
    padding: 0.5rem 0;
    color: var(--dark-earth);
    font-weight: 500;
}

.step-connector {
    position: absolute;
    left: 35px;
    top: 70px;
    width: 4px;
    height: calc(100% + 4rem);
    background: linear-gradient(180deg, var(--accent-warm) 0%, var(--primary-terracotta) 100%);
    z-index: 1;
}

.timeline-step.final-step .step-connector {
    display: none;
}

.timeline-step.final-step .step-number {
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--primary-clay) 100%);
    box-shadow: 0 8px 25px rgba(156, 175, 136, 0.5);
}

.timeline-step.final-step .step-content {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(245, 230, 211, 0.95) 100%);
    border: 3px solid var(--accent-warm);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Keramik Image Styles */
.keramik-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.keramik-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.25);
    transition: all 0.4s ease;
    border: 3px solid rgba(212, 165, 116, 0.3);
    position: relative;
}

.keramik-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 111, 71, 0.1) 100%);
    pointer-events: none;
}

.keramik-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 45px rgba(139, 111, 71, 0.4);
    border-color: var(--accent-warm);
}

.keramik-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.keramik-item:hover img {
    transform: scale(1.1);
}

/* Keramik Showcase */
.keramik-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.showcase-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 111, 71, 0.3);
    border: 4px solid var(--accent-warm);
}

.showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.showcase-image:hover img {
    transform: scale(1.1);
}

.showcase-content {
    padding: 2rem;
}

.showcase-content h3 {
    color: var(--primary-clay);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.showcase-content p {
    color: var(--dark-earth);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Keramik Grid */
.keramik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.keramik-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.25);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 300px;
}

.keramik-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.keramik-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(74, 63, 53, 0.95) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.keramik-card:hover .keramik-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(139, 111, 71, 0.95) 0%, transparent 100%);
}

.keramik-overlay h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.keramik-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(139, 111, 71, 0.4);
}

.keramik-card:hover img {
    transform: scale(1.15);
}

/* Success Stories */
.success-stories {
    margin-top: 2rem;
}

.story-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 230, 211, 0.9) 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.2);
    border: 2px solid rgba(212, 165, 116, 0.3);
}

.story-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.25);
}

.story-content {
    padding: 1rem;
}

.story-content p {
    color: var(--dark-earth);
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.story-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--accent-warm);
    opacity: 0.5;
    font-family: Georgia, serif;
}

/* Responsive für Keramik-Bilder */
@media (max-width: 768px) {
    .keramik-showcase {
        grid-template-columns: 1fr;
    }

    .showcase-image img {
        height: 300px;
    }

    .story-item {
        grid-template-columns: 1fr;
    }

    .keramik-card {
        height: 250px;
    }

    .full-gallery {
        grid-template-columns: 1fr;
    }

    .vertical-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Full Gallery Styles */
.full-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.gallery-item-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(139, 111, 71, 0.25);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 3px solid rgba(212, 165, 116, 0.3);
}

.gallery-item-large:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.4);
    border-color: var(--accent-warm);
}

.gallery-item-large img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item-large:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(74, 63, 53, 0.95) 0%, rgba(74, 63, 53, 0.7) 70%, transparent 100%);
    padding: 2.5rem 2rem 1.5rem 2rem;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.gallery-item-large:hover .gallery-caption {
    background: linear-gradient(to top, rgba(139, 111, 71, 0.95) 0%, rgba(139, 111, 71, 0.7) 70%, transparent 100%);
}

.gallery-caption h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Vertical Gallery */
.vertical-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vertical-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.25);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 400px;
}

.vertical-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.vertical-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(74, 63, 53, 0.95) 0%, transparent 100%);
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.vertical-item:hover .vertical-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(139, 111, 71, 0.95) 0%, transparent 100%);
}

.vertical-overlay h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.vertical-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(139, 111, 71, 0.4);
}

.vertical-item:hover img {
    transform: scale(1.15);
}
