/* =========================================
   MAIN NAVIGATION
========================================= */

.main-nav {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background-color: transparent;

    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}


/* kada scrollamo */

.main-nav.is-scrolled {
    background-color: rgba(253, 241, 239, 0.94);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 0.4rem 2rem rgba(73, 45, 112, 0.08);
}


.main-nav-inner {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 3rem;

    width: 100%;
    max-width: 150rem;

    min-height: 8rem;

    margin: 0 auto;

    padding:
        0
        2rem;
}


/* =========================================
   BRAND
========================================= */

.nav-brand {
    display: flex;

    align-items: center;

    gap: 1rem;

    flex-shrink: 0;

    color: var(--main-color);

    text-decoration: none;
}


.nav-brand-icon {
    color: var(--main-color);

    font-size: 2.8rem;
}


.nav-brand-name {
    font-size: 3rem;
    font-weight: 500;

    white-space: nowrap;
}
.logo{
    width: 4rem;
    height: 4rem;
}

.brand-flower-purple {
    fill: #492d70;
}

.brand-flower-lilac {
    fill: #e1d2ff;
}

.brand-flower-dark {
    fill: #3d2b43;
}

.brand-flower-green {
    fill: #213e42;
}

.brand-flower-light {
    fill: #faf0ee;
}

.brand-flower-black {
    fill: #0b0f14;
}
/* =========================================
   LINKS
========================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 4rem;

    margin: 0;
    padding: 0;

    list-style: none;
}


.nav-link {
    position: relative;

    color: #292226;

    font-size: 1.8rem;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.3s ease;
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -0.8rem;

    width: 100%;
    height: 0.2rem;

    background-color: var(--accent-color);

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 0.3s ease;
}


.nav-link:hover {
    color: var(--accent-color);
}


.nav-link:hover::after {
    transform: scaleX(1);
}


/* =========================================
   RIGHT ACTIONS
========================================= */

.nav-actions {
    display: flex;

    align-items: center;

    gap: 3rem;

    flex-shrink: 0;
}


.nav-buy {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-width: 13rem;
    height: 5rem;

    padding:
        0
        2rem;

    background-color: var(--main-color);

    color: white;

    border-radius: 999px;

    text-decoration: none;

    font-size: 1.8rem;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}


.nav-buy:hover {
    background-color: var(--accent-color);
}


/* =========================================
   INSTAGRAM
========================================= */

.nav-instagram {
    display: flex;

    justify-content: center;
    align-items: center;

    width: 4rem;
    height: 4rem;

    color: var(--main-color);

    text-decoration: none;
}


.nav-instagram svg {
    width: 5rem;
    height: 5rem;

    fill: var(--main-color);

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.nav-instagram:hover svg {
    fill: var(--accent-color);
}


.nav-instagram:hover svg {
    transform: scale(1.08);
}

/* Responsive navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 4.4rem;
    height: 4.4rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle-line {
    display: block;
    width: 2.6rem;
    height: 0.2rem;
    border-radius: 999px;
    background: var(--main-color);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-mobile-buy-item {
    display: none;
    }

