/* ============================================
   STEP 1 - Landing Page Styles
   ============================================ */

/* --- Step 1 Cover Photo Reset --- */
#step1.cover-photo {
    position: relative;
    height: auto;
    min-height: auto;
    overflow: visible;
    width: 100%;
}

/* --- Landing Layout (Two Columns) --- */
.step1-landing {
    display: flex;
    width: 100%;
    min-height: 70vh;
}

/* --- Left Panel: Hero --- */
.step1-hero {
    position: relative;
    width: 50%;
    min-height: 70vh;
    overflow: hidden;
}

.step1-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.step1-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
}

.step1-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
    padding: 60px 50px;
    box-sizing: border-box;
}

.step1-hero__label {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #333;
    background: rgba(255,255,255,0.92);
    padding: 6px 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.step1-hero__title {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 28px 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.step1-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 48px;
    background: #fff;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.step1-hero__cta:hover {
    background: #000;
    color: #fff;
}

.step1-hero__saved-walls {
    margin-top: 20px;
    display: none;
}

/* --- Right Panel: Presets --- */
.step1-presets {
    width: 50%;
    padding: 40px 40px 40px 50px;
    background: #fff;
    overflow-y: auto;
    box-sizing: border-box;
}

.step1-presets__header {
    margin-bottom: 30px;
}

.step1-presets__label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.step1-presets__title {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.5px;
    color: #111;
    text-transform: uppercase;
    margin: 0;
}

/* --- Preset Cards --- */
.step1-presets__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step1-preset-card {
    display: flex;
    align-items: stretch;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.step1-preset-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.step1-preset-card__img {
    width: 180px;
    min-height: 120px;
    flex-shrink: 0;
    overflow: hidden;
}

.step1-preset-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 3/2;
}

.step1-preset-card__info {
    flex: 1;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step1-preset-card__name {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 6px 0;
}

.step1-preset-card__desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #777;
    line-height: 1.4;
    margin: 0 0 14px 0;
}

.step1-preset-card__btn {
    display: inline-block;
    width: fit-content;
    padding: 8px 22px;
    background: #111;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1.5px solid #111;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

/* .step1-preset-card__btn:hover {
    background: #111;
    color: #fff;
} */

.step1-preset-card__actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.step1-preset-card__view {
    display: inline-block;
    width: fit-content;
    padding: 8px 22px;
    background: #000000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1.5px solid #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step1-preset-card__view:focus {
    outline: none;
}

/* .step1-preset-card__view:hover {
    background: transparent;
    color: #008205;
} */

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media screen and (max-width: 1024px) {
    .step1-landing {
        flex-direction: column;
        min-height: auto;
    }

    .step1-hero {
        width: 100%;
        min-height: 50vh;
        display: flex;
        align-items: center;
    }

    .step1-hero__content {
        padding: 40px 30px;
    }

    .step1-hero__title {
        font-size: 24px;
    }

    .step1-presets {
        width: 100%;
        padding: 30px 24px;
    }

    .step1-presets__title {
        font-size: 20px;
    }

    .step1-preset-card__img {
        width: 140px;
        min-height: 100px;
    }

    .step1-preset-card__name {
        font-size: 13px;
    }

    .step1-hero__saved-walls {
        display: block;
    }
}

/* Mobile */
@media screen and (max-width: 600px) {
    .step1-hero {
        min-height: 45vh;
    }

    .step1-hero__content {
        padding: 30px 20px;
    }

    .step1-hero__label {
        font-size: 11px;
        padding: 4px 12px;
    }

    .step1-hero__title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .step1-hero__cta {
        padding: 12px 36px;
        font-size: 13px;
    }

    .step1-presets {
        padding: 24px 16px;
    }

    .step1-presets__title {
        font-size: 18px;
    }

    .step1-preset-card {
        flex-direction: column;
    }

    .step1-preset-card__img {
        width: 100%;
        min-height: 160px;
    }

    .step1-preset-card__info {
        padding: 14px 16px;
    }

    .step1-preset-card__name {
        font-size: 14px;
    }
}

/* Small Mobile */
@media screen and (max-width: 380px) {
    .step1-hero__title {
        font-size: 18px;
    }

    .step1-hero__cta {
        padding: 10px 28px;
        font-size: 12px;
    }

    .step1-presets__title {
        font-size: 16px;
    }
}
