:root {
    --walnut: #5A4633;
    --ivory: #FAF8F5;
    --olive: #A4B494;
    --graphite: #2E2E2E;
    --copper: #B87333;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--graphite);
    background-color: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--ivory) 0%, #F0EDE7 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: var(--space-sm);
    color: var(--walnut);
    font-weight: 700;
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--copper);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--walnut);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, .btn {
    display: inline-block;
    background-color: var(--copper);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

button:hover, .btn:hover {
    transform: translateY(-2px);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-lg) 0;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.grid {
    display: grid;
    gap: var(--space-md);
}

.text-center {
    text-align: center;
}

header {
    position: relative;
    width: 100%;
    z-index: 100;
    transition: var(--transition-normal);
    padding: var(--space-sm) 0;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(10px);
}

.header-minimized {
    transform: translateY(-100%);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--walnut);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--copper);
    bottom: 4px;
    right: -10px;
    border-radius: 50%;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 200;
}

.nav-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--walnut);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.nav-toggle span:nth-child(1) {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 10px;
}

.nav-toggle span:nth-child(3) {
    top: 20px;
}

.nav-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.nav-menu li a {
    color: var(--graphite);
    font-weight: 500;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--copper);
    left: 0;
    bottom: -4px;
    transition: var(--transition-normal);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-menu li a.active::after {
    width: 100%;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
    background: url("../pictures/hero-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.5);
    padding: var(--space-sm);
    border-radius: var(--border-radius-md);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.hero-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 120%;
    background: var(--olive);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    }
    100% {
        border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
    }
}

.section-title {
    position: relative;
    margin-bottom: var(--space-lg);
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--copper);
    bottom: -10px;
    left: 0;
}

.center-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    perspective: 1000px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-content {
    padding: var(--space-md);
}

.services-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.testimonials {
    background: linear-gradient(135deg, var(--walnut) 0%, #493628 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(var(--copper), transparent 70%);
    opacity: 0.1;
    top: -150px;
    right: -150px;
    border-radius: 50%;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-name {
    font-weight: 600;
    color: var(--copper);
}

.cta {
    position: relative;
    padding: var(--space-xl) 0;
    background-color: var(--olive);
    color: white;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    top: -100px;
    left: -100px;
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.form-checkbox input {
    width: 18px;
    height: 18px;
}

footer {
    background-color: var(--graphite);
    color: white;
    padding: var(--space-lg) 0;
}

.footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-title {
    color: var(--ivory);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--copper);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.contact-info i {
    color: var(--copper);
}

.copyright {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.about-section {
    position: relative;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-normal);

}

.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.about-content {
    position: relative;
    z-index: 2;
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--copper);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--graphite);
}

.portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-sm);
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(90, 70, 51, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-normal);
    padding: var(--space-md);
    color: white;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: white;
}

.process-steps {
    position: relative;
    padding-left: 30px;
    counter-reset: steps;
}

.process-step {
    position: relative;
    padding-bottom: var(--space-lg);
}

.process-step::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: -30px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.process-step::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 1px;
    height: calc(100% - 30px);
    background-color: rgba(184, 115, 51, 0.3);
}

.process-step:last-child::after {
    display: none;
}

.process-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.process-text {
    color: var(--graphite);
}

.privacy-content, .terms-content, .return-content, .cookies-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h3, .terms-content h3, .return-content h3, .cookies-content h3 {
    margin-top: var(--space-lg);
}

.back-home {
    display: inline-block;
    margin-top: var(--space-lg);
}

.error-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg);
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--copper);
    margin-bottom: var(--space-sm);
    position: relative;
}

.error-code::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    background-color: var(--copper);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.error-text {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--walnut);
}

.thank-you-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg);
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--olive);
    margin-bottom: var(--space-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(0.95);
    }
}

.thank-you-title {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    color: var(--walnut);
}

.thank-you-text {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(46, 46, 46, 0.95);
    color: white;
    padding: var(--space-md);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-text {
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-xs);
}

.cookie-buttons button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-accept {
    background-color: var(--copper);
}

.btn-decline {
    background-color: transparent;
    border: 1px solid white;
}

.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    opacity: 0.4;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 1000px 100px;
}

.wave.wave1 {
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 0.5;
    animation-delay: 0s;
}

.wave.wave2 {
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.2;
    animation-delay: -5s;
}

.wave.wave3 {
    animation: animate 30s linear infinite;
    z-index: 998;
    opacity: 0.3;
    animation-delay: -2s;
}

.wave.wave4 {
    animation: animate2 15s linear infinite;
    z-index: 997;
    opacity: 0.1;
    animation-delay: -3s;
}

@keyframes animate {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}

@keyframes animate2 {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: -1000px;
    }
}

.floating-shape {
    position: absolute;
    background-color: var(--copper);
    opacity: 0.1;
    border-radius: 50%;
    transform: scale(1);
    animation: floatAnimation 10s ease-in-out infinite;
}

.shape1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
    background-color: var(--olive);
}

.shape3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -75px;
    animation-delay: 4s;
    background-color: var(--walnut);
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(10deg) scale(1.05);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-position: center;
    background-size: cover;
    z-index: -1;
    opacity: 0.1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 1/1;
    transform: scale(1);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(90, 70, 51, 0.8), transparent);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: var(--space-sm);
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    margin-bottom: 0;
    text-align: center;
    font-size: 1rem;
}

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--copper);
    z-index: 1000;
    transition: width 0.1s;
}

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9999;
}

.cursor-outer {
    width: 30px;
    height: 30px;
    border: 2px solid var(--copper);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
    opacity: 0.5;
}

.cursor-inner {
    width: 6px;
    height: 6px;
    background-color: var(--copper);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.05s ease-out;
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-shape {
        width: 70%;
    }

    .mouse-cursor {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: var(--space-md) 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        display: none;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 6rem var(--space-md) var(--space-md);
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .nav-menu.active {
        right: 0;
        display: block;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: var(--space-sm) 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .hero-shape {
        width: 100%;
        right: -50%;
    }

    .footer-grid {
        gap: var(--space-lg);
    }

    .parallax-bg {
        height: 100%;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 13px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-menu {
        width: 80%;
    }

    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-text {
        margin-bottom: var(--space-sm);
    }

    .card-img {
        height: 180px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .error-code {
        font-size: 5rem;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-text {
        font-size: 1rem;
    }
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hidden.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.three-d-card {
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

.three-d-card-inner {
    transform: translateZ(40px);
    transition: transform 0.5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease 0.1s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-4 {
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

.fade-in-delay-5 {
    animation: fadeIn 0.8s ease 0.5s forwards;
    opacity: 0;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.quantum-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: -1;
}

.cosmic-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--copper);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    animation: particleFade 3s infinite linear;
}

@keyframes particleFade {
    0% {
        opacity: 0.1;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0.1;
        transform: scale(0.5);
    }
}
.menu-open{
    overflow: hidden;
}

.table-responsive{
    overflow: auto;
}