/*
Theme Name: Be Health Sport
Theme URI: https://behealthsport.com.br
Author: Be Health Sport
Author URI: https://behealthsport.com.br
Description: Tema premium para a academia Be Health Sport - Premium Fitness, SPA & Recovery em Águas Claras, Brasília.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: behealth
Tags: one-page, custom-logo, custom-menu, featured-images, theme-options

Be Health Sport WordPress Theme
Copyright 2025 Be Health Sport
*/

/* ============================================
   PALETA DE CORES BE HEALTH SPORT
   ============================================ */
:root {
    /* Cores principais da marca */
    --cream: #F0E6DB;
    --taupe: #96816E;
    --sand: #D1BFAD;
    --brown: #5A4534;
    --dark-brown: #3A291C;
    
    /* Cores de suporte */
    --white: #FAFAF8;
    --off-white: #F5F0EA;
    --charcoal: #1A1A1A;
    --text-dark: #2D2D2D;
    --text-muted: #6B6B6B;
    
    /* Tipografia */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Sora', sans-serif;
    
    /* Transições */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--sand);
    color: var(--dark-brown);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--dark-brown);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 1s var(--ease-smooth), visibility 1s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 120px;
    opacity: 0;
    animation: loaderFade 1.5s var(--ease-smooth) forwards;
}

.loader-logo img {
    width: 100%;
    filter: brightness(0) invert(1);
}

@keyframes loaderFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HEADER
   ============================================ */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s var(--ease-smooth);
}

header.site-header.scrolled {
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 6%;
    box-shadow: 0 1px 0 rgba(90, 69, 52, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s var(--ease-smooth);
}

.logo:hover img {
    transform: scale(1.02);
}

/* Navigation */
nav.main-navigation {
    display: flex;
    gap: 3rem;
    align-items: center;
}

nav.main-navigation ul {
    display: flex;
    gap: 3rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav.main-navigation a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brown);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

nav.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--taupe);
    transition: width 0.4s var(--ease-smooth);
}

nav.main-navigation a:hover {
    color: var(--taupe);
}

nav.main-navigation a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--brown) !important;
    color: var(--cream) !important;
    padding: 0.85rem 1.8rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    transition: all 0.3s var(--ease-smooth) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--dark-brown) !important;
    transform: translateY(-1px);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--brown);
    transition: all 0.3s;
    transform-origin: center;
    display: block;
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translateY(4.5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translateY(-4.5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 8% 6rem;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--taupe);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.8s var(--ease-out) 0.4s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s var(--ease-out) 0.6s forwards;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--taupe);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--taupe);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s var(--ease-out) 0.7s forwards;
}

.hero-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 420px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s var(--ease-out) 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s var(--ease-out) 0.9s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease-smooth);
}

.btn-primary {
    background: var(--dark-brown);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--brown);
    transform: translateY(-1px);
}

.btn-primary svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-outline {
    background: transparent;
    color: var(--brown);
    border: 1px solid var(--sand);
}

.btn-outline:hover {
    background: var(--cream);
    border-color: var(--taupe);
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    animation: heroImageReveal 1.2s var(--ease-out) 0.3s forwards;
}

@keyframes heroImageReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(150, 129, 110, 0.1), transparent 50%);
    pointer-events: none;
}

/* ============================================
   SOBRE NÓS
   ============================================ */
.about {
    padding: 10rem 6%;
    background: var(--white);
}

.about-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--sand);
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.about-content h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--taupe);
}

.about-content p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-signature {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sand);
}

.about-signature span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.about-signature strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--brown);
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out) 0.2s;
}

.about-images.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-img {
    overflow: hidden;
    position: relative;
}

.about-img:first-child {
    aspect-ratio: 3/4;
    margin-top: 3rem;
}

.about-img:last-child {
    aspect-ratio: 3/4;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.about-img:hover img {
    transform: scale(1.03);
}

/* ============================================
   EXPERIÊNCIAS
   ============================================ */
.experiences {
    padding: 8rem 6%;
    background: var(--off-white);
}

.experiences-header {
    max-width: 1400px;
    margin: 0 auto 5rem;
    text-align: center;
}

.experiences-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.experiences-header h2 em {
    font-style: italic;
    color: var(--taupe);
}

.experiences-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.experience-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.experience-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.experience-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.experience-item:nth-child(even) {
    direction: rtl;
}

.experience-item:nth-child(even) > * {
    direction: ltr;
}

.experience-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
    filter: sepia(10%) saturate(90%);
}

.experience-item:hover .experience-image img {
    transform: scale(1.03);
}

.experience-content {
    padding: 2rem 0;
}

.experience-number {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--taupe);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.experience-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.experience-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.experience-list li {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(150, 129, 110, 0.15);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.experience-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--taupe);
    border-radius: 50%;
    flex-shrink: 0;
}

.limited-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream);
    color: var(--brown);
    padding: 1rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-top: 2rem;
    border: 1px solid var(--sand);
}

.limited-badge strong {
    color: var(--dark-brown);
}

/* ============================================
   VALORES / CONCEITO
   ============================================ */
.values {
    background: var(--dark-brown);
    color: var(--cream);
    padding: 8rem 6%;
}

.values-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 5rem;
}

.values-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.values-header h2 span {
    color: var(--sand);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.value-card {
    padding: 2rem 0;
    border-top: 1px solid rgba(209, 191, 173, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-out);
}

.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-number {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--sand);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--cream);
}

.value-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(240, 230, 219, 0.6);
    line-height: 1.8;
}

/* ============================================
   LOCALIZAÇÃO
   ============================================ */
.location {
    padding: 8rem 6%;
    background: var(--white);
}

.location-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.location-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.location-content h2 em {
    font-style: italic;
    color: var(--taupe);
}

.location-tagline {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--taupe);
    margin-bottom: 2rem;
}

.location-address {
    margin-bottom: 2rem;
}

.address-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--sand);
}

.address-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark-brown);
}

.address-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.location-map {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.05);
    transition: filter 0.5s;
}

.location-map:hover iframe {
    filter: grayscale(30%) contrast(1);
}

/* ============================================
   CTA / INSCRIÇÃO
   ============================================ */
.cta {
    padding: 10rem 6%;
    background: linear-gradient(135deg, var(--brown) 0%, var(--dark-brown) 100%);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(209, 191, 173, 0.08), transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(209, 191, 173, 0.15);
    color: var(--sand);
    padding: 0.6rem 1.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(209, 191, 173, 0.3);
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.cta h2 em {
    font-style: italic;
    color: var(--sand);
}

.cta p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(240, 230, 219, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta .btn-primary {
    background: var(--sand);
    color: var(--dark-brown);
}

.cta .btn-primary:hover {
    background: var(--cream);
}

.cta-limit {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: rgba(240, 230, 219, 0.5);
    letter-spacing: 0.08em;
}

.cta-limit span {
    color: var(--sand);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
footer.site-footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 5rem 6% 2rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(240, 230, 219, 0.1);
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(240, 230, 219, 0.5);
    line-height: 1.8;
}

.footer-column h4 {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--sand);
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(240, 230, 219, 0.6);
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--sand);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(240, 230, 219, 0.4);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 230, 219, 0.1);
    color: rgba(240, 230, 219, 0.6);
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--sand);
    color: var(--sand);
    background: rgba(209, 191, 173, 0.1);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s var(--ease-smooth);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu a {
    font-size: 1rem;
    padding: 1rem 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--sand);
}

.mobile-menu .nav-cta {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    nav.main-navigation:not(.mobile-menu) {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 10rem 6% 4rem;
        order: 2;
    }

    .hero-image {
        height: 50vh;
        min-height: 400px;
        order: 1;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-item:nth-child(even) {
        direction: ltr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about-images {
        grid-template-columns: 1fr;
    }

    .about-img:first-child {
        margin-top: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

/* Admin bar fix */
body.admin-bar header.site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar header.site-header {
        top: 46px;
    }
}
