@import url('/static/css/theme/colors.css');

.home .title {

}

.home .subtitle {
    font-size: 1.5rem;
}

.home .button {
    background-color: var(--dark-purple);
    outline: none;
    border: 1px solid var(--dark-purple);
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.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: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-surface, #111827);
    opacity: 0.6;
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-primary, #e5e7eb);
    padding: 2rem;
}