/* Hero Landing — Full-viewport wrapper */

.hero-landing {
    display: flex;
    flex-direction: column;
    /*min-height: 150vh;*/
    min-height: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* Hero Top — Value Proposition */

.hero-top {
    background: #FFF8F0;
    background: #FCF8F8;
    padding: 20px 2px 20px;
    text-align: center;
    box-sizing: border-box;
}

.hero-top__title {
    position: relative; /* required for pseudo-element */
}

/* luxury gold line */
.hero-top__title::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 0 auto 10px;

    background: linear-gradient(
        90deg,
        #c5a047 0%,
        #ffd700 50%,
        #c5a047 100%
    );

    border-radius: 2px;

    /* subtle glow = premium feel */
    box-shadow:
        0 0 6px rgba(212,175,55,0.45),
        0 0 12px rgba(212,175,55,0.25);

    opacity: 0.95;
}

/* Hero New — Main content area */

.hero-new {
    flex: 1;
    background: #2A2A2A;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-new::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url('/static/images/hero/gold-hero.webp') no-repeat right bottom / contain;
    opacity: 0.25;
    filter: invert(1) sepia(1) saturate(4) brightness(0.75) hue-rotate(-5deg);
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-new__price-strip {
    font-family: 'Bebas Neue', sans-serif;
    background-color: #4e4201;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: rgba(212, 175, 55, 0.6);
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 1;
}

.hero-new__price-period {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.3);
}


.hero-new__zones {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    max-width: 680px;
    margin: 0 auto;
}

.hero-new__zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 16px;
    box-sizing: border-box;
    border-bottom: 5px solid rgb(255 195 0 / 42%);
}

.hero-new__zone:last-child {
    border-bottom: 5px solid rgb(255 195 0 / 42%);
}

.hero-new__zone-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    margin: 0 0 6px;
}

.hero-new__zone-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    letter-spacing: 1px;
}

.hero-new__zone-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    padding: 14px 12px 0;
    letter-spacing: 0.3px;
    line-height: 1.6;
    position: relative;
    text-align: left;
    overflow: hidden;
    width: 100%;
}

.hero-new__zone-desc::before {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    margin: 0 auto 14px;
    background: linear-gradient(90deg, #c5a047, #ffd700, #c5a047);
    border-radius: 1px;
    opacity: 0.5;
}


@media (max-width: 480px) {
    .hero-new {
        padding: 8px;
    }
    .hero-new::after {
        opacity: 0.15;
    }
}

.hero-top__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 6px;
    border-radius: 14px;
    background: linear-gradient(145deg, #3a3a3a, #252525);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.4), -2px -2px 6px rgba(255,255,255,0.05);
    color: #d4af37;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
}

.hero-top__icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 14px rgba(0,0,0,0.5), -2px -2px 8px rgba(255,255,255,0.08);
    color: #f0d060;
}

.hero-top__inner {
    margin: 0 auto;
}

.hero-top__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #b8962e; /* darker than #d4af37 */
    opacity: 0.9;
    margin-bottom: 4px;
        text-shadow:
        0 1px 0 rgba(0,0,0,0.15),
        0 2px 6px rgba(0,0,0,0.12);
}

.hero-top__icon span {
    width: 40px;
    height: 1px;
    background: #d4af37;
    opacity: 0.4;
}

.hero-top__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    line-height: 1.05;
    color: #d4af37;
    margin: 0;
    text-transform: uppercase;

    text-shadow:
        0 1px 0 rgba(0,0,0,0.15),
        0 2px 6px rgba(0,0,0,0.12);
}

.hero-top__desc {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #333333;
    margin: 2px auto 0;
    max-width: 580px;
    font-weight: 400;
    line-height: 1.2;     /* optional: tighter text inside lines */
}

/* Dumpster trap block — appended below current hero text */
.hero-top__dumpster {
    margin: 22px auto 0;
    padding: 18px 12px 16px;
    max-width: 580px;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.hero-top__dumpster-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.hero-top__dumpster-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333333;
    margin: 0 auto 4px;
    font-weight: 400;
}

.hero-top__dumpster-form {
    margin: 0;
    padding: 0;
}

.hero-top__dumpster-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 22px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    background: linear-gradient(90deg, #c5a047 0%, #ffd700 50%, #c5a047 100%);
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    transition: transform 0.15s, box-shadow 0.15s;
}

.hero-top__dumpster-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

@media (max-width: 480px) {
    .hero-top__dumpster {
        padding: 16px 2px 14px;
    }
}

/* Slim banner-style Open Dumpster button (used on catalog pages) */
.dumpster-banner-form {
    margin: 12px auto;
    padding: 0;
    max-width: 720px;
    text-align: center;
}

.dumpster-banner-btn {
    display: block;
    width: 100%;
    padding: 6px 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    background: linear-gradient(90deg, #c5a047 0%, #ffd700 50%, #c5a047 100%);
    border: 1px solid #1a1a1a;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.18);
    transition: transform 0.15s, box-shadow 0.15s;
}

.dumpster-banner-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}

@media (max-width: 480px) {
    .dumpster-banner-form {
        margin: 8px 2px;
    }
    .dumpster-banner-btn {
        font-size: 0.95rem;
        padding: 5px 12px;
    }
}

/* Hero Top Accent Options */

/* Gift box icon accent */
.hero-top__accent--icon {
    text-align: center;
    margin: 0 auto 1px;
    opacity: 0.5;
}

/* Hero Top Dark variant */
.hero-top-dark {
    background: #2A2A2A;
    padding: 24px 2px 20px;
    text-align: center;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.hero-top-dark__inner {
    margin: 0 auto;
}

.hero-top-dark__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    line-height: 1.05;
    color: #d4af37;
    margin: 0;
    text-transform: uppercase;
    position: relative;
}

.hero-top-dark__title::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 0 auto 10px;
    background: linear-gradient(90deg, #c5a047 0%, #ffd700 50%, #c5a047 100%);
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.45), 0 0 12px rgba(212, 175, 55, 0.25);
    opacity: 0.95;
}

.hero-top-dark__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 2px auto 0;
    max-width: 580px;
    font-weight: 400;
}