/* _content/LandscapeDesignService/Components/Layout/MainLayout.razor.rz.scp.css */
/* ─── SITE SHELL ──────────────────────────────────────────── */

.site-shell[b-jlzcuihw8d] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ─── PROMO BAR ───────────────────────────────────────────── */

.promo-bar[b-jlzcuihw8d] {
    background: linear-gradient(90deg, #064e3b 0%, #065f46 40%, #047857 70%, #064e3b 100%);
    background-size: 200% 100%;
    animation: promo-shimmer-b-jlzcuihw8d 6s linear infinite;
    color: #ecfdf5;
    font-size: 0.85rem;
    position: relative;
    z-index: 110;
}

@keyframes promo-shimmer-b-jlzcuihw8d {
    0%   { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.promo-inner[b-jlzcuihw8d] {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0.55rem 3rem 0.55rem 1.2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.promo-text[b-jlzcuihw8d] {
    margin: 0;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.4;
}

.promo-text strong[b-jlzcuihw8d] { font-weight: 700; color: #6ee7b7; }
.promo-sep[b-jlzcuihw8d] { margin: 0 0.2rem; opacity: 0.6; }

.promo-cta[b-jlzcuihw8d] {
    background: #10b981;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(16,185,129,0.5);
    transition: background 0.15s, transform 0.15s;
}

.promo-cta:hover[b-jlzcuihw8d] { background: #059669; transform: translateY(-1px); }

.promo-close[b-jlzcuihw8d] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(255,255,255,0.1);
    color: #ecfdf5;
    cursor: pointer;
    font-size: 0.8rem;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.promo-close:hover[b-jlzcuihw8d] { background: rgba(255,255,255,0.22); }

/* ─── TOP NAV ─────────────────────────────────────────────── */

.top-nav[b-jlzcuihw8d] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: none;
}

.top-nav-inner[b-jlzcuihw8d] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    height: 62px;
    display: flex;
    align-items: center;
    position: relative;          /* needed for absolute-centred links */
}

/* ─── BRAND ───────────────────────────────────────────────── */

.brand[b-jlzcuihw8d] {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1;
}

.brand-wordmark[b-jlzcuihw8d] {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    line-height: 1;
    letter-spacing: -0.01em;
    user-select: none;
}

.brand-ambre[b-jlzcuihw8d] {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.brand-studio[b-jlzcuihw8d] {
    font-size: 1.3rem;
    font-weight: 300;
    color: #10b981;
    letter-spacing: 0.06em;
}

.brand:hover .brand-ambre[b-jlzcuihw8d] { color: #0f172a; }
.brand:hover .brand-studio[b-jlzcuihw8d] { color: #059669; }

.brand-wordmark--lg .brand-ambre[b-jlzcuihw8d],
.brand-wordmark--lg .brand-studio[b-jlzcuihw8d] {
    font-size: 1.7rem;
}

/* ─── NAV LINKS — absolutely centred in the bar ───────────── */

.nav-links[b-jlzcuihw8d] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links[b-jlzcuihw8d]  a {
    position: relative;
    text-decoration: none;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    white-space: nowrap;
    letter-spacing: 0.01em;
    transition: color 0.15s ease;
}

.nav-links[b-jlzcuihw8d]  a:hover {
    color: #111827;
    background: transparent;
}

.nav-links[b-jlzcuihw8d]  a.active {
    color: #111827;
    font-weight: 600;
    background: transparent;
}

/* nav-text span — inline-block so ::after positions relative to text width only */
.nav-links[b-jlzcuihw8d]  a .nav-text {
    position: relative;
    display: inline-block;
}

/* green dot — positioned relative to span width = text width, so left:50% is exact text centre */
.nav-links[b-jlzcuihw8d]  a.active .nav-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #10b981;
}

/* ─── RIGHT SIDE ──────────────────────────────────────────── */

.nav-right[b-jlzcuihw8d] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    z-index: 1;
}

.nav-phone[b-jlzcuihw8d] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.01em;
    transition: color 0.18s;
}

.nav-phone[b-jlzcuihw8d]::before {
    content: "📞";
    font-size: 0.85rem;
}

.nav-phone:hover[b-jlzcuihw8d] {
    color: #10b981;
}

.nav-cta[b-jlzcuihw8d] {
    text-decoration: none;
    padding: 7px 20px;
    border-radius: 8px;
    background: transparent;
    border: 1.5px solid #10b981;
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: none;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}

.nav-cta:hover[b-jlzcuihw8d] {
    background: #10b981;
    color: #fff;
    box-shadow: 0 4px 14px rgba(16,185,129,0.3);
    transform: none;
    opacity: 1;
}

/* ─── HAMBURGER ───────────────────────────────────────────── */

.nav-toggle[b-jlzcuihw8d] {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 300;
}

.nav-toggle-line[b-jlzcuihw8d] {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-toggle.open .nav-toggle-line:nth-child(1)[b-jlzcuihw8d] { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .nav-toggle-line:nth-child(2)[b-jlzcuihw8d] { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .nav-toggle-line:nth-child(3)[b-jlzcuihw8d] { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE BACKDROP ─────────────────────────────────────── */

.mobile-backdrop[b-jlzcuihw8d] {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: rgba(10, 20, 15, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-backdrop.open[b-jlzcuihw8d] { opacity: 1; pointer-events: all; }

/* ─── MOBILE DRAWER ───────────────────────────────────────── */

.mobile-overlay[b-jlzcuihw8d] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    z-index: 200;
    background: #0a1a10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}

.mobile-overlay.open[b-jlzcuihw8d] {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
}

.mobile-overlay-close[b-jlzcuihw8d] {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.mobile-overlay-close:hover[b-jlzcuihw8d] { background: rgba(255,255,255,0.15); }

.mobile-overlay-inner[b-jlzcuihw8d] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px 28px;
    text-align: center;
}

.mobile-overlay-logo[b-jlzcuihw8d] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 44px;
    opacity: 0.7;
}

.mobile-overlay-logo span[b-jlzcuihw8d] {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mobile-nav-links[b-jlzcuihw8d] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 36px;
    width: 100%;
}

.mobile-nav-links a[b-jlzcuihw8d] {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 12px;
    letter-spacing: -0.02em;
    transition: color 0.15s, background 0.15s;
    width: 100%;
}

.mobile-nav-links a:hover[b-jlzcuihw8d],
.mobile-nav-links a:active[b-jlzcuihw8d] {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.mobile-cta[b-jlzcuihw8d] {
    display: inline-block;
    padding: 0.85rem 2.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(16,185,129,0.45);
    transition: transform 0.15s, box-shadow 0.15s;
    margin-bottom: 28px;
}

.mobile-cta:hover[b-jlzcuihw8d] {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(16,185,129,0.55);
}

.mobile-overlay-tagline[b-jlzcuihw8d] {
    color: rgba(255,255,255,0.18);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

body.menu-open[b-jlzcuihw8d] { overflow: hidden; }

/* ─── PAGE BODY ───────────────────────────────────────────── */

.page-body[b-jlzcuihw8d] {
    flex: 1 1 auto;
    background-color: #f5f7fb;
}

/* ─── FOOTER ──────────────────────────────────────────────── */

.site-footer[b-jlzcuihw8d] {
    border-top: 1px solid rgba(148,163,184,0.3);
    background: #f5f7fb;
    padding: 0.75rem 1.2rem;
}

.footer-inner[b-jlzcuihw8d] {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.footer-left[b-jlzcuihw8d] { display: flex; flex-direction: column; gap: 0.15rem; }
.footer-brand[b-jlzcuihw8d] { font-weight: 600; color: #4b5563; }
.footer-links[b-jlzcuihw8d] { display: flex; gap: 0.75rem; }
.footer-links a[b-jlzcuihw8d] { text-decoration: none; color: #6b7280; }
.footer-links a:hover[b-jlzcuihw8d] { color: #111827; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 900px) {
    .nav-links[b-jlzcuihw8d] { display: none; }
    .nav-cta[b-jlzcuihw8d] { display: none; }
    .nav-phone[b-jlzcuihw8d] { display: none; }
    .nav-toggle[b-jlzcuihw8d] { display: flex; }
    .nav-right[b-jlzcuihw8d] { margin-left: auto; }

    .top-nav-inner[b-jlzcuihw8d] {
        padding: 0 16px;
    }
}

@media (max-width: 640px) {
    .promo-sep[b-jlzcuihw8d] { display: none; }
    .promo-text[b-jlzcuihw8d] { font-size: 0.8rem; }
    .promo-cta[b-jlzcuihw8d] { display: none; }
}

@media (max-width: 480px) {
    .footer-inner[b-jlzcuihw8d] {
        flex-direction: column;
        align-items: flex-start;
    }
}
