/* Reset e stili base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Importa font Oswald */
@font-face {
    font-family: 'Oswald';
    src: url('../font/Oswald-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Oswald';
    src: url('../font/Oswald-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Oswald';
    src: url('../font/Oswald-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Oswald';
    src: url('../font/Oswald-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Oswald';
    src: url('../font/Oswald-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Oswald';
    src: url('../font/Oswald-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Importa font Breathing */
@font-face {
    font-family: 'Breathing';
    src: url('../font/Breathing Personal Use Only.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body, html {
    font-family: 'Oswald', Arial, Helvetica, sans-serif;
}



body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff !important;
    border-bottom: 1px solid rgba(208,32,18,0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.navbar,
.navbar-nav,
.navbar-collapse {
    background: transparent !important;
}

.navbar-logo {
    height: 80px; 
    width: auto;
    transition: all 0.3s ease;
    margin-bottom: 5px !important;
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #D02012 !important;
}

.navbar-nav .nav-link {
    color: #D02012 !important;
    font-weight: 700;
    transition: color 0.3s ease;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
    color: #FFD700 !important;
    background: none !important;
}

/* Main Container */
.main-container {
    width: 100%;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    background: #D02012;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 4vw 40px 4vw;
    width: 100%;
    padding-top: 90px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: 1;
}

/* Stili per il pulsante "Torna alla Home" nella thank you page */
.btn-warning {
    background-color: #ffde59 !important;
    border: none !important;
    color: #D02012 !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
    padding: 1rem 2rem !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 222, 89, 0.3) !important;
}

.btn-warning:hover {
    background-color: #ffd700 !important;
    color: #D02012 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 222, 89, 0.4) !important;
}

.btn-warning:active {
    transform: translateY(0) !important;
}





.hero-content {
    max-width: 700px;
    padding: 0.5rem 0 0 0;
    text-align: center;
    margin: 0 auto;
}

.hero-section p,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6 {
    color: #fff !important;
}





.hero-save-date {
    color: #ffde59 !important;
    font-family: 'Breathing', cursive;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-style: italic;
}



.hero-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    margin-bottom: 0;
}

.hero-title-light {
    font-size: 3.5rem;
    font-weight: 200;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: none;
    margin-bottom: 0;
    font-family: 'Oswald', Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
    .hero-title-light {
        font-size: 2.5rem;
    }
}

    .hero-title span {
        color: #ffde59 !important;
 } 



.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.highlight {
    color: #ffffff;
    font-weight: 700;
}



/* Countdown Styles */
.countdown-section {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid #fff;
    color: #fff !important;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(208,32,18,0.10);
    padding: 1rem;
    margin: 2rem 0;
}

.countdown-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.countdown-icon i {
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 80px;
    display: inline-block;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0.5rem;
    margin-bottom: 0.5rem;
}

/* Event Details */
.event-details {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.event-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.event-detail i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.event-detail span {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

#event-date{
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-separator {
    width: 1px;
    height: 40px;
    background: white;
    margin: 0 2rem;
}

/* Section Styles */
.about-section {
    padding: 5rem 0;
    background: #D02012;
    color: white;
}

.event-section {
    padding: 5rem 0;
    background: #D02012;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #333;
    position: relative;
    text-align: center;
}

.about-section .section-title {
    color: white;
}

.about-section .section-title::after {
    background: white;
}

.event-section .section-title {
    color: white;
}

.event-section .section-title::after {
    background: white;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background:#E62534;
    /*background: linear-gradient(45deg, #007bff, #4F95BA);*/
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.about-section .section-description {
    color: white;
}

.event-section .section-description {
    color: white;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: #E62534;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Social Media Section */
.social-media-section {
    margin-top: 3rem;
    text-align: center;
}

.social-media-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: white;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-icon.facebook:hover {
    background: #166fe5;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #e0852a 0%, #d55f33 25%, #c31e3a 50%, #b31a5d 75%, #a3177f 100%);
}

.social-icon.linkedin:hover {
    background: #006097;
}

/* Event Info */
/*#event{
    display: none;
}*/
.event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card i {
    font-size: 3rem;
    color: #E62534;
    margin-bottom: 1rem;
}

.event-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.event-card p {
    color: #666;
    line-height: 1.6;
}

.event-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.event-card ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.event-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Fixed Contact Sidebar */
.contact-sidebar {
    position: fixed;
    top: 90px;
    right: 0;
    width: 400px;
    height: calc(95vh - 120px);
    background: #6c757d;
    z-index: 999;
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    margin-top: 2.5rem;
}

/* Contact Section Mobile temporaneamente nascosto*/
#contact-mobile-no{
display: none !important; /* Nascosto temporaneamente ovunque*/
}
.contact-section-mobile {
    display: none; /* Nascosto su desktop */
    padding: 2rem 0;
    background: #f8f9fa;
}

.contact-form-mobile {
    background: #6c757d;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 1rem;
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

/* Nasconde la scrollbar per Webkit browsers (Chrome, Safari, Edge) */
.contact-form-mobile::-webkit-scrollbar {
    display: none;
}

/* Nasconde la scrollbar per Webkit browsers (Chrome, Safari, Edge) */
.contact-sidebar::-webkit-scrollbar {
    display: none;
}

.contact-form-header {
    background: white;
    color: black;
    padding: 1.0rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-radius: 10px 10px 0 0;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: black;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    border: 1px solid #E62534;
}

.form-group select {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: black;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    border: 1px solid #E62534;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-check input[type="checkbox"] {
    margin-top: 0.2rem;
}

.form-check label {
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
}

.read-more {
    color: white;
    text-decoration: underline;
}

.submit-btn {
    background: #E62534;
    color: white;
    border: 2px solid white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.submit-btn:hover {
    background: white;
    color: #E62534;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.fornitori-section {
    background: #ffffff;
    color: #686464;
    padding: 4rem 0;
}

.fornitori-section .section-title {
    color: #333;
}

.fornitori-section .section-description {
    color: #686464;
}

.fornitori-slider {
    margin-top: 2rem;
    position: relative;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 20%; /* 5 slides per volta */
    box-sizing: border-box;
    padding: 0 10px;
}

/* Mobile slider - 1 slide per volta */
@media (max-width: 767.98px) {
    .slide {
        min-width: 100%; /* 1 slide per volta su mobile */
        padding: 0 5px;
    }
    
    .fornitori-slider {
        margin-top: 1rem;
    }
    
    .slider-container {
        margin: 0 -5px;
    }
}

.fornitore-card {
    background: transparent;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.fornitore-card img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.fornitore-card h4 {
    margin: 0.5rem 0 0.2rem 0;
    color: #686464;
    font-size: 1.1rem;
}

.fornitore-card p {
    color: #686464;
    font-size: 0.95rem;
}

.slider-dots {
    text-align: center;
    margin-top: 1rem;
}

.slider-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #686464;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s;
}

.slider-dots .dot.active {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .main-container {
        width: 100%;
        margin-right: 400px;
    }
    

    
    .hero-content {
        margin-right: 0;
        padding: 0.5rem;
        max-width: 100%;
    }
    
    .hero-section {
        padding: 100px 0.5rem 0 0.5rem;
    }
    

    
    .navbar-logo {
        height: 70px; 
    }
    
    .event-details {
        justify-content: center;
        margin-bottom: 0rem;

    }
    
    .event-separator {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .main-container {
        margin-right: 0;
    }
    
    /* Nasconde il form fisso su mobile */
    .contact-sidebar {
        display: none;
    }

    #contact-mobile-no{
        display: none !important; /* Nascosto temporaneamente ovunque*/
        }
    
    /* Mostra il form mobile */
    .contact-section-mobile {
        display: block;
    }
    
    /* Form styling per mobile */
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form-header {
        border-radius: 15px 15px 0 0;
    }
    

    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 3rem;
    }
    
    #event-date{
        font-size: 2rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    
    .hero-description {
        font-size: 1.1rem;
    }
    

    .hero-save-date {
        font-size: 2rem;
    }
    

    
    .countdown-number {
        font-size: 2rem;
        padding: 1rem 0.8rem;
        min-width: 60px;
    }
    
    .countdown-separator {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features,
    .event-info {
        grid-template-columns: 1fr;
    }
    
    /* Social Media responsive */
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .social-media-section h4 {
        font-size: 1.3rem;
    }

    /* Hero Images Slider responsive */
    .hero-images-slider {
        padding: 2rem 0;
    }
    
    .hero-images-slider-container {
        margin-top: 1rem;
    }

    .event-details {
        justify-content: center;
        margin-bottom: 0rem;

    }

}

/* Desktop Form Display */
@media (min-width: 768px) {
    /* Nasconde il form mobile su desktop */
    .contact-section-mobile {
        display: none;
    }
    
    /* Mostra il form fisso su desktop */
    .contact-sidebar {
        display: flex;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
        margin-top: 3rem;
    }
    
    .hero-content {
        padding: 0.25rem;
        max-width: 100%;
    }
    
    .hero-section {
        padding: 100px 0.1rem 0 0.1rem;
    }
    

    
    .countdown-container {
        gap: 0.1rem;
        flex-wrap: nowrap;
    }
    
    .countdown-item {
        min-width: 40px;
        flex-shrink: 0;
    }
    
    .countdown-number {
        font-size: 1.2rem;
        padding: 0.3rem 0.2rem;
        min-width: 35px;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .countdown-separator {
        font-size: 1rem;
        margin: 0 0.1rem;
    }
}

/* Footer Styles */
.footer-section {
    background: #ffffff;
    color: #333;
    padding: 1rem 0 0 0;
    margin-top: 1rem;
}

.footer-content {
    padding: 1rem 0;
}

.footer-info h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 400px;
    flex-wrap: nowrap;
    text-align: center;
}

.contact-item i {
    color: #E62534;
    font-size: 1.2rem;
    min-width: 20px;
}

.contact-item span {
    color: #333;
    text-align: center;
    word-wrap: break-word;
}

.footer-bottom {
    background: #000000;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.designer-credit {
    margin: 0;
    color: white;
    font-size: 0.9rem;
}

.designer-credit a {
    color: #E62534;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.designer-credit a:hover {
    color: #B01E2A;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 767.98px) {
    .footer-info h3 {
        font-size: 1.5rem;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .contact-item {
        font-size: 0.9rem;
        flex-wrap: nowrap;
        text-align: center;
        justify-content: center;
        gap: 0.5rem;
        max-width: 300px;
    }
    
    .contact-info {
        gap: 1rem;
        align-items: center;
    }
    
    .contact-item span {
        text-align: center;
        word-wrap: break-word;
    }
} 

/* Virgolette come immagine */
.hero-quotes-img {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 1rem auto;
    margin-top: 2.5rem;
    animation: blink-yellow 2s ease-in-out infinite;
    filter: brightness(0) invert(1);
}

@keyframes blink-yellow {
    0% {
        filter: brightness(0) invert(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(0) invert(1);
        transform: scale(1.1);
    }
    100% {
        filter: brightness(0) invert(1);
        transform: scale(1);
    }
}

/* Hero Images Slider */
.hero-images-slider {
    background: #ffffff;
    color: #686464;
    padding: 4rem 0;
}

.hero-images-slider-container {
    margin-top: 2rem;
    position: relative;
}

.hero-image-card {
    background:transparent;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.08);*/
}

.hero-image-card img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 0.5rem;
} 

/* --- TEST: Background opaco con immagine per sezioni rosse --- */
.hero-section,
.about-section,
.event-section {
    position: relative;
    background: #D02012;
    color: #fff;
    z-index: 1;
    overflow: hidden;
}

.hero-section::before,
.about-section::before,
.event-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/sfondo-nola-ferramenta.jpeg') center center/cover no-repeat;
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}
/* --- FINE TEST background --- */ 