.parallax-section {
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    /*background: linear-gradient(135deg, rgba(234,84,85,0.6) 5%, rgba(45,64,89,0.6) 40%);*/
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.hero-title {
    /*font-size: 3.5rem;*/
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.shop-now-btn {
    transition: transform 0.3s ease;
}

.shop-now-btn:hover {
    transform: translateY(-3px);
}