/* =================================================================
STANDALONE PACKAGE - Move Breathe Academy nav + footer styles
Paste this ONCE into your site builder's Custom CSS field.
Then paste the nav HTML in your header area and the footer
HTML in your footer area.
================================================================= */
/* Design tokens */
:root {
--green: #37ca37;
--sage: #7CAB8E;
--mint: #74C299;
--blue: #188bf6;
--navy: #2c3345;
--dark: #000321;
--light1: #F6F6FF;
--light2: #f5f5f5;
--light3: #C9D8E0;
--white: #ffffff;
--font-head: 'Montserrat', sans-serif;
--font-body: 'Roboto', sans-serif;
}
/* Google Fonts - same as the home page */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Roboto:wght@300;400;500&display=swap');
/* ============ NAV STYLES ============ */
.site-header {
position: sticky;
top: 0;
z-index: 100;
background: var(--white);
border-bottom: 1px solid rgba(124,171,142,.22);
box-shadow: 0 2px 10px rgba(44,51,69,.06);
}
.nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
max-width: 1100px;
margin: 0 auto;
padding: .7rem 1.25rem;
}
.nav-logo {
display: flex;
align-items: center;
gap: .65rem;
text-decoration: none;
}
.nav-logo img {
height: 42px;
width: auto;
object-fit: contain;
}
.nav-logo-text {
font-family: var(--font-head);
font-weight: 800;
font-size: 1rem;
color: var(--navy);
line-height: 1.2;
}
.nav-logo-text span {
display: block;
font-weight: 400;
font-size: .72rem;
color: var(--sage);
letter-spacing: .06em;
text-transform: uppercase;
}
.nav-links {
display: flex;
align-items: center;
gap: 1.6rem;
list-style: none;
}
.nav-links a {
font-family: var(--font-head);
font-size: .82rem;
font-weight: 600;
letter-spacing: .04em;
color: var(--navy);
text-transform: uppercase;
transition: color .2s;
text-decoration: none;
}
.nav-links a:hover { color: var(--sage); }
.nav-links a:focus-visible { outline: 2px solid var(--sage); border-radius: 2px; }
.nav-cta {
font-size: .78rem !important;
padding: .5rem 1.1rem !important;
}
.nav-item-dropdown { position: relative; }
.nav-dropdown-trigger {
display: inline-flex;
align-items: center;
gap: .25rem;
cursor: pointer;
}
.nav-caret { font-size: .65rem; transition: transform .2s; display: inline-block; }
.nav-item-dropdown:hover .nav-caret,
.nav-item-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%) translateY(-6px);
min-width: 240px;
background: var(--white);
border: 1px solid rgba(201,216,224,.6);
border-top: 3px solid var(--sage);
border-radius: 0 0 8px 8px;
box-shadow: 0 12px 32px rgba(44,51,69,.12);
list-style: none;
padding: .6rem 0;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity .18s, transform .18s, visibility .18s;
z-index: 200;
}
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
opacity: 1;
visibility: visible;
pointer-events: auto;
transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
display: block;
padding: .6rem 1.2rem;
font-family: var(--font-head);
font-size: .78rem;
font-weight: 600;
letter-spacing: .04em;
text-transform: uppercase;
color: var(--navy);
text-decoration: none;
transition: background .15s, color .15s;
white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--light1); color: var(--sage); }
.nav-dropdown-divider {
height: 1px;
background: rgba(201,216,224,.6);
margin: .4rem 0;
}
.nav-mobile-toggle {
display: none;
background: transparent;
border: none;
cursor: pointer;
padding: .5rem;
flex-direction: column;
gap: 4px;
}
.nav-mobile-toggle span {
display: block;
width: 22px;
height: 2px;
background: var(--navy);
border-radius: 2px;
transition: transform .2s, opacity .2s;
}
@media (max-width: 767px) {
.nav-links { display: none; }
.nav-logo-text { display: none; }
.nav-mobile-toggle { display: flex; }
}
.site-footer {
background: var(--dark);
color: rgba(246,246,255,.65);
padding: 3rem 1.25rem 2rem;
}
.footer-inner {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 2.5rem;
}
.footer-brand img {
height: 40px;
width: auto;
object-fit: contain;
margin-bottom: .85rem;
opacity: .9;
}
.footer-brand p {
font-size: .82rem;
line-height: 1.65;
max-width: 280px;
}
.footer-col h4 {
font-family: var(--font-head);
font-size: .72rem;
font-weight: 700;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--sage);
margin-bottom: .9rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
font-size: .83rem;
color: rgba(246,246,255,.6);
transition: color .2s;
text-decoration: none;
}
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
max-width: 1100px;
margin: 2rem auto 0;
padding-top: 1.5rem;
border-top: 1px solid rgba(255,255,255,.08);
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: .5rem;
font-size: .75rem;
color: rgba(246,246,255,.35);
}
@media (max-width: 767px) {
.footer-inner { grid-template-columns: 1fr; }
.footer-bottom { flex-direction: column; text-align: center; }
}
.footer-policies {
display: flex;
gap: 1.2rem;
flex-wrap: wrap;
justify-content: center;
}
.footer-policies a {
font-size: .78rem;
color: var(--sage);
text-decoration: none;
transition: color .2s;
letter-spacing: .04em;
}
.footer-policies a:hover { color: var(--mint); text-decoration: underline; }
.footer-socials {
display: flex;
justify-content: center;
gap: 1rem;
margin: 1.5rem auto 0;
padding-top: 1.5rem;
border-top: 1px solid rgba(255,255,255,.08);
max-width: 1100px;
}
.footer-socials a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255,255,255,.06);
color: rgba(246,246,255,.7);
transition: background .2s, color .2s, transform .15s;
text-decoration: none;
}
.footer-socials a:hover {
background: var(--sage);
color: #fff;
transform: translateY(-2px);
text-decoration: none;
}
.footer-socials a:focus-visible {
outline: 2px solid var(--mint);
outline-offset: 2px;
}
.footer-socials svg {
width: 20px;
height: 20px;
fill: currentColor;
}
.footer-socials-label {
display: block;
width: 100%;
text-align: center;
font-family: var(--font-head);
font-size: .72rem;
font-weight: 700;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--sage);
margin: 1.5rem auto 0;
max-width: 1100px;
}