.home-container {
    width: 100%;
}

.banner {
    background: linear-gradient(rgba(5, 4, 7, 0.8), rgba(5, 4, 7, 0.8)),
        url("/assets/banner-bg.jpg") center/cover;
    background-color: var(--perigord-black);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.banner-content {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}

.banner-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--perigord-yellow);
}

.banner-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--perigord-yellow);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.banner-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.btn-register {
    display: inline-block;
    background-color: var(--perigord-yellow);
    color: var(--perigord-black);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.15s ease;
    margin-top: 1rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.btn-register:hover::before {
    left: 150%;
}

.btn-register:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.parallax-divider {
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media (max-width: 768px) {
    .parallax-divider {
        background-attachment: scroll;
        height: 100px;
    }
}
