SiteVitrinePaysagiste/css/styles.css

1053 lines
21 KiB
CSS
Raw Permalink Normal View History

/* ==========================================================================
Variables & Reset
========================================================================== */
2026-07-27 14:10:44 +00:00
:root {
--vert-fonce: #123a1a;
--vert-fonce-2: #154e1f;
--vert-clair: #6bab21;
--vert-pale: #eef4e8;
2026-07-27 14:10:44 +00:00
--blanc: #ffffff;
--fond-gris: #f6f8f4;
--texte-sombre: #202b22;
--texte-doux: #55635a;
--font-titres: "Poppins", "Segoe UI", sans-serif;
--font-texte: "Inter", "Segoe UI", sans-serif;
--rayon: 14px;
--rayon-lg: 22px;
--ombre: 0 10px 30px rgba(18, 58, 26, 0.1);
--ombre-forte: 0 20px 45px rgba(18, 58, 26, 0.18);
--transition: 0.3s ease;
2026-07-27 14:10:44 +00:00
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 90px;
}
2026-07-27 14:10:44 +00:00
body {
color: var(--texte-sombre);
line-height: 1.6;
2026-07-27 14:10:44 +00:00
overflow-x: hidden;
background: var(--fond-gris);
font-family: var(--font-texte);
font-size: 16px;
2026-07-27 14:10:44 +00:00
}
h1, h2, h3 {
font-family: var(--font-titres);
color: var(--vert-fonce);
line-height: 1.25;
}
img {
max-width: 100%;
}
a {
color: inherit;
}
/* ==========================================================================
Boutons
========================================================================== */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.6rem;
padding: 0.9rem 1.8rem;
border-radius: 999px;
font-weight: 600;
font-size: 0.95rem;
text-decoration: none;
white-space: nowrap;
transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
border: 2px solid transparent;
cursor: pointer;
}
.btn-primary {
background: var(--vert-clair);
color: var(--blanc);
box-shadow: 0 10px 25px rgba(107, 171, 33, 0.35);
}
.btn-primary:hover {
background: var(--vert-fonce-2);
transform: translateY(-2px);
box-shadow: 0 14px 30px rgba(21, 78, 31, 0.35);
}
.btn-outline {
background: rgba(255, 255, 255, 0.08);
color: var(--blanc);
border-color: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(4px);
}
.btn-outline:hover {
background: var(--blanc);
color: var(--vert-fonce);
transform: translateY(-2px);
}
.btn-light {
background: var(--blanc);
color: var(--vert-fonce);
}
.btn-light:hover {
background: var(--vert-pale);
transform: translateY(-2px);
}
/* ==========================================================================
Header
========================================================================== */
.site-header {
position: sticky;
top: 0;
z-index: 100;
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(21, 78, 31, 0.1);
}
.header-inner {
max-width: 1400px;
margin: 0 auto;
padding: 0.7rem 1.25rem;
2026-07-27 14:10:44 +00:00
display: flex;
align-items: center;
justify-content: space-between;
}
.brand {
display: flex;
align-items: center;
gap: 0.6rem;
text-decoration: none;
font-family: var(--font-titres);
color: var(--vert-fonce);
font-size: 1.05rem;
letter-spacing: 0.3px;
}
.brand strong {
color: var(--vert-clair);
2026-07-27 14:10:44 +00:00
}
#logo {
width: 44px;
height: 44px;
object-fit: contain;
}
.nav-toggle {
display: none;
}
.nav-burger {
display: none;
position: relative;
width: 28px;
height: 22px;
cursor: pointer;
z-index: 110;
}
.nav-burger span,
.nav-burger::before,
.nav-burger::after {
content: "";
position: absolute;
left: 0;
width: 100%;
height: 2.5px;
background: var(--vert-fonce);
border-radius: 2px;
transition: transform var(--transition), opacity var(--transition), top var(--transition);
2026-07-27 14:10:44 +00:00
}
.nav-burger::before { top: 0; }
.nav-burger span { top: 10px; }
.nav-burger::after { top: 20px; }
/* Navigation desktop (inline dans le header) */
.nav-desktop {
display: none;
align-items: center;
gap: 1.6rem;
}
.nav-desktop a {
text-decoration: none;
color: var(--texte-sombre);
font-weight: 500;
font-size: 0.95rem;
transition: color var(--transition);
}
.nav-desktop a:hover {
color: var(--vert-clair);
}
.nav-desktop .nav-socials {
padding-left: 0.4rem;
border-left: 1px solid rgba(21, 78, 31, 0.15);
}
.nav-desktop .nav-socials a {
2026-07-27 14:10:44 +00:00
color: var(--vert-fonce);
font-size: 1.05rem;
2026-07-27 14:10:44 +00:00
}
/* Navigation mobile (plein écran, hors du header pour éviter
qu'un ancêtre position:sticky ne piège le position:fixed) */
.nav-mobile {
position: fixed;
inset: 0;
z-index: 105;
background: var(--vert-fonce);
2026-07-27 14:10:44 +00:00
display: flex;
flex-direction: column;
2026-07-27 15:02:36 +00:00
justify-content: center;
align-items: center;
2026-07-27 15:02:36 +00:00
gap: 2rem;
transform: translateX(100%);
transition: transform 0.35s ease;
2026-07-27 14:10:44 +00:00
}
.nav-mobile a {
2026-07-27 14:10:44 +00:00
text-decoration: none;
color: var(--blanc);
font-weight: 500;
font-size: 1.25rem;
2026-07-27 14:10:44 +00:00
}
.nav-mobile a:hover {
color: #b7e07a;
2026-07-27 14:10:44 +00:00
}
.nav-mobile .nav-socials {
border-top: 1px solid rgba(255, 255, 255, 0.2);
padding-top: 1.4rem;
}
.nav-mobile .nav-socials a {
color: var(--blanc);
font-size: 1.4rem;
}
.nav-mobile .nav-cta {
margin-top: 0.5rem;
}
.nav-toggle:checked ~ .nav-mobile {
transform: translateX(0);
}
body:has(.nav-toggle:checked) {
overflow: hidden;
}
body:has(.nav-toggle:checked) .nav-burger span {
opacity: 0;
}
body:has(.nav-toggle:checked) .nav-burger::before {
top: 10px;
transform: rotate(45deg);
}
body:has(.nav-toggle:checked) .nav-burger::after {
top: 10px;
transform: rotate(-45deg);
}
.nav-socials {
display: flex;
gap: 1rem;
transition: color var(--transition), transform var(--transition);
}
.nav-socials a {
transition: color var(--transition), transform var(--transition);
}
.nav-socials a:hover {
transform: translateY(-2px);
}
.nav-cta {
padding: 0.6rem 1.3rem;
font-size: 0.9rem;
}
/* ==========================================================================
Hero
========================================================================== */
.hero {
position: relative;
display: flex;
align-items: flex-end;
min-height: 78vh;
overflow: hidden;
2026-07-28 12:09:04 +00:00
width: 100vw;
margin-left: calc(50% - 50vw);
2026-07-28 12:15:35 +00:00
padding-bottom: 3.5rem;
}
.hero #photo,
.hero #photosmall,
.hero #photolarge {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}
.hero #photosmall,
.hero #photolarge {
display: none;
}
.hero-overlay {
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(180deg, rgba(15, 40, 20, 0.55) 0%, rgba(15, 40, 20, 0.65) 55%, rgba(10, 30, 15, 0.88) 100%);
}
.hero-content {
position: relative;
z-index: 2;
color: var(--blanc);
max-width: 780px;
padding: 3rem 1.5rem 3.5rem;
2026-07-28 12:09:04 +00:00
/*margin: 0 auto;*/
text-align: center;
2026-07-28 12:09:04 +00:00
width: 100%;
margin: auto!important;
}
.hero-kicker {
text-transform: uppercase;
letter-spacing: 2px;
font-size: 0.85rem;
font-weight: 600;
color: #b7e07a;
margin-bottom: 1rem;
}
.hero-content h1 {
color: var(--blanc);
font-size: 2rem;
font-weight: 700;
margin-bottom: 1.1rem;
2026-07-27 14:10:44 +00:00
}
.hero-text {
font-size: 1rem;
color: rgba(255, 255, 255, 0.92);
margin-bottom: 1.8rem;
2026-07-27 14:10:44 +00:00
}
.hero-actions {
2026-07-27 14:10:44 +00:00
display: flex;
flex-direction: column;
gap: 0.9rem;
align-items: stretch;
}
/* ==========================================================================
Highlights
========================================================================== */
.highlights {
max-width: 1300px;
margin: -2.5rem auto 0;
position: relative;
z-index: 3;
background: var(--blanc);
border-radius: var(--rayon-lg);
box-shadow: var(--ombre-forte);
padding: 1.6rem 1.2rem;
display: grid;
grid-template-columns: 1fr;
gap: 1.4rem;
margin-left: 1rem;
margin-right: 1rem;
}
.highlight {
display: flex;
align-items: center;
gap: 1rem;
}
.highlight i {
flex-shrink: 0;
width: 48px;
height: 48px;
display: flex;
2026-07-27 14:10:44 +00:00
align-items: center;
justify-content: center;
border-radius: 50%;
background: var(--vert-pale);
color: var(--vert-clair);
font-size: 1.15rem;
2026-07-27 14:10:44 +00:00
}
.highlight h3 {
font-size: 1rem;
margin-bottom: 0.1rem;
2026-07-28 08:25:20 +00:00
}
.highlight p {
font-size: 0.85rem;
color: var(--texte-doux);
2026-07-28 08:25:20 +00:00
}
/* ==========================================================================
Sections communes
========================================================================== */
2026-07-28 12:09:04 +00:00
main, .hero-content {
max-width: 1300px;
margin: 0 auto;
padding: 0 1.25rem;
2026-07-27 14:10:44 +00:00
}
section {
padding: 4.5rem 0 1rem;
}
.section-kicker {
2026-07-27 14:10:44 +00:00
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 0.8rem;
font-weight: 700;
color: var(--vert-clair);
margin-bottom: 0.6rem;
}
.section-title {
text-align: center;
font-size: 1.7rem;
font-weight: 700;
margin-bottom: 0.8rem;
}
.section-subtitle {
text-align: center;
max-width: 640px;
margin: 0 auto 2.5rem;
color: var(--texte-doux);
font-size: 0.98rem;
}
/* ==========================================================================
Services
========================================================================== */
.services-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1.4rem;
padding-bottom: 1rem;
}
.service-card {
background: var(--blanc);
border-radius: var(--rayon);
padding: 2rem 1.6rem;
text-align: center;
box-shadow: var(--ombre);
transition: transform var(--transition), box-shadow var(--transition);
border: 1px solid rgba(21, 78, 31, 0.06);
}
.service-card:hover {
transform: translateY(-6px);
box-shadow: var(--ombre-forte);
}
.service-icon {
width: 64px;
height: 64px;
margin: 0 auto 1.2rem;
border-radius: 50%;
background: linear-gradient(135deg, var(--vert-clair), var(--vert-fonce-2));
color: var(--blanc);
display: flex;
align-items: center;
justify-content: center;
2026-07-27 14:10:44 +00:00
font-size: 1.5rem;
}
.service-card h3 {
font-size: 1.05rem;
margin-bottom: 0.6rem;
}
.service-card p {
2026-07-27 14:10:44 +00:00
font-size: 0.9rem;
color: var(--texte-doux);
}
/* ==========================================================================
Réalisations / Galerie
========================================================================== */
.scroll-hint {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
2026-07-27 14:10:44 +00:00
}
.gallery {
2026-07-27 14:10:44 +00:00
display: flex;
flex-direction: row;
gap: 1rem;
overflow-x: auto;
overscroll-behavior-x: contain;
scroll-snap-type: x mandatory;
padding-bottom: 1.5rem;
scrollbar-width: thin;
scrollbar-color: var(--vert-clair) rgba(0, 0, 0, 0.05);
2026-07-27 14:10:44 +00:00
}
.gallery::-webkit-scrollbar {
2026-07-27 14:10:44 +00:00
height: 6px;
}
.gallery::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.05);
2026-07-27 14:10:44 +00:00
border-radius: 10px;
}
.gallery::-webkit-scrollbar-thumb {
2026-07-27 14:10:44 +00:00
background: var(--vert-clair);
border-radius: 10px;
}
.gallery > div {
flex: 0 0 85%;
2026-07-27 14:10:44 +00:00
scroll-snap-align: center;
background-color: var(--blanc);
border-radius: var(--rayon);
2026-07-27 14:10:44 +00:00
overflow: hidden;
box-shadow: var(--ombre);
2026-07-27 14:10:44 +00:00
}
.gallery img {
2026-07-27 14:10:44 +00:00
width: 100%;
height: 240px;
2026-07-27 14:10:44 +00:00
object-fit: cover;
display: block;
2026-07-28 12:15:35 +00:00
cursor: zoom-in;
transition: transform 0.5s ease;
2026-07-27 14:10:44 +00:00
}
2026-07-28 12:15:35 +00:00
/* ==========================================================================
Lightbox
========================================================================== */
.lightbox {
position: fixed;
inset: 0;
z-index: 200;
display: none;
align-items: center;
justify-content: center;
padding: 2rem;
background: rgba(0, 0, 0, 0.9);
cursor: zoom-out;
}
.lightbox.is-open {
display: flex;
}
.lightbox img {
max-width: 100%;
max-height: 100%;
border-radius: var(--rayon);
box-shadow: var(--ombre-forte);
cursor: default;
}
.lightbox-close {
position: absolute;
top: 1.2rem;
right: 1.5rem;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
border: none;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
color: var(--blanc);
font-size: 1.3rem;
cursor: pointer;
transition: background var(--transition), transform var(--transition);
}
.lightbox-close:hover {
background: rgba(255, 255, 255, 0.2);
transform: scale(1.05);
}
/* ==========================================================================
Bande CTA
========================================================================== */
.cta-band {
margin: 3rem -1.25rem 0;
padding: 3.5rem 1.5rem;
background: linear-gradient(135deg, var(--vert-fonce), var(--vert-fonce-2));
color: var(--blanc);
2026-07-27 14:10:44 +00:00
text-align: center;
border-radius: 0;
}
.cta-band h2 {
color: var(--blanc);
font-size: 1.5rem;
margin-bottom: 0.8rem;
}
.cta-band p {
color: rgba(255, 255, 255, 0.88);
max-width: 520px;
margin: 0 auto 1.6rem;
2026-07-27 14:10:44 +00:00
font-size: 0.95rem;
}
/* ==========================================================================
Contact
========================================================================== */
.contact-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1.4rem;
}
.contact-cards {
display: grid;
grid-template-columns: 1fr;
gap: 1rem;
}
.contact-card {
display: flex;
align-items: center;
gap: 1rem;
background: var(--blanc);
border-radius: var(--rayon);
padding: 1.3rem 1.4rem;
box-shadow: var(--ombre);
text-decoration: none;
transition: transform var(--transition), box-shadow var(--transition);
}
a.contact-card:hover {
transform: translateY(-4px);
box-shadow: var(--ombre-forte);
}
.contact-card i {
flex-shrink: 0;
width: 46px;
height: 46px;
border-radius: 50%;
background: var(--vert-pale);
color: var(--vert-clair);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
}
.contact-card h3 {
font-size: 0.95rem;
margin-bottom: 0.2rem;
}
.contact-card p {
font-size: 0.88rem;
color: var(--texte-doux);
}
.contact-map {
border-radius: var(--rayon);
overflow: hidden;
box-shadow: var(--ombre);
min-height: 260px;
}
.contact-map iframe {
width: 100%;
height: 100%;
min-height: 260px;
border: 0;
display: block;
}
/* ==========================================================================
Footer
========================================================================== */
2026-07-27 15:02:36 +00:00
footer {
background: var(--vert-fonce);
2026-07-27 15:02:36 +00:00
color: var(--blanc);
margin-top: 4rem;
padding: 3rem 1.25rem 1.5rem;
}
.footer-top {
max-width: 1300px;
margin: 0 auto 2.5rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 1.2rem;
2026-07-27 14:10:44 +00:00
text-align: center;
padding-bottom: 2rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
2026-07-28 11:45:13 +00:00
.footer-top img{
width: 40px;
border-radius: 10px;
}
.footer-top .brand {
color: var(--blanc);
}
.footer-top .brand strong {
color: #b7e07a;
}
.footer-socials {
display: flex;
gap: 1.4rem;
}
.footer-socials a {
color: var(--blanc);
font-size: 1.3rem;
text-decoration: none;
transition: color var(--transition), transform var(--transition);
}
.footer-socials a:hover {
color: #b7e07a;
transform: scale(1.1);
2026-07-27 14:10:44 +00:00
}
2026-07-27 15:02:36 +00:00
.footer-sections {
max-width: 1300px;
margin: 0 auto;
2026-07-27 15:02:36 +00:00
display: flex;
flex-direction: column;
align-items: center;
gap: 2rem;
2026-07-27 14:10:44 +00:00
margin-bottom: 1rem;
text-align: center;
2026-07-27 14:10:44 +00:00
}
2026-07-27 15:02:36 +00:00
.footer-block {
width: 100%;
}
.footer-block h3 {
color: var(--blanc);
font-size: 1.05rem;
2026-07-27 15:02:36 +00:00
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 1px;
2026-07-27 14:10:44 +00:00
}
2026-07-27 15:02:36 +00:00
.footer-block p {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
margin-bottom: 0.8rem;
font-size: 0.92rem;
2026-07-27 15:02:36 +00:00
word-break: break-word;
2026-07-27 14:10:44 +00:00
}
.footer-block p a {
text-decoration: none;
color: rgba(255, 255, 255, 0.85);
transition: color var(--transition);
}
.footer-block p a:hover {
color: #b7e07a;
}
2026-07-27 15:02:36 +00:00
.footer-block i {
width: 20px;
2026-07-27 14:10:44 +00:00
text-align: center;
}
.footer-bottom {
max-width: 1300px;
margin: 0 auto;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.15);
display: flex;
flex-direction: column-reverse;
align-items: center;
gap: 1rem;
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.75);
text-align: center;
}
.back-to-top {
width: 42px;
height: 42px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
color: var(--blanc);
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: background var(--transition), transform var(--transition);
}
.back-to-top:hover {
background: var(--vert-clair);
transform: translateY(-3px);
}
/* ==========================================================================
Media Queries Tablette (768px+)
========================================================================== */
2026-07-27 14:10:44 +00:00
@media (min-width: 768px) {
.hero-content h1 {
font-size: 2.6rem;
2026-07-27 14:10:44 +00:00
}
.hero-text {
font-size: 1.1rem;
2026-07-28 08:25:20 +00:00
}
.hero-actions {
flex-direction: row;
justify-content: center;
2026-07-27 14:10:44 +00:00
}
.highlights {
grid-template-columns: repeat(4, 1fr);
padding: 2rem 2.2rem;
2026-07-27 14:10:44 +00:00
}
.highlight {
flex-direction: column;
text-align: center;
gap: 0.7rem;
}
.section-title {
font-size: 2rem;
}
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
.gallery > div {
flex: 0 0 auto;
width: calc(50% - 0.5rem);
}
.contact-cards {
grid-template-columns: repeat(2, 1fr);
}
.footer-top {
flex-direction: row;
justify-content: space-between;
text-align: left;
2026-07-27 15:02:36 +00:00
}
.footer-sections {
flex-direction: row;
justify-content: space-between;
text-align: left;
2026-07-27 15:02:36 +00:00
}
.footer-block p {
justify-content: flex-start;
}
.footer-bottom {
flex-direction: row;
justify-content: space-between;
text-align: left;
2026-07-28 08:25:20 +00:00
}
}
/* ==========================================================================
Media Queries Desktop (1024px+)
========================================================================== */
2026-07-28 08:25:20 +00:00
@media (min-width: 1024px) {
2026-07-28 12:17:16 +00:00
.mobileOnly{
display: none!important;
}
.header-inner {
padding: 0.9rem 2rem;
}
2026-07-28 08:25:20 +00:00
.nav-desktop {
display: flex;
2026-07-27 14:10:44 +00:00
}
2026-07-28 08:25:20 +00:00
.nav-burger {
display: none;
2026-07-28 08:25:20 +00:00
}
.hero {
min-height: 88vh;
align-items: center;
}
.hero #photo {
2026-07-28 08:25:20 +00:00
display: none;
}
.hero #photosmall {
2026-07-28 08:44:35 +00:00
display: block;
}
.hero-overlay {
background: linear-gradient(90deg, rgba(10, 30, 15, 0.92) 0%, rgba(10, 30, 15, 0.6) 55%, rgba(10, 30, 15, 0.2) 100%);
}
.hero-content {
max-width: 1300px;
text-align: left;
2026-07-28 08:25:20 +00:00
margin: 0;
padding: 0 3rem;
}
.hero-content h1 {
font-size: 3.2rem;
max-width: 640px;
}
.hero-text {
max-width: 560px;
}
.hero-actions {
justify-content: flex-start;
}
.highlights {
margin-left: auto;
margin-right: auto;
padding: 2rem 3rem;
}
.services-grid {
grid-template-columns: repeat(4, 1fr);
}
.gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
overflow-x: visible;
scroll-snap-type: none;
padding-bottom: 0;
}
.gallery > div {
width: auto;
2026-07-28 08:25:20 +00:00
}
.gallery img {
height: 260px;
2026-07-28 08:25:20 +00:00
}
.gallery > div:hover img {
2026-07-28 08:44:35 +00:00
transform: scale(1.08);
2026-07-28 08:25:20 +00:00
}
.cta-band {
margin-left: 0;
margin-right: 0;
border-radius: var(--rayon-lg);
padding: 4rem 3rem;
2026-07-28 08:44:35 +00:00
}
2026-07-28 08:25:20 +00:00
.contact-grid {
grid-template-columns: 1.1fr 1fr;
align-items: stretch;
2026-07-28 08:44:35 +00:00
}
2026-07-28 08:25:20 +00:00
.contact-map {
min-height: 100%;
2026-07-28 08:25:20 +00:00
}
.contact-map iframe {
min-height: 100%;
2026-07-28 08:44:35 +00:00
}
}
2026-07-28 08:44:35 +00:00
/* ==========================================================================
Media Queries Grand écran (1440px+)
========================================================================== */
@media (min-width: 1440px) {
2026-07-28 12:09:04 +00:00
main, .hero-content {
max-width: 1440px;
2026-07-28 08:44:35 +00:00
}
.highlights,
.cta-band {
max-width: 1440px;
2026-07-28 08:44:35 +00:00
}
.hero #photosmall {
display: none;
}
.hero #photolarge {
display: block;
}
2026-07-28 08:44:35 +00:00
.hero-content h1 {
font-size: 3.6rem;
2026-07-28 08:44:35 +00:00
}
.gallery img {
height: 300px;
}
2026-07-28 08:44:35 +00:00
}
/* ==========================================================================
Menu mobile (< 1024px) le burger s'affiche, le nav desktop reste caché
========================================================================== */
@media (max-width: 1023px) {
.nav-burger {
display: block;
}
}