/* Hero Section Styles */
.hero {
    padding-top: 120px; /* Account for fixed header */
    background: linear-gradient(206deg, #895cf5 0%, #6665f1 100%);}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    padding-right: var(--spacing-md);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.hero-buttons {
    display: flex;
    margin-bottom: var(--spacing-md);
}

.hero-buttons .btn {
    margin-right: var(--spacing-sm);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    color: white;
}

.feature {
    display: flex;
    align-items: center;
    margin-right: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.feature i {
    color: #00e835;
    margin-right: 8px;
    font-size: 1.1rem;
}

.feature span {
    font-weight: 500;
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        margin-right: 0;
        margin-bottom: var(--spacing-sm);
        width: 100%;
    }
}
