/* _content/Reference_03/Components/Comps/About.razor.rz.scp.css */
.about-section[b-q8bep4af53] {
    padding: 80px 24px;
    background: linear-gradient(180deg, #F8F5F2 0%, #FFF 50%, #F8F5F2 100%);
    position: relative;
    overflow: hidden;
}

    .about-section[b-q8bep4af53]::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(217, 168, 108, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatCircle-b-q8bep4af53 15s ease-in-out infinite;
    }

    .about-section[b-q8bep4af53]::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(185, 120, 64, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatCircle-b-q8bep4af53 20s ease-in-out infinite reverse;
    }

@keyframes floatCircle-b-q8bep4af53 {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 50px);
    }
}

.about-container[b-q8bep4af53] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 48px;
    flex-wrap: wrap;
}

.about-image[b-q8bep4af53] {
    flex: 1 1 400px;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

    .about-image:hover[b-q8bep4af53] {
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 12px 32px rgba(217, 168, 108, 0.4);
    }

.about-text[b-q8bep4af53] {
    flex: 1 1 400px;
    color: #3E2F1C;
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

    .about-text h2[b-q8bep4af53] {
        font-size: 36px;
        margin-bottom: 16px;
        color: #7A5C3E;
        position: relative;
        display: inline-block;
    }

        .about-text h2[b-q8bep4af53]::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #D9A86C, #B97840);
            transition: width 0.5s ease;
        }

        .about-text:hover h2[b-q8bep4af53]::after {
            width: 100%;
        }

    .about-text p[b-q8bep4af53] {
        margin-bottom: 16px;
        transition: transform 0.3s ease;
    }

        .about-text p:hover[b-q8bep4af53] {
            transform: translateX(5px);
        }


.gradient-text[b-q8bep4af53] {
    background: linear-gradient(270deg, #D9A86C, #B97840, #7A5C3E, #B97840, #D9A86C);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradientMove-b-q8bep4af53 4s ease infinite;
    font-weight: bold;
    filter: drop-shadow(2px 2px 4px rgba(122, 92, 62, 0.3));
}

@keyframes gradientMove-b-q8bep4af53 {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
/* _content/Reference_03/Components/Comps/Contact.razor.rz.scp.css */
.contact-section[b-vfv2jmi1fs] {
    background: linear-gradient(180deg, #F8F5F2 0%, #FFF 50%, #F8F5F2 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .contact-section[b-vfv2jmi1fs]::before {
        content: '';
        position: absolute;
        top: 0;
        right: -200px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(217, 168, 108, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: pulse-b-vfv2jmi1fs 8s ease-in-out infinite;
    }

@keyframes pulse-b-vfv2jmi1fs {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.section-title[b-vfv2jmi1fs] {
    font-size: 36px;
    margin-bottom: 48px;
    color: #7A5C3E;
    position: relative;
    display: inline-block;
}

    .section-title[b-vfv2jmi1fs]::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #D9A86C, transparent);
        border-radius: 2px;
    }

.contact-grid[b-vfv2jmi1fs] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 40px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.contact-item[b-vfv2jmi1fs] {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .contact-item:hover[b-vfv2jmi1fs] {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(217, 168, 108, 0.2);
        background: rgba(255, 255, 255, 0.9);
    }

.contact-item h4[b-vfv2jmi1fs] {
    font-size: 18px;
    color: #B97840;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-item p[b-vfv2jmi1fs] {
    font-size: 16px;
    color: #3E2F1C;
    line-height: 1.6;
}

.contact-item a[b-vfv2jmi1fs] {
    color: #3E2F1C;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-item a:hover[b-vfv2jmi1fs] {
        color: #B97840;
    }

.contact-map[b-vfv2jmi1fs] {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

    .contact-map:hover[b-vfv2jmi1fs] {
        box-shadow: 0 12px 28px rgba(217, 168, 108, 0.3);
        transform: translateY(-3px);
    }
/* _content/Reference_03/Components/Comps/Footer.razor.rz.scp.css */
.site-footer[b-hnpmxs3xnf] {
    background-color: #3E2F1C;
    color: #fff;
    padding: 60px 24px 30px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-content[b-hnpmxs3xnf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 32px;
}

.footer-logo h2[b-hnpmxs3xnf] {
    font-size: 24px;
    color: #F8CBA6;
}

.footer-logo p[b-hnpmxs3xnf] {
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.6;
    color: #eee;
}

.footer-links h4[b-hnpmxs3xnf],
.footer-social h4[b-hnpmxs3xnf] {
    margin-bottom: 12px;
    color: #F8CBA6;
    font-size: 18px;
}

.footer-links ul[b-hnpmxs3xnf] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li[b-hnpmxs3xnf] {
    margin-bottom: 8px;
}

.footer-links a[b-hnpmxs3xnf] {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-links a:hover[b-hnpmxs3xnf] {
        color: #fff;
    }

.footer-social .social-icons a[b-hnpmxs3xnf] {
    margin-right: 12px;
    display: inline-block;
}

.footer-social img[b-hnpmxs3xnf] {
    width: 24px;
    height: 24px;
    background: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover img[b-hnpmxs3xnf] {
    transform: scale(1.1);
}

.footer-bottom[b-hnpmxs3xnf] {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 14px;
    color: #bbb;
}
/* _content/Reference_03/Components/Comps/Gallery.razor.rz.scp.css */
.gallery-section[b-pkhbpbrmvn] {
    padding: 80px 24px;
    background: linear-gradient(180deg, #F8F5F2 0%, #fff 50%, #F8F5F2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .gallery-section[b-pkhbpbrmvn]::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(217, 168, 108, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: rotate-b-pkhbpbrmvn 30s linear infinite;
    }

@keyframes rotate-b-pkhbpbrmvn {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.section-title[b-pkhbpbrmvn] {
    font-size: 36px;
    margin-bottom: 16px;
    color: #7A5C3E;
    position: relative;
    display: inline-block;
}

    .section-title[b-pkhbpbrmvn]::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #D9A86C, transparent);
        border-radius: 2px;
    }

.gallery-subtitle[b-pkhbpbrmvn] {
    font-size: 18px;
    color: #7A5C3E;
    margin-bottom: 48px;
    font-style: italic;
}

.gallery-grid[b-pkhbpbrmvn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gallery-item[b-pkhbpbrmvn] {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    aspect-ratio: 4/3;
}

    .gallery-item[b-pkhbpbrmvn]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(217, 168, 108, 0.3) 0%, rgba(185, 120, 64, 0.3) 100%);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 1;
    }

    .gallery-item:hover[b-pkhbpbrmvn]::before {
        opacity: 1;
    }

    .gallery-item:hover[b-pkhbpbrmvn] {
        transform: scale(1.05) translateY(-8px);
        box-shadow: 0 12px 32px rgba(217, 168, 108, 0.4);
    }

    .gallery-item img[b-pkhbpbrmvn] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img[b-pkhbpbrmvn] {
        transform: scale(1.15);
    }

.gallery-overlay[b-pkhbpbrmvn] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay[b-pkhbpbrmvn] {
    transform: translateY(0);
}

.gallery-overlay h3[b-pkhbpbrmvn] {
    font-size: 22px;
    margin: 0 0 8px 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-overlay p[b-pkhbpbrmvn] {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-grid[b-pkhbpbrmvn] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }

    .gallery-item[b-pkhbpbrmvn] {
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .gallery-grid[b-pkhbpbrmvn] {
        grid-template-columns: 1fr;
    }
}
/* _content/Reference_03/Components/Comps/Hero.razor.rz.scp.css */
.hero[b-m8cjobqomg] {
    position: relative;
    background-image: url('/images/bread.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

/*    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(122, 92, 62, 0.3) 0%, rgba(185, 120, 64, 0.3) 100%);
        z-index: 1;
    }*/

.hero-overlay[b-m8cjobqomg] {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(62, 47, 28, 0.5) 100%);
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    position: relative;
    z-index: 2;
    /*backdrop-filter: blur(2px);*/
}

.hero-title[b-m8cjobqomg] {
    font-size: 48px;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp-b-m8cjobqomg 1s ease-out;
    background: linear-gradient(45deg, #fff, #D9A86C, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /*animation: textShine 3s ease-in-out infinite, fadeInUp 1s ease-out;*/
}

.hero-subtitle[b-m8cjobqomg] {
    font-size: 20px;
    margin-bottom: 24px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp-b-m8cjobqomg 1.3s ease-out;
}

.hero-button[b-m8cjobqomg] {
    background: linear-gradient(135deg, var(--button-color), var(--button-hover-color));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(217, 168, 108, 0.4);
    animation: fadeInUp-b-m8cjobqomg 1.6s ease-out;
    position: relative;
    overflow: hidden;
}

    .hero-button[b-m8cjobqomg]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .hero-button:hover[b-m8cjobqomg]::before {
        left: 100%;
    }

    .hero-button:hover[b-m8cjobqomg] {
        transform: translateY(-3px);
        box-shadow: 0 0 8px var(--button-hover-color), 
            0 0 16px var(--button-hover-color), 
            0 0 24px var(--button-hover-color),
            0 8px 20px rgba(217, 168, 108, 0.6);
    }

    .hero-button:active[b-m8cjobqomg] {
        transform: translateY(-1px);
    }


@keyframes fadeInUp-b-m8cjobqomg {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textShine-b-m8cjobqomg {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

#floating-circles[b-m8cjobqomg] {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    top: 0;
    left: 0;
    pointer-events: none;
}

.circle[b-m8cjobqomg] {
    position: absolute;
    border-radius: 50%;
    background: rgba(217, 168, 108, 0.2);
    animation: float-b-m8cjobqomg 20s linear infinite;
}

@keyframes float-b-m8cjobqomg {
    0% {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}
/* _content/Reference_03/Components/Comps/NavBarTop.razor.rz.scp.css */
.navbar[b-x1qevp0q1t] {
    background-color: var(--navbar-color);
    color: var(--primary-color);
    padding: 16px 24px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.navbar-container[b-x1qevp0q1t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 0 auto;
    width: 100%;
}

.navbar-brand[b-x1qevp0q1t] {
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

    .navbar-brand:hover[b-x1qevp0q1t] {
        color: var(--button-hover-color);
    }

.burger[b-x1qevp0q1t] {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

    .burger span[b-x1qevp0q1t] {
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: transform 0.3s ease;
    }

/* Menülinkek */
.navbar-links[b-x1qevp0q1t] {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
}

    .navbar-links.open[b-x1qevp0q1t] {
        max-height: 350px;
        opacity: 1;
        transform: translateY(0);
    }

.navbar-link[b-x1qevp0q1t] {
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    position: relative;
    transition: all 0.4s ease;
}

    .navbar-link[b-x1qevp0q1t]::after {
        content: '';
        position: absolute;
        bottom: 6px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
        width: fit-content;
        min-width: 100%;
        height: 2px;
        background-color: #D9A86C;
        transition: transform 0.3s ease;
        pointer-events: none;
    }

        .navbar-links:hover > :not(:hover)[b-x1qevp0q1t] {
            color: var(--navbar-other-text-color-hover);
        }

    .navbar-link:hover[b-x1qevp0q1t]::after {
        transform: translateX(-50%) scaleX(0.8);
    }

    .navbar-link.active[b-x1qevp0q1t] {
        background-color: #ffb347;
        color: #1e1e2f;
    }

#logo[b-x1qevp0q1t] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 16px;
}

/* Mobilnézet */
@media (max-width: 768px) {
    .burger[b-x1qevp0q1t] {
        display: flex;
    }

        .burger span[b-x1qevp0q1t] {
            background-color: var(--primary-color);
        }

    .navbar[b-x1qevp0q1t] {
        position: fixed;
        flex-direction: column;
    }

    .navbar-links[b-x1qevp0q1t] {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--navbar-color);
        padding: 12px 24px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-link[b-x1qevp0q1t] {
        width: 100%;
        text-align: left;
        padding: 14px 8px;
        font-size: 18px;
    }

        .navbar-link:hover[b-x1qevp0q1t]::after {
            transform: translateX(-50%) scaleX(1);
        }
}

/* Asztali nézet - mindig látható menü */
@media (min-width: 769px) {
    .navbar-links[b-x1qevp0q1t] {
        display: flex !important;
        flex-direction: row !important;
        gap: 16px;
        align-items: center;
        justify-content: center;
        max-height: none !important;
        opacity: 1 !important;
        transform: none !important;
        position: static !important;
        background: none !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
}
/* _content/Reference_03/Components/Comps/Newsletter.razor.rz.scp.css */
.newsletter-section[b-2rbzfp8tsz] {
    padding: 80px 24px;
    background: linear-gradient(135deg, #7A5C3E 0%, #B97840 50%, #D9A86C 100%);
    position: relative;
    overflow: hidden;
}

    .newsletter-section[b-2rbzfp8tsz]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        animation: shimmer-b-2rbzfp8tsz 8s ease-in-out infinite;
    }

@keyframes shimmer-b-2rbzfp8tsz {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.newsletter-container[b-2rbzfp8tsz] {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-content[b-2rbzfp8tsz] {
    color: white;
}

.newsletter-title[b-2rbzfp8tsz] {
    font-size: 36px;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: slideInFromLeft-b-2rbzfp8tsz 1s ease-out;
}

.newsletter-subtitle[b-2rbzfp8tsz] {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

@keyframes slideInFromLeft-b-2rbzfp8tsz {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.newsletter-form-wrapper[b-2rbzfp8tsz] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInFromRight-b-2rbzfp8tsz 1s ease-out;
}

@keyframes slideInFromRight-b-2rbzfp8tsz {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.newsletter-form[b-2rbzfp8tsz] {
    margin-bottom: 16px;
}

.form-group[b-2rbzfp8tsz] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.newsletter-input[b-2rbzfp8tsz] {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #3E2F1C;
    transition: all 0.3s ease;
    outline: none;
}

    .newsletter-input:focus[b-2rbzfp8tsz] {
        border-color: white;
        background: white;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    }

    .newsletter-input[b-2rbzfp8tsz]::placeholder {
        color: rgba(62, 47, 28, 0.5);
    }

.newsletter-button[b-2rbzfp8tsz] {
    padding: 14px 32px;
    background: linear-gradient(135deg, #fff 0%, #F8F5F2 100%);
    color: #7A5C3E;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

    .newsletter-button[b-2rbzfp8tsz]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(217, 168, 108, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .newsletter-button:hover[b-2rbzfp8tsz]::before {
        left: 100%;
    }

    .newsletter-button:hover[b-2rbzfp8tsz] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        background: linear-gradient(135deg, #F8F5F2 0%, #fff 100%);
    }

    .newsletter-button:active[b-2rbzfp8tsz] {
        transform: translateY(0);
    }

.button-icon[b-2rbzfp8tsz] {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.newsletter-button:hover .button-icon[b-2rbzfp8tsz] {
    transform: translateX(4px);
}

.newsletter-note[b-2rbzfp8tsz] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.newsletter-message[b-2rbzfp8tsz] {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    animation: fadeIn-b-2rbzfp8tsz 0.3s ease;
}

    .newsletter-message.success[b-2rbzfp8tsz] {
        background: rgba(76, 175, 80, 0.2);
        color: white;
        border: 1px solid rgba(76, 175, 80, 0.5);
    }

    .newsletter-message.error[b-2rbzfp8tsz] {
        background: rgba(244, 67, 54, 0.2);
        color: white;
        border: 1px solid rgba(244, 67, 54, 0.5);
    }

@keyframes fadeIn-b-2rbzfp8tsz {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .newsletter-container[b-2rbzfp8tsz] {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .newsletter-title[b-2rbzfp8tsz] {
        font-size: 28px;
    }

    .newsletter-subtitle[b-2rbzfp8tsz] {
        font-size: 16px;
    }

    .form-group[b-2rbzfp8tsz] {
        flex-direction: column;
    }

    .newsletter-input[b-2rbzfp8tsz],
    .newsletter-button[b-2rbzfp8tsz] {
        width: 100%;
    }
}
/* _content/Reference_03/Components/Comps/Services.razor.rz.scp.css */
.services-section[b-24o9zknb0i] {
    padding: 80px 24px;
    background: linear-gradient(135deg, #fff 0%, #F8F5F2 50%, #fff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/*    .services-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 20% 50%, rgba(217, 168, 108, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(185, 120, 64, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }*/

.section-title[b-24o9zknb0i] {
    font-size: 36px;
    margin-bottom: 48px;
    color: #7A5C3E;
    position: relative;
    display: inline-block;
}

    .section-title[b-24o9zknb0i]::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #D9A86C, transparent);
        border-radius: 2px;
    }

.services-grid[b-24o9zknb0i] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card[b-24o9zknb0i] {
    background: linear-gradient(135deg, #F8F5F2 0%, #FFF 100%);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

    .service-card[b-24o9zknb0i]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(217, 168, 108, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .service-card:hover[b-24o9zknb0i]::before {
        left: 100%;
    }

    .service-card:hover[b-24o9zknb0i] {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 24px rgba(217, 168, 108, 0.3);
        border: 2px solid rgba(217, 168, 108, 0.2);
    }

    .services-grid:hover > :not(:hover)[b-24o9zknb0i] {
        filter: brightness(0.85);
        transform: scale(0.98);
    }

    .service-card img[b-24o9zknb0i] {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 16px;
        transition: transform 0.4s ease;
    }

    .service-card:hover img[b-24o9zknb0i] {
        transform: scale(1.1);
    }

    .service-card h3[b-24o9zknb0i] {
        font-size: 20px;
        color: #B97840;
        margin-bottom: 12px;
        transition: color 0.3s ease;
        position: relative;
    }

    .service-card:hover h3[b-24o9zknb0i] {
        color: #7A5C3E;
    }

    .service-card p[b-24o9zknb0i] {
        font-size: 16px;
        color: #3E2F1C;
        line-height: 1.6;
        position: relative;
    }
/* _content/Reference_03/Components/Comps/Testimonials.razor.rz.scp.css */
.testimonials-section[b-rgbly51cis] {
    padding: 80px 24px;
    background: linear-gradient(135deg, #fff 0%, #F8F5F2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .testimonials-section[b-rgbly51cis]::before {
        content: '';
        position: absolute;
        top: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(217, 168, 108, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        animation: float-b-rgbly51cis 20s ease-in-out infinite;
    }

    .testimonials-section[b-rgbly51cis]::after {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(185, 120, 64, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        animation: float-b-rgbly51cis 25s ease-in-out infinite reverse;
    }

@keyframes float-b-rgbly51cis {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.section-title[b-rgbly51cis] {
    font-size: 36px;
    margin-bottom: 48px;
    color: #7A5C3E;
    position: relative;
    display: inline-block;
}

    .section-title[b-rgbly51cis]::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #D9A86C, transparent);
        border-radius: 2px;
    }

.testimonials-container[b-rgbly51cis] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card[b-rgbly51cis] {
    background: linear-gradient(135deg, #FFF 0%, #F8F5F2 100%);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

    .testimonial-card[b-rgbly51cis]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 16px;
        padding: 2px;
        background: linear-gradient(135deg, #D9A86C, #B97840);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .testimonial-card:hover[b-rgbly51cis]::before {
        opacity: 1;
    }

    .testimonial-card:hover[b-rgbly51cis] {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 28px rgba(217, 168, 108, 0.25);
    }

.quote-icon[b-rgbly51cis] {
    font-size: 72px;
    color: #D9A86C;
    line-height: 0.5;
    margin-bottom: 16px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-text[b-rgbly51cis] {
    font-size: 16px;
    color: #3E2F1C;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author[b-rgbly51cis] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info h4[b-rgbly51cis] {
    font-size: 18px;
    color: #7A5C3E;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.stars[b-rgbly51cis] {
    color: #D9A86C;
    font-size: 18px;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .testimonials-container[b-rgbly51cis] {
        grid-template-columns: 1fr;
    }
}
/* _content/Reference_03/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-njklbo0m1m] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-njklbo0m1m] {
    flex: 1;
}

.sidebar[b-njklbo0m1m] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-njklbo0m1m] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-njklbo0m1m]  a, .top-row[b-njklbo0m1m]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-njklbo0m1m]  a:hover, .top-row[b-njklbo0m1m]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-njklbo0m1m]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-njklbo0m1m] {
        justify-content: space-between;
    }

    .top-row[b-njklbo0m1m]  a, .top-row[b-njklbo0m1m]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-njklbo0m1m] {
        flex-direction: row;
    }

    .sidebar[b-njklbo0m1m] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-njklbo0m1m] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-njklbo0m1m]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-njklbo0m1m], article[b-njklbo0m1m] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-njklbo0m1m] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-njklbo0m1m] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Reference_03/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-udsa06q7kg] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-udsa06q7kg] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-udsa06q7kg] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-udsa06q7kg] {
    font-size: 1.1rem;
}

.bi[b-udsa06q7kg] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-udsa06q7kg] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-udsa06q7kg] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-udsa06q7kg] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-udsa06q7kg] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-udsa06q7kg] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-udsa06q7kg] {
        padding-bottom: 1rem;
    }

    .nav-item[b-udsa06q7kg]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-udsa06q7kg]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-udsa06q7kg]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-udsa06q7kg] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-udsa06q7kg] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-udsa06q7kg] {
        display: none;
    }

    .nav-scrollable[b-udsa06q7kg] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
