/* Blog Section Styles (Horizontal News Layout) */
.blog-section {
    padding: 4rem 0 6rem;
    background-color: rgba(230, 224, 212, 0.9);
}

.blog-slider-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    /* Mobile: Full width */
}

/* Mask to hide overflowing cards */
.blog-mask {
    overflow: hidden;
    width: 100%;
}

/* Track holding all cards in a row */
.blog-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

/* Card sizing logic */
.blog-card {
    background: transparent;
    border: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    /* Default Mobile: 1 item visible */
    flex: 0 0 100%;
    max-width: 100%;
}

.blog-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 0;
    /* Removed margin here, controlled by content padding */
    overflow: visible;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Badge centered at bottom edge of image */
.blog-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    background-color: #7A1A37;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.6rem 2rem;
    letter-spacing: 0.1em;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.blog-content {
    text-align: left;
    padding: 2.5rem 1.5rem 1rem;
    /* Mobile: Add padding around text (top accommodates badge) */
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1.3;
    color: #4A3B2C;
    margin-bottom: 1rem;
    font-weight: 500;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #7A1A37;
}

.blog-text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6C6C6C;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #4A3B2C;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.blog-link:hover {
    color: #7A1A37;
    gap: 12px;
}

.blog-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Blog Navigation Arrows */
.blog-arrow {
    position: absolute;
    /* Mobile: Centered on the image area (50vw) */
    top: 50vw;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid #4A3B2C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A3B2C;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.blog-arrow:hover {
    background-color: #7A1A37;
    color: #fff;
    border-color: #7A1A37;
}

.blog-arrow svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
}

.blog-arrow.prev {
    left: 10px;
}

.blog-arrow.next {
    right: 10px;
}

/* --- Responsive Adjustments --- */

@media (min-width: 768px) {
    .blog-slider-container {
        padding: 0 60px;
        /* Tablet padding */
    }

    .blog-card {
        /* Tablet: 2 items visible (1 gap of 2rem) */
        flex: 0 0 calc((100% - 2rem) / 2);
        max-width: calc((100% - 2rem) / 2);
    }

    .blog-content {
        /* Reset padding for larger screens */
        padding: 2.5rem 0 0;
    }

    .blog-arrow {
        /* Reset position for larger screens */
        top: 50%;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.8);
    }

    .blog-arrow.prev {
        left: 20px;
    }

    .blog-arrow.next {
        right: 20px;
    }
}

@media (min-width: 992px) {
    .blog-slider-container {
        padding: 0 100px;
        /* Desktop padding */
    }

    .blog-card {
        /* Desktop: 3 items visible (2 gaps of 2rem) */
        flex: 0 0 calc((100% - 4rem) / 3);
        max-width: calc((100% - 4rem) / 3);
    }
}/* Restaurants Teaser with Floating Food Images - Premium Design */

/* Design Variables based on Premium/Luxury palette */
:root {
    --color-gold-primary: #C5A059;
    --color-brown-dark: #2C241B;
    --color-text-muted: #6c757d;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Source Sans 3', sans-serif;
}

.restaurant-teaser-overlay {
    position: relative;
    background-color: #fff;
    padding: 10rem 0;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 700px;
    z-index: 10;
}

/* Background Pattern - Subtle Rotation */
.decor-mandala {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    /* Reduced from 600px to better fit content without overwhelming */
    height: 600px;
    background-image: url('../assets/mandala-pattern.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    /* Slightly more visible */
    pointer-events: none;
    z-index: 0;
    animation: rotate-mandala 60s linear infinite;
    /* Very slow rotation */
}

@keyframes rotate-mandala {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Content Styling */
.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.teaser-headline {
    font-family: var(--font-serif);
    font-size: 4rem;
    /* Larger, more impactful */
    line-height: 1.1;
    color: var(--color-brown-dark);
    /* Darker, richer text */
    margin-bottom: 2rem;
    font-weight: 400;
    /* Lighter weight for elegance */
    letter-spacing: -0.02em;
}

.teaser-subheadline {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    letter-spacing: 3px;
    /* Wider spacing */
    color: var(--color-gold-primary);
    /* Gold accent */
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

/* Optional decorative line under subheadline */
.teaser-subheadline::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold-primary);
    margin: 0.5rem auto 0;
}

.teaser-text {
    font-family: var(--font-sans);
    color: var(--color-text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-top: 2rem;
    font-weight: 300;
}

/* Floating Images with Animations */
.food-img {
    position: absolute;
    z-index: 1;
    object-fit: contain;
    /* Removed drop-shadow to avoid square borders on images with white backgrounds */
    /* filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15)); */

    /* Blends the white background of the image with the section background */
    mix-blend-mode: multiply;
    filter: brightness(1.08) contrast(1.05);
    /* Enhance white point for cleaner blend */

    will-change: transform;
    animation: float 6s ease-in-out infinite;
}

/* Custom Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.food-left-curry {
    left: -100px;
    top: 50%;
    width: 450px;
    height: auto;
    /* Combine centering translate with float animation? Hard with pure CSS transform */
    /* Instead use margin-top for centering offset and transform for float */
    margin-top: -225px;
    /* Half height approx */
    animation-delay: 0s;
}

/* Speisen image â€“ upper right, like reference */
.food-right-rice {
    right: -20px;
    top: -5%;
    width: 420px;
    height: auto;
    animation-delay: 2s;
    z-index: 12;

    /* Transparent PNG â€“ natural contour shadow */
    mix-blend-mode: normal;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Ambiente image â€“ lower right, slightly overlapping with speisen */
.food-right-salad {
    right: -60px;
    top: 45%;
    width: 280px;
    height: auto;
    animation-delay: 4s;
    z-index: 11;

    /* Transparent PNG â€“ natural contour shadow */
    mix-blend-mode: normal;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .food-left-curry {
        left: -150px;
    }

    .food-right-rice {
        right: -100px;
    }
}

@media (max-width: 992px) {
    .food-left-curry {
        width: 300px;
        left: -80px;
        margin-top: -150px;
    }

    .food-right-rice {
        width: 280px;
        right: 0px;
        top: -50px;
    }

    .food-right-salad {
        width: 240px;
        right: -30px;
    }

    .teaser-headline {
        font-size: 3rem;
    }

    .content-wrapper {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .decor-mandala {
        width: 200px;
        height: 200px;
        animation: none;
        /* Disable rotation on mobile to save resources */
        opacity: 0.1;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .food-img {
        opacity: 0.8;
        /* Slightly transparent but visible */
        animation: none;
        /* Disable float on mobile */
        position: absolute;
    }

    /* Move Curry to Top Left Corner, smaller */
    .food-left-curry {
        width: 140px;
        left: -30px;
        top: 20px;
        margin-top: 0;
        /* Reset desktop margin */
    }

    /* Move Rice to Top Right Corner, smaller */
    .food-right-rice {
        width: 160px;
        right: -10px;
        top: 10px;
    }

    /* Move Ambiente to Bottom Right, smaller */
    .food-right-salad {
        width: 140px;
        right: -30px;
        bottom: 60px;
        top: auto;
    }

    .restaurant-teaser-overlay {
        padding: 4rem 1rem 8rem 1rem;
        min-height: 450px;
        overflow: hidden;
        /* Ensure images don't trigger horizontal scroll */
    }

    .teaser-headline {
        font-size: 2.2rem;
        position: relative;
        z-index: 10;
    }

    .content-wrapper {
        z-index: 5;
        padding-top: 4rem;
        /* Push text down a bit to clear top images */
        padding-bottom: 6rem;
        /* Push text up to clear bottom images */
    }
}/* --- Groups & Events Refined Styling --- */
.groups-events-section {
    position: relative;
    background-color: rgba(249, 247, 242, 0.95);
    /* Translucent Light sand/beige */
    overflow: hidden;
}

.groups-image-col {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.groups-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.groups-events-section:hover .groups-image-bg {
    transform: scale(1.03);
}

.groups-content-wrapper {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    background-color: transparent;
    /* Made transparent to use section bg */
    height: 100%;
    text-align: center;
    /* Default text center */
}

/* Vertical line for elegance */
.groups-deco-line {
    width: 1px;
    height: 60px;
    background-color: #c5a059;
    /* Gold/Bronze */
    margin: 0 auto 2rem auto;
}

.subheadline-gold {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #c5a059;
    /* Gold/Bronze */
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.headline-serif {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #2c2c2c;
    /* Dark Grey/Brown */
    margin-bottom: 1.5rem;
}

.copy-text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 2.5rem auto;
    /* Centered */
    text-align: left;
    display: inline-block;
}

.feature-list li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
}

.feature-list li svg {
    margin-right: 12px;
    color: #c5a059;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-elegant {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid #2c2c2c;
    color: #2c2c2c;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
    background: transparent;
}

.btn-elegant:hover {
    background-color: #2c2c2c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .groups-image-col {
        min-height: 400px;
        order: 1 !important;
        /* Image on top on mobile */
    }

    .groups-content-wrapper {
        order: 2 !important;
        padding: 4rem 2rem;
    }

    .headline-serif {
        font-size: clamp(2rem, 8vw, 2.8rem);
        word-wrap: break-word;
        hyphens: auto;
    }
}/* --- Testimonial Section Redesign --- */
.testimonial-section {
    position: relative;
    background-color: #581226;
    /* Deep Maroon Red from screenshot */
    color: #fff;
    padding: 6rem 0;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    /* Stacks Quote Icon + Slider vertically */
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Quote Icon */
.quote-icon-top {
    font-size: 5rem;
    line-height: 1;
    font-family: serif;
    /* Times or similar generic serif for the quotes */
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    /* Increased spacing */
    display: block;
}

/* Slider Container */
.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Slide Content */
.testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeEffect 1s;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* The Quote Text */
.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 700;
    color: #f1860d;
    /* AMRIT Orange/Gold */
    margin-bottom: 2rem;
}

/* Author Name */
.testimonial-author {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.9;
}

/* Navigation Arrows */
.testimonial-arrow {
    position: absolute;
    top: 16rem;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-arrow:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.testimonial-arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 1px;
    /* Thinner stroke as per screenshot */
}

.testimonial-arrow.prev {
    left: 40px;
}

.testimonial-arrow.next {
    right: 40px;
}

/* Dots */
.testimonial-dots {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #f1860d;
    /* Active dot is orange */
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-slider {
        min-height: 320px;
    }

    .testimonial-text {
        font-size: 1.8rem;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 20px;
        /* Moves arrows to bottom on mobile maybe? */
        transform: none;
    }

    .testimonial-arrow.prev {
        left: 20px;
        bottom: 50%;
        /* Keep centered or move? Let's keep centered but smaller */
        top: 50%;
        transform: translateY(-50%);
    }

    .testimonial-arrow.next {
        right: 20px;
        bottom: 50%;
        top: 50%;
        transform: translateY(-50%);
    }
}/* --- Menu Teaser Section --- */
.menu-teaser-section {
    padding: 6rem 0;
    position: relative;
    background-color: #fbf8f5;
    /* Restore solid background base */
    text-align: center;
    overflow: hidden;
}

.menu-teaser-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/mandala-pattern.svg');
    background-size: 500px;
    background-repeat: repeat;
    filter: invert(1);
    /* Turns light lines to dark */
    opacity: 0.08;
    /* Gentle visibility against light bg */
    pointer-events: none;
    z-index: 0;
}

.menu-teaser-section .container {
    position: relative;
    z-index: 1;
    /* Ensure content is above pattern */
}

.menu-teaser-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2c2c2c;
    /* Soft Black */
    margin-bottom: 1rem;
}

.menu-teaser-sub {
    font-family: 'Source Sans 3', sans-serif;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4rem;
    display: block;
}

/* Gallery Grid */
.menu-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
}

.menu-img-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    /* Soft rounding */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
    height: 350px;
    /* Fixed height */
    background-color: #fff;
}

.menu-img-card:hover {
    transform: translateY(-10px);
}

.menu-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-img-card:hover img {
    transform: scale(1.1);
}

/* Overlay with dish name (optional but nice) */
.menu-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    text-align: left;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.menu-img-card:hover .menu-img-overlay {
    transform: translateY(0);
}

.dish-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 0;
}

/* Button */
.btn-gold-fill {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: #f1860d;
    /* AMRIT Orange/Gold */
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 134, 13, 0.3);
}

.btn-gold-fill:hover {
    background-color: #d97500;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 134, 13, 0.4);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-gallery {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        max-width: 400px;
    }

    .menu-img-card {
        height: 250px;
    }

    .menu-teaser-headline {
        font-size: 2.5rem;
    }
}/* Split Section Styles */
.split-image-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    /* Flush with next section if desired */
}

.split-image-container {
    display: flex;
    width: 100%;
    height: 600px;
    /* Fixed height for substantial visual impact */
    position: relative;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

.split-image {
    flex: 1;
    /* Takes up equal space */
    background-size: cover;
    background-position: center;
    height: 100%;
    min-width: 50%;
    /* Ensure they split 50/50 on larger screens */
    position: relative;
}

/* Add a slight dark overlay to ensure text readability if needed, though usually shadows handle it */
.split-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    /* Very subtle tint */
    pointer-events: none;
}

.split-text-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    z-index: 10;
    pointer-events: none;
}

.split-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8);
    paint-order: stroke fill;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .split-headline {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .split-image-container {
        flex-direction: column;
        /* Stack images vertically on mobile */
        height: auto;
        /* Let content dictate height or fixed per image */
    }

    .split-image {
        min-width: 100%;
        height: 350px;
        /* Fixed height for each image on mobile */
    }

    .split-headline {
        font-size: 2.5rem;
    }
}/* Product Quality Section Styles */
.product-quality-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.85);
    /* Semi-transparent to reveal body pattern */
    overflow-x: hidden;
    position: relative;
}

/* ===== Ambient Farbstaub (Color Dust) on the Section ===== */
.product-quality-section::before,
.product-quality-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0;
    animation: dustFadeIn 1.5s ease forwards;
}

/* Large warm orange glow - top right area */
.product-quality-section::before {
    width: 650px;
    height: 650px;
    top: 5%;
    right: -5%;
    background: radial-gradient(circle, rgba(241, 134, 13, 0.30) 0%, rgba(241, 134, 13, 0.12) 50%, transparent 70%);
    animation-delay: 0.3s;
}

/* Soft red/wine glow - bottom left area */
.product-quality-section::after {
    width: 550px;
    height: 550px;
    bottom: 10%;
    left: -8%;
    background: radial-gradient(circle, rgba(120, 18, 53, 0.22) 0%, rgba(120, 18, 53, 0.08) 50%, transparent 70%);
    animation-delay: 0.6s;
}

@keyframes dustFadeIn {
    to {
        opacity: 1;
    }
}

.quality-header-icon {
    display: block;
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    color: #ccc;
    position: relative;
    z-index: 1;
}

.quality-section-title {
    margin-bottom: 80px !important;
    /* Increased spacing to content beneath */
    position: relative;
    z-index: 1;
}

/* Container for the items */

.quality-items-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    /* Space between rows */
    position: relative;
    z-index: 1;
}

.quality-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
}

/* ===== Farbstaub (Color Dust) Blobs Behind Each Item ===== */
.quality-item::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(60px);
    opacity: 0;
    animation: dustBlobIn 1.2s ease forwards;
}

/* Alternating color dust positions & hues for each item */
/* Odd items: orange/gold blob behind text (right side) */
.quality-item:nth-child(odd)::before {
    width: 380px;
    height: 380px;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(241, 134, 13, 0.25) 0%, rgba(197, 160, 89, 0.12) 50%, transparent 70%);
    animation-delay: 0.2s;
}

/* Even items (reversed layout): red/wine blob behind text (left side) */
.quality-item:nth-child(even)::before {
    width: 350px;
    height: 350px;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(120, 18, 53, 0.20) 0%, rgba(197, 160, 89, 0.10) 50%, transparent 70%);
    animation-delay: 0.4s;
}

/* Extra accent blob via ::after on select items for more depth */
.quality-item:nth-child(3n+1)::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(50px);
    opacity: 0;
    animation: dustBlobIn 1.5s ease forwards;
    animation-delay: 0.6s;
    left: 10%;
    bottom: -20px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.22) 0%, transparent 70%);
}

@keyframes dustBlobIn {
    to {
        opacity: 1;
    }
}

/* Alternating Layout */
.quality-item.reverse {
    flex-direction: row-reverse;
}

/* Image Styling */
.quality-img-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.quality-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.quality-item:hover .quality-img {
    transform: scale(1.05);
}

/* Text Styling */
.quality-text-wrapper {
    flex: 1;
    position: relative;
    z-index: 1;
}

.quality-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #5a4b42;
    /* Dark Brown/Grey from image */
    margin-bottom: 20px;
}

.quality-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* ===== Reduced Motion & Responsive ===== */
@media (prefers-reduced-motion: reduce) {

    .product-quality-section::before,
    .product-quality-section::after,
    .quality-item::before,
    .quality-item:nth-child(3n+1)::after {
        animation: none;
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {

    .quality-item,
    .quality-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .quality-img {
        width: 250px;
        height: 250px;
    }

    /* Smaller, centered dust blobs on mobile */
    .quality-item:nth-child(odd)::before,
    .quality-item:nth-child(even)::before {
        width: 220px;
        height: 220px;
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(-50%);
        filter: blur(50px);
    }

    .product-quality-section::before {
        width: 300px;
        height: 300px;
        right: -15%;
    }

    .product-quality-section::after {
        width: 250px;
        height: 250px;
        left: -15%;
    }
}/* Floating Action Buttons */
.floating-buttons-container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    /* Center vertically */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    /* Ensure buttons align to the right edge */
    /* Added gap between buttons */
    transition: transform 0.4s ease-in-out, right 0.4s ease-in-out;
}

/* Partially retract, leaving a small strip visible (approx 15px) */
.floating-buttons-container.hidden {
    transform: translateY(-50%) translateX(calc(100% - 15px));
}

/* Allow hovering over the strip to bring it back out temporarily */
.floating-buttons-container.hidden:hover {
    transform: translateY(-50%) translateX(0);
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #F1860D;
    /* var(--bs-primary) */
    color: #781235;
    /* var(--bs-secondary) for icon color */
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    /* border-bottom removed due to gap */
}

/* Last button usually has a different style */
.floating-btn:last-child {
    background-color: #e6e0d4;
    /* Beige color for the last item in the image */
    color: #781235;
}

.floating-btn:hover {
    width: 70px;
    /* Expand slightly on hover */
    background-color: #d97300;
    /* Darker orange */
    color: white;
}

.floating-btn:last-child:hover {
    background-color: #dcd6c9;
    color: #781235;
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

/* Specific styling to match the image */
.floating-btn.calendar-btn {
    background-color: #F1860D;
}

.floating-btn.phone-btn {
    background-color: #F1860D;
}

.floating-btn.mail-btn {
    background-color: #F1860D;
}

.floating-btn.menu-btn {
    background-color: #e3dccd;
    /* Light beige/grey */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-buttons-container {
        transform: translateY(-50%) scale(0.8);
        right: -5px;
    }

    /* On mobile, also leave a small strip visible, accounting for scale */
    .floating-buttons-container.hidden {
        transform: translateY(-50%) scale(0.8) translateX(calc(100% - 15px));
    }

    /* Make touch targets on the strip easier to hit */
    .floating-buttons-container.hidden:hover,
    .floating-buttons-container.hidden:active {
        transform: translateY(-50%) scale(0.8) translateX(0);
    }
}