.hero-intro-section {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #D9D9D9; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 999999 !important; 
    will-change: background-color;
}

.hero-intro-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 20px 24px;
    text-align: center;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    line-height: 1.35;
    color: #1D1D1D;
    margin: 0;
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

.hero-text .text-normal {
    font-weight: 500;
}

.hero-text .text-bold-target {
    font-weight: 500;
    display: inline-block;
}

.hero-text .text-sardegna-prefix {
    display: inline-block;
    will-change: opacity;
}

.hero-text .char {
    display: inline-block;
    font-weight: 500;
    will-change: font-weight, transform;
    transition: font-weight 0.2s ease, transform 0.2s ease;
}

.hero-text .char.is-bold {
    font-weight: 800;
}

.hero-text .text-bold-target.bold-active {
    font-weight: 800;
}

.animated-letter-wrap {
    display: inline-block;
    position: relative;
    vertical-align: baseline;
}

.animated-letter {
    display: inline-block;
    transform-origin: center center;
    will-change: transform, opacity;
}

.red-a-container,
.white-a-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
    will-change: transform, opacity;
    opacity: 0; 
    z-index: 5;
}

.svg-a {
    width: 1em;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 28px;
    }
}