/* _content/IconicNails/Views/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-745zs6yu3i] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}
header[b-745zs6yu3i] {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.8);
    border-bottom: 1px solid var(--border);
}

.nav[b-745zs6yu3i] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand[b-745zs6yu3i] {
    display: flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: var(--text);
}

.brand-logo[b-745zs6yu3i] {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    color: #fff;
}
a[b-745zs6yu3i] {
  color: black;
}

.btn-primary[b-745zs6yu3i] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-745zs6yu3i], .nav-pills .show > .nav-link[b-745zs6yu3i] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-745zs6yu3i] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-745zs6yu3i] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-745zs6yu3i] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-745zs6yu3i] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-745zs6yu3i] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
/* Hamburger menu button */
.nav-toggle[b-745zs6yu3i] {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
}

    .nav-toggle .bar[b-745zs6yu3i] {
        width: 22px;
        height: 2px;
        background-color: var(--text);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

/* Default nav links (desktop) */
.nav-links[b-745zs6yu3i] {
    display: flex;
    gap: 18px;
}

    .nav-links a[b-745zs6yu3i] {
        text-decoration: none;
        color: var(--muted);
        font-weight: 500;
    }

        .nav-links a:hover[b-745zs6yu3i] {
            color: var(--brand);
        }

/* Mobile behavior */
@media (max-width: 768px) {
    .nav-toggle[b-745zs6yu3i] {
        display: flex;
    }

    .nav-links[b-745zs6yu3i] {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        background: #ffffff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-soft);
        display: none;
        padding: 16px 0;
        z-index: 50;
    }

        .nav-links a[b-745zs6yu3i] {
            padding: 12px 0;
            width: 100%;
            text-align: center;
        }

        .nav-links.show[b-745zs6yu3i] {
            display: flex;
        }

    /* Animate the hamburger into an "X" */
    .nav-toggle.open .bar:nth-child(1)[b-745zs6yu3i] {
        transform: rotate(45deg) translateY(6px);
    }

    .nav-toggle.open .bar:nth-child(2)[b-745zs6yu3i] {
        opacity: 0;
    }

    .nav-toggle.open .bar:nth-child(3)[b-745zs6yu3i] {
        transform: rotate(-45deg) translateY(-6px);
    }
}
