/* 
 * hero.css - Hero-Sektion Styles
 * LineTrack Website
 */

 .hero {
    padding: 150px 0 100px;
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.app-store-link {
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.app-store-link:hover {
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .app-store-link {
        display: block;
        margin-left: 0;
        margin-top: 15px;
    }
}