/* Hero Section Styles */
.hero-section {
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    display: flex;
}

.video-half {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.video-half video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
}

.hero-content {
    height: 100%;
    z-index: 10;
}

.amunix-logo {
    font-family: 'Century Gothic', 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Century Gothic', 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
}

.hero-subtitle {
    font-family: 'Century Gothic', 'Nunito Sans', sans-serif;
    font-size: 1.1rem;
}

.hero-tagline {
    font-family: 'Century Gothic', 'Nunito Sans', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-button {
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 10px 20px;
    font-family: 'Century Gothic', 'Nunito Sans', sans-serif;
}