:root {
    --primary-color: #f0e8d3;
    --secondary-color: #510509;
    --hover-color: #0b4779;
}

.page-header .inner h1,
.page-header .inner p {
    color: #fff;
    opacity: 1;
}

.page-header .inner {
    position: relative;
    padding: 40px 20px;
}

.page-header .inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2); /* intensità regolabile */
    backdrop-filter: blur(2px);   /* leggero effetto premium */
    border-radius: 12px;          /* opzionale, più elegante */
    z-index: 1;
}

.page-header .inner h1,
.page-header .inner p {
    position: relative;
    z-index: 2;
    color: #fff;
}

.accordion dt a:before {
    background: var(--secondary-color);
    color: var(--primary-color);

}

.preloader svg {
  fill: var(--primary-color);
}

.page-transition {
background: var(--primary-color);
}

.preloader {
background: var(--primary-color);
}

.preloader .inner small {
    color: var(--secondary-color);
}

 .navbar {
    background-color: #fff;
}

.progress-bar {
    color: var(--secondary-color);
}

.homePage {
    height: 100vh;
}

.homePage .contact-box a {
    color: var(--secondary-color);
    font-weight: 600;
    transition-duration: 0.7s;
    text-decoration: none;
    opacity: 1;
}

.homePage .contact-box a:hover {
    color: var(--hover-color);
}

.exhibition-box figure .info span {
    background: var(--secondary-color);
}

.exhibition-box figure .info span a {
    color: var(--primary-color);
}

.homePage .contact-box {
    padding-right: 0;
}

.homePage .col-12.text-center .custom-button {
    margin-top: 20px;
}

.custom-button {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.custom-button:hover {
    color: var(--primary-color);
}

.custom-button:hover:before {
    border-color: var(--primary-color);
}

.exhibition-box .content-box {
    justify-content: center;
}

.exhibition-box .content-box .custom-button {
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
}

.video-section video,
.video-section iframe {
    width:100%; 
    border-radius:12px;
}

.faq-section {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.back-section {
    position: relative;
    z-index: 3;
    
}

.poi-list {
    margin-bottom: 80px;
}

.section-title {
    margin-bottom: 30px;
}

@media (max-width: 991px){

    .navbar {
        padding: 0;
    }

    .navbar .logo a img {
        height: 90px;
    }

    .section-title h2 {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .content-section {
        padding: 80px 0 50px;
    }

    .footer {
        padding-top: 30px;
    }

    .footer .footer-bottom {
        padding: 20px 0;
        border-top: solid 2px var(--secondary-color);
        margin-top: 30px;
    }
}

@media (min-width: 992px){

}