/* Write your css codes here  */

/* ==========================================================
   Voxa House — High-Fashion Hero Redesign
   Overrides only the hero/header section; rest of the site
   keeps its existing look.
   ========================================================== */

:root {
    --display-font: var(--heading-font);
}

.hero__area--editorial {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0;
    overflow: hidden;
    background-color: #0a0a0a;
}

@media screen and (max-width: 767px) {
    .hero__area--editorial {
        min-height: 92vh;
    }
}

.hero__editorial__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__editorial__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.hero__editorial__media img.hero__editorial__media--mobile {
    display: none;
}

@media screen and (max-width: 767px) {
    .hero__editorial__media img.hero__editorial__media--desktop {
        display: none;
    }

    .hero__editorial__media img.hero__editorial__media--mobile {
        display: block;
    }
}

.hero__editorial__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, hsl(0 0% 0% / 0.55) 0%, hsl(0 0% 0% / 0.05) 30%, hsl(0 0% 0% / 0.15) 55%, hsl(0 0% 0% / 0.85) 100%),
        linear-gradient(90deg, hsl(0 0% 0% / 0.55) 0%, transparent 45%);
}

.hero__editorial__content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    padding: 0 40px 110px;
}

@media screen and (max-width: 991px) {
    .hero__editorial__content {
        padding: 0 24px 80px;
    }
}

@media screen and (max-width: 575px) {
    .hero__editorial__content {
        padding: 0 16px 56px;
        max-width: none;
    }
}

.hero__editorial__social {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.hero__editorial__social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid hsl(0 0% 100% / 0.35);
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.hero__editorial__social li a:hover,
.hero__editorial__social li a:focus,
.hero__editorial__social li a:focus-visible {
    border-color: hsl(var(--base));
    background-color: hsl(0 0% 100% / 0.08);
    transform: translateY(-2px);
}

.hero__editorial__social li a img {
    width: 21px;
    height: 21px;
    object-fit: contain;
}

@media screen and (max-width: 575px) {
    .hero__editorial__social {
        gap: 12px;
        margin-bottom: 18px;
    }

    .hero__editorial__social li a {
        width: 38px;
        height: 38px;
    }

    .hero__editorial__social li a img {
        width: 16px;
        height: 16px;
    }
}

.hero__editorial__eyebrow {
    display: inline-block;
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-size: 12px;
    color: hsl(var(--base));
    margin-bottom: 22px;
}

.hero__editorial__content h1 {
    font-family: var(--display-font);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.08;
    font-size: 68px;
    color: hsl(0 0% 98%) !important;
    margin-bottom: 24px;
}

@media screen and (max-width: 1199px) {
    .hero__editorial__content h1 {
        font-size: 50px;
    }
}

@media screen and (max-width: 575px) {
    .hero__editorial__content h1 {
        font-size: 36px;
        margin-bottom: 16px;
    }
}

.hero__editorial__content p {
    color: hsl(0 0% 85%) !important;
    font-size: 18px;
    font-weight: 400;
    max-width: 440px;
    line-height: 1.7;
}

/* -------------------- CTA buttons -------------------- */
.hero__btn {
    margin-top: 40px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
}

.hero__btn .btn {
    padding: 20px 38px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    font-size: 13px;
    white-space: nowrap;
}

.hero__btn .btn--base {
    background-color: hsl(var(--base) / 0.22) !important;
    color: hsl(0 0% 100%) !important;
    border: 1px solid hsl(0 0% 100% / 0.35) !important;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    box-shadow: 0 4px 24px hsl(0 0% 0% / 0.25), inset 0 1px 0 hsl(0 0% 100% / 0.25);
}

.hero__btn .btn--base:hover,
.hero__btn .btn--base:focus,
.hero__btn .btn--base:focus-visible {
    background-color: hsl(var(--base) / 0.35) !important;
    color: hsl(0 0% 100%) !important;
    border-color: hsl(0 0% 100% / 0.55) !important;
}

.hero__btn .btn--white {
    background-color: transparent !important;
    color: hsl(0 0% 97%) !important;
    border: 1px solid hsl(0 0% 100% / 0.55) !important;
}

.hero__btn .btn--white:hover,
.hero__btn .btn--white:focus,
.hero__btn .btn--white:focus-visible {
    background-color: hsl(0 0% 100% / 0.1) !important;
    border-color: hsl(0 0% 100%) !important;
    color: hsl(0 0% 100%) !important;
}

@media screen and (max-width: 575px) {
    .hero__btn {
        gap: 8px;
    }

    .hero__btn .btn {
        padding: 13px 14px;
        font-size: 10px;
        letter-spacing: 0.08em;
        flex: 1 1 0;
        text-align: center;
    }
}

/* ==========================================================
   Voxa House — High-Fashion Header
   Minimal editorial nav: thin tracked type, gold social icons.
   ========================================================== */

.header__area {
    background-color: #0a0a0a;
    border-bottom: 1px solid hsl(0 0% 100% / 0.08);
}

.header__area.fixed-header {
    background-color: #0a0a0a !important;
    box-shadow: 0 4px 30px hsl(0 0% 0% / 0.45);
}

/* -------------------- Transparent overlay on the home hero -------------------- */
.header__area--transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background-color: transparent;
    border-bottom: 1px solid hsl(0 0% 100% / 0.12);
}

.header__area--transparent.fixed-header {
    position: fixed;
    background-color: #0a0a0a !important;
    border-bottom-color: hsl(0 0% 100% / 0.08);
}

.header__area .header__main {
    padding: 26px 40px;
    border: none;
}

@media screen and (max-width: 991px) {
    .header__area .header__main {
        padding: 16px 24px;
    }
}

@media screen and (max-width: 767px) {
    .header__area .header__main {
        padding: 14px 20px;
    }
}

.header__area .header__logo a img {
    max-width: 116px;
}

.header__area .header__menu ul {
    gap: 34px;
}

.header__area .header__menu ul li a {
    color: hsl(0 0% 90%);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.header__area .header__menu ul li a:hover,
.header__area .header__menu ul li a.active {
    color: hsl(var(--base));
}

.header__area .header__widgets {
    gap: 22px;
}

/* -------------------- Minimal split layout: nav | centered logo | nav + icons -------------------- */
.header__main--split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.header__main--split .header__menu--left,
.header__main--split .header__menu--right {
    flex: 1 1 0;
    min-width: 0;
}

.header__main--split .header__menu--left ul {
    justify-content: flex-end;
}

.header__main--split .header__menu--right ul {
    justify-content: flex-start;
}

.header__logo--center {
    flex: 0 0 auto;
    text-align: center;
}

.header__logo--center a img {
    max-width: 100px;
}

.header__widgets--split {
    flex: 1 1 0;
    min-width: 0;
    justify-content: flex-end;
    gap: 18px;
}

@media screen and (max-width: 1199px) {
    .header__main--split {
        gap: 24px;
    }

    .header__main--split .header__menu--left ul,
    .header__main--split .header__menu--right ul {
        gap: 18px;
    }
}

.header__pulse {
    display: none;
}

@media screen and (max-width: 991px) {
    .header__main--split .header__menu--left,
    .header__main--split .header__menu--right {
        display: none;
    }

    .header__main--split {
        position: relative;
        justify-content: flex-start;
    }

    .header__area .header__main--split {
        padding-left: 0;
    }

    .header__logo--center {
        text-align: left;
        flex: 0 0 auto;
        margin-right: auto;
        margin-left: calc(-0.5 * var(--bs-gutter-x, 1.5rem));
    }

    .header__area .header__main--split .header__logo--center a img {
        max-width: 210px;
        width: 100%;
        margin-left: -27px;
        margin-right: -27px;
        margin-top: 0px;
        margin-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .header__widgets--split {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .header__widgets--split .header__social,
    .header__widgets--split .header__lang {
        display: none;
    }

    .header__pulse {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 2;
    }

    .header__pulse__word {
        display: block;
        height: 30px;
        width: auto;
        position: relative;
        z-index: 2;
    }
}

@media screen and (max-width: 480px) {
    .header__pulse__word {
        height: 24px;
    }
}

.header__social {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: 0.25s ease;
}

.header__social li a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.header__social li a img {
    height: 15px;
    width: auto;
    display: block;
}

.header__widgets .header__lang {
    display: flex;
    align-items: center;
    padding-left: 22px;
    border-left: 1px solid hsl(0 0% 100% / 0.15);
}

.header__widgets .header__lang .language__item img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.header__widgets .header__login {
    padding-left: 22px;
    border-left: 1px solid hsl(0 0% 100% / 0.15);
}

.header__area .header__login a {
    color: hsl(0 0% 90%);
    font-size: 15px;
}

.header__area .header__login a:hover {
    color: hsl(var(--base));
}

.header__area .header__main .menu__open {
    color: hsl(0 0% 92%);
}

.offcanvas__area {
    background-color: #0a0a0a;
}

.offcanvas__topbar {
    border-bottom: 1px solid hsl(0 0% 100% / 0.1);
}

.offcanvas__topbar a img {
    max-width: 110px;
}

.offcanvas__topbar .menu__close {
    color: hsl(0 0% 92%);
}

.offcanvas__area .offcanvas__main .offcanvas__menu ul li a,
.offcanvas__menu ul li a {
    color: hsl(0 0% 90%);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.offcanvas__area .offcanvas__main .offcanvas__menu ul li a:hover,
.offcanvas__area .offcanvas__main .offcanvas__menu ul li a.active,
.offcanvas__menu ul li a:hover,
.offcanvas__menu ul li a.active {
    color: hsl(var(--base));
}

.offcanvas__login a {
    color: hsl(0 0% 90%);
}

.offcanvas__login a:hover {
    color: hsl(var(--base));
}

/* ==========================================================
   Voxa House — Mobile-First Homepage Pass (≤767px only)
   Desktop layout/styling is untouched: everything below is
   scoped inside a max-width:767px media query.
   ========================================================== */

@media screen and (max-width: 767px) {

    /* -------------------- Section-to-section rhythm -------------------- */
    /* Subtle background shade shift between sections instead of hard
       divider lines. Hero keeps its own dark background; every other
       top-level homepage section alternates two close, warm neutrals
       so adjacent sections read as distinct blocks. */
    main > section {
        background-color: #ffffff;
    }

    main > section:nth-of-type(even) {
        background-color: #faf8f4;
    }

    main > section.hero__area {
        background-color: #0a0a0a;
    }

    /* -------------------- Key Feature: icon/image beside text -------------------- */
    .key__feature__single {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        max-width: none;
        margin-inline: 0;
    }

    .key__feature__single img {
        width: 60px;
        height: 60px;
        flex: 0 0 auto;
        margin-bottom: 0;
        object-fit: cover;
        border-radius: 12px;
    }

    .key__feature__single__text {
        min-width: 0;
        flex: 1 1 auto;
    }

    .key__feature__single__text h4 {
        margin-bottom: 4px;
        font-size: 15px;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* -------------------- Pricing card header: icon beside title -------------------- */
    .pricing__topbar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }

    .pricing__topbar > span {
        margin-bottom: 0;
        flex: 0 0 auto;
        width: 44px;
        height: 44px;
    }

    .pricing__topbar__text {
        flex: 1 1 auto;
        min-width: 0;
    }

    .pricing__topbar__text h5,
    .pricing__topbar__text p {
        margin-bottom: 0;
    }

    .pricing__topbar__text h5 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pricing__topbar h3 {
        flex: 0 0 100%;
        margin-top: 8px;
    }

    /* -------------------- Feature/Service grid: icon beside title -------------------- */
    .feature__single {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
    }

    .feature__single span {
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .feature__single__text {
        min-width: 0;
        flex: 1 1 auto;
    }

    .feature__single__text h5,
    .feature__single__text p {
        margin-bottom: 0;
    }

    .feature__single__text h5 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* -------------------- General mobile-first spacing/typography pass -------------------- */
    .key__topbar {
        gap: 20px;
    }

    .key__topbar .btn,
    .cta__wrap .btn,
    .faq__area .section__heading .btn {
        width: 100%;
        text-align: center;
    }

    .about__wrap {
        margin-bottom: 8px;
    }

    .pricing__card {
        border-radius: 16px;
    }

    .testimonial__single {
        padding-inline: 4px;
    }
}

