/* Hero Video Background */
.gf-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.gf-hero {
    position: relative;
    overflow: hidden;
}
.gf-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}
.gf-hero-content {
    position: relative;
    z-index: 2;
}

/* Override finale - inline per massima priorità */
.gf-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 24px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.gf-hero .gf-hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 40px;
}
.gf-hero .gf-hero-logo {
    width: 45%;
    max-width: 380px;
    margin: 0 auto 24px;
    display: block;
}

/* Notebook 13-15" */
@media (max-width: 1440px) {
    .gf-hero .gf-hero-logo {
        width: 40%;
    }
    .gf-hero h1 {
        font-size: 2.2rem;
    }
    .gf-hero .gf-hero-subtitle {
        font-size: 1.05rem;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .gf-header-logo img {
        height: 38px;
    }
    .gf-hero .gf-hero-logo {
        width: 55%;
    }
    .gf-hero h1 {
        font-size: 2rem;
    }
    .gf-hero .gf-hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gf-header-logo img {
        height: 35px;
    }
    .gf-hero .gf-hero-logo {
        width: 65%;
    }
    .gf-hero h1 {
        font-size: 2rem;
    }
    .gf-hero .gf-hero-subtitle {
        font-size: 1.1rem;
    }
}
