/* Hero section styling */
#noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.08;
    z-index: 100;
    mix-blend-mode: multiply;
}

.hero-section {
    position: relative;
    min-height: 80vh;
    padding: 4rem 0;
    background: var(--brutal-white);
    border-bottom: var(--brutal-border);
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: var(--brutal-white);
    border: var(--brutal-border);
    box-shadow: var(--brutal-shadow);
    transform: translate(-6px, -6px);
    transition: transform 0.3s ease;
}

.hero-content:hover {
    transform: translate(-8px, -8px);
    box-shadow: 10px 10px 0 var(--brutal-black);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--brutal-black);
}

.hero-title span {
    color: var(--brutal-accent);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 3rem;
    max-width: 600px;
    color: var(--brutal-black);
}

.shop-now-button1 {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brutal-white);
    background: var(--brutal-accent);
    border: var(--brutal-border);
    box-shadow: var(--brutal-shadow);
    transition: all 0.2s ease;
}

.shop-now-button1:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--brutal-black);
    text-decoration: none;
    color: var(--brutal-white);
    background: var(--brutal-hover);
}

/* Decorative elements */
.hero-decoration {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    background: repeating-linear-gradient(
        45deg,
        var(--brutal-accent),
        var(--brutal-accent) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.2;
    z-index: 1;
}

.brutal-accent-block {
    position: absolute;
    bottom: -20px;
    right: 10%;
    width: 100px;
    height: 100px;
    background: var(--brutal-accent);
    border: var(--brutal-border);
    transform: rotate(15deg);
}

.brutal-hover-block {
    position: absolute;
    top: 40px;
    right: 25%;
    width: 60px;
    height: 60px;
    background: var(--brutal-hover);
    border: var(--brutal-border);
    transform: rotate(-10deg);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-content {
        margin: 1rem;
        transform: none;
    }

    .hero-content:hover {
        transform: translate(-4px, -4px);
    }

    .hero-decoration {
        opacity: 0.1;
        width: 100%;
        right: -20%;
    }

    .brutal-accent-block,
    .brutal-hover-block {
        display: none;
    }
}