/* ================================
   GLOBAL STYLES
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Krub:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #000000;
  overflow: visible;
}

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

/* ================================
   NAVIGATION
   ================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 100;
  background: transparent;
  mix-blend-mode: difference;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 64px;
  list-style: none;
}

.nav-links a {
  font-family: 'Krub', sans-serif;
  font-weight: 400;
  font-size: 11px;
  text-decoration: none;
  position: relative;
  color: #ffffff;
}

/* Underline animation — nav links */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

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

.nav-links a:not(:hover)::after {
  width: 0;
  left: auto;
  right: 0;
  transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Active nav link — always underlined */
.nav-links a.active::after {
  width: 100% !important;
  left: 0 !important;
  right: auto !important;
}

/* ================================
   FOOTER
   ================================ */

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 100;
  background: transparent;
  mix-blend-mode: difference;
}

.nav-logo,
.nav-links a,
.footer-name,
.footer-copyright,
.footer-contact,
.footer-location {
  color: #ffffff;
}

.footer-logo,
.footer-instagram img {
  filter: brightness(0) invert(1);
}

.footer-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  width: 36px;
  height: 36px;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
}

.footer-copyright {
  font-family: 'Krub', sans-serif;
  font-weight: 400;
  font-size: 10px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 64px;
}

.footer-location {
  font-family: 'Krub', sans-serif;
  font-weight: 400;
  font-size: 12px;
}

.footer-contact {
  position: relative;
  font-family: 'Krub', sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-decoration: none;
}

/* Underline animation — email */
.footer-contact::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.footer-contact:hover::after {
  width: 100%;
}

.footer-contact:not(:hover)::after {
  width: 0;
  left: auto;
  right: 0;
  transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.footer-instagram img {
  width: 14px;
  height: 14px;
  display: block;
}

/* ================================
   CUSTOM CURSOR
   ================================ */

#custom-cursor {
  position: fixed;
  width: 100px;
  height: 69.5px;
  pointer-events: none;
  z-index: 9999;
  display: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  filter: invert(1);
  opacity: 0;
}

/* ================================
   HOMEPAGE — HERO TITLE
   ================================ */

.hero {
  padding-top: 120px;
  text-align: center;
  margin-bottom: 25px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 19.5vw, 270px);  /* scales with viewport, always edge to edge */
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-align: center;
  width: 100%;
  padding: 0 40px;                          /* respects side margins */
  box-sizing: border-box;
  animation: revealUp 1s cubic-bezier(0.76, 0, 0.24, 1) 0.2s both;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(40px, 19.5vw, 270px);  /* same formula works on mobile */
    padding: 0 20px;                         /* tighter margins on mobile */
  }
  /* Hide placeholder on mobile — 2 column grid doesn't need it */
  .card-placeholder {
    display: none !important;
  }

  /* Fix lone card — hide the empty right column border */
  .projects-grid {
    border-right: 1px solid #000;
  }

  /* Single card grid — force 1 column */
  .projects-grid.grid-single {
    grid-template-columns: 1fr !important;
  }

  .projects-grid.grid-single .project-card {
    border-right: none !important;
  }
  
  /* 1 column grid — add right border to grid to match left */
  .projects-grid {
    border-right: 1px solid #000;
  }

  /* Remove card's own right border to avoid doubling */
  .projects-grid .project-card {
    border-right: none !important;
  }

}

@media (max-width: 442px) {
  .link-clip {
    height: 28px;
  }

  .link-clip span {
    font-size: 24px;
    line-height: 28px;
  }

  .mobile-menu-nav {
    gap: 2px;
  }

  /* Allow two lines for Edition / Typographie */
  .mobile-menu-link:nth-child(5) .link-clip {
    height: 86px;    /* more space for two lines */
  }
}

@keyframes revealUp {
  from {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
    filter: blur(8px);
  }
  to {
    clip-path: inset(0% 0 0 0);
    opacity: 1;
    filter: blur(0px);
  }
}

/* ================================
   HOMEPAGE — SLOT MACHINE
   ================================ */

.slot-machine {
  display: flex;
  width: calc(100% - 80px);
  margin: 0 40px;
  margin-bottom: 72px;
  height: 286px;
  overflow: hidden;
  cursor: none;
}

.reel {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 165px;
}

.reel-track {
  display: flex;
  flex-direction: column;
}

.reel-track img {
  width: 100%;
  height: 286px;
  object-fit: cover;
}

/* ================================
   HOMEPAGE — BIO TEXT
   ================================ */

.bio {
  display: flex;
  justify-content: center;
  padding: 30px 40px 60px 40px;
  margin-bottom: 80px;
}

.bio p {
  width: 520px;
  font-family: 'Krub', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-align: justify;
}

/* ================================
   CATEGORY PAGES — HERO
   ================================ */

.category-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

/* Background image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
  filter: none !important;
}

.page-branding .hero-bg-image {
  filter: grayscale(100%) !important;
}

#ascii-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;    /* opacity is handled in the JS drawing */
}

/* Category title */
.category-title {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 136px, 136px); /* stays fixed at 136px on desktop */
  color: #000000;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* Once viewport is narrow enough that 136px overflows, scale down to fit */
@media (max-width: 1200px) {
  .category-title {
    font-size: clamp(20px, 11vw, 136px);
  }
}
.category-title {
  animation: categoryTitleIn 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.2s both;
}

@keyframes categoryTitleIn {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================================
   CATEGORY PAGES — PROJECTS GRID
   ================================ */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  margin: 6vh 40px 10vh 40px;
}

.project-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 6% 8.7%;
  text-decoration: none;
  color: #000;
}

/* Card header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}

.card-date {
  font-family: 'Krub', sans-serif;
  font-size: 11px;
  font-weight: 400;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tag {
  font-family: 'Krub', sans-serif;
  font-size: 11px;
  font-weight: 400;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 8px 16px;
}

/* Card image */
.card-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 34px;
  position: relative;
}

/* All images inside card — default B&W */
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 300ms cubic-bezier(0.45, 0, 0.55, 1);
}

/* Hover — reveal color on default image */
.project-card:hover .card-image img {
  filter: grayscale(0%);
}

/* Hover image (Type C dual image) — hidden by default, sits on top */
.card-image .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;                /* always full color */
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.45, 0, 0.55, 1),
              filter 300ms cubic-bezier(0.45, 0, 0.55, 1);
}

/* Hover — show hover image on top, keep default underneath */
.project-card:hover .card-image .hover-image {
  opacity: 1;
}

/* Video hover */
.card-image video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.45, 0, 0.55, 1);
}

.project-card:hover .card-image video {
  opacity: 1;
}

/* Hero bg image must never get grayscale filter */
.hero-bg-image {
  filter: none !important;
}

/* Card title */
.card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 18px;
  line-height: 1.1;
}

/* Card description */
.card-description {
  font-family: 'Krub', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 7%;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  line-clamp: 7;
  overflow: hidden;
}

/* Card footer */
.card-footer {
  display: flex;
  gap: 20px;
  margin-top: auto;
}

.card-client {
  display: flex;
  gap: 6px;
  align-items: center;
}

.client-label {
  font-family: 'Krub', sans-serif;
  font-weight: 700;
  font-size: 11px;
}

.client-name {
  font-family: 'Krub', sans-serif;
  font-weight: 400;
  font-size: 11px;
}

.card-placeholder {
  border: none;
  background: white;
  position: relative;
  z-index: 1;
  box-shadow: 0 -1px 0 0 white, 0 1px 0 0 white;  /* covers top and bottom lines */
  margin-top: -1px;
  margin-bottom: -1px;
}

/* ================================
   HOMEPAGE ENTRANCE ANIMATIONS
   ================================ */

/* Nav logo */
.nav-logo {
  opacity: 0;
  transform: translateY(-15px);
  animation: fadeDown 0.7s cubic-bezier(0.76, 0, 0.24, 1) 0.1s forwards;
}

/* Nav links — animate the li not the a */
.nav-links li {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 0.7s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.nav-links li a {
  opacity: 1;     /* reset — li handles the animation now */
  transform: none;
  animation: none;
}

.nav-links li:nth-child(1) { animation-delay: 0.15s; }
.nav-links li:nth-child(2) { animation-delay: 0.25s; }
.nav-links li:nth-child(3) { animation-delay: 0.35s; }
.nav-links li:nth-child(4) { animation-delay: 0.45s; }
.nav-links li:nth-child(5) { animation-delay: 0.55s; }
.nav-links li:nth-child(6) { animation-delay: 0.65s; }

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero title — arrives from far below */
.hero-title {
  opacity: 0;
  transform: translateY(800px);    /* even lower start */
  animation: fadeUp 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0.5s forwards;
}

/* Bio lines */
.bio-line {
  width: 520px;
  font-family: 'Krub', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  text-align: justify;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.1s cubic-bezier(0.76, 0, 0.24, 1) 0.5s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer left */
.footer-left {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.7s cubic-bezier(0.76, 0, 0.24, 1) 0.15s forwards;
}

/* Footer right — staggered */
.footer-location {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.7s cubic-bezier(0.76, 0, 0.24, 1) 0.25s forwards;
}

.footer-contact {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.7s cubic-bezier(0.76, 0, 0.24, 1) 0.45s forwards;
}

.footer-instagram {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.7s cubic-bezier(0.76, 0, 0.24, 1) 0.65s forwards;
}

/* ================================
   MOBILE — max 768px
   ================================ */

.nav-hamburger {
  display: none;
  position: relative;
  z-index: 1000;
}

.mobile-menu-close {
  display: none;
}

@media (max-width: 768px) {

  /* NAV */
  nav {
    padding: 20px 20px;
  }

  .nav-logo {
    font-size: 16px !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    position: relative;
    width: 48px;
    height: 40px;
    z-index: 1000;
  }

  .nav-hamburger span {
    display: block;
    position: absolute;
    width: 48px;
    height: 1.5px;
    background: #ffffff;
    left: 0;
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1),
                top 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  }

  .nav-hamburger span:nth-child(1) {
    top: 12px;
  }

  .nav-hamburger span:nth-child(2) {
    top: 24px;
  }

  .nav-hamburger.open span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
  }

  .nav-hamburger.open span:nth-child(2) {
    top: 18px;
    transform: rotate(-45deg);
  }

  /* HERO TITLE */
  .hero {
    padding-top: 120px;
    padding-bottom: 50px;
    margin-bottom: 0;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(40px, 19.5vw, 270px);
    padding: 0 20px;
    line-height: 0.85;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .page-index .nav-logo {
  opacity: 0 !important;
  pointer-events: none !important;
}

  /* SLOT MACHINE */
.slot-machine {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: calc(100% - 40px);
  margin: 0 20px;
  position: relative;
  overflow: hidden;
  height: auto;
  cursor: pointer;
}

.reel:nth-child(9),
.reel:nth-child(10) {
  display: none;
}

.reel {
  width: 100%;
  overflow: hidden;
  height: calc((100vw - 40px) / 4 * 1.73); /* fallback until JS sets it */
}

.reel-track {
  display: flex;
  flex-direction: column;
}

.reel-track img {
  width: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  height: calc((100vw - 40px) / 4 * 1.73); /* fallback until JS sets it */
}

/* FACE ICON */
#custom-cursor {
  position: fixed !important;
  display: none;
  opacity: 0;
  width: 60px !important;
  height: 42px !important;
  pointer-events: none !important;
  z-index: 9999 !important;
  mix-blend-mode: difference;
  filter: invert(1);
}

  /* BIO */
  .bio {
    padding: 30px 20px 80px 20px;
    margin-bottom: 0;
  }

  .bio p,
  .bio-line {
    width: 100%;
    font-size: 11px !important;
    line-height: 1.6;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* FOOTER — fixed like header */
  footer {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    padding: 14px 20px;
    background: transparent;
  }

  .footer-left {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .footer-logo {
    width: 28px;
    height: 28px;
  }

  .footer-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .footer-name {
    font-size: 10px !important;
  }

  .footer-copyright {
    font-size: 9px !important;
  }

  .footer-right {
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 3px;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .footer-location {
    font-size: 10px !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .footer-contact {
    font-size: 10px !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .footer-instagram {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    margin-top: 2px;
  }

  .footer-instagram img {
    width: 14px;
    height: 14px;
  }

  /* DISABLE entrance animations on mobile */
  .nav-links li {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* PROJECTS GRID — mobile */
  .projects-grid {
    grid-template-columns: 1fr !important;
    margin: 4vh 20px 20vw 20px !important;
  }

  .project-card {
  padding: 6% 5%;        /* more top/bottom breathing room */
}

  .card-date {
    font-size: 10px !important;
  }

  .tag {
    font-size: 10px !important;
    padding: 4px 10px;
  }
.card-image {
  margin-bottom: 20px;   /* less space below image on mobile */
}

.card-header {
  margin-bottom: 20px;   /* less space below tags on mobile */
}
  .card-title {
    font-size: 20px !important;
  }

  .card-description {
    font-size: 11px !important;
  }

  .client-label {
    font-size: 11px !important;
  }

  .client-name {
    font-size: 10px !important;
  }

 .card-title {
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }
/* Mobile — always show color, no hover needed */
  .card-image img {
    filter: grayscale(0%) !important;
    transition: none !important;
  }

  /* Show hover image permanently on mobile */
  .card-image .hover-image {
    opacity: 1 !important;
  }

  /* Hide video on mobile by default */
  .card-image video {
    display: none !important;
  }

  /* Show video only for video-only cards */
  .card-video-only .card-image video {
    display: block !important;
    position: relative !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
  }

  /* Hide the B&W placeholder image on mobile for video-only cards */
  .card-video-only .card-image img {
    display: none !important;
  }

  /* Show the video instead */
  .card-video-only .card-image video {
    position: relative !important;
    opacity: 1 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }

}

/* ================================
   MOBILE MENU
   ================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 30px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.76, 0, 0.24, 1),
              visibility 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  mix-blend-mode: normal !important;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-menu * {
  mix-blend-mode: normal !important;
  color: #000000;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.mobile-menu-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-left: 0px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0px;
  flex: 1;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.mobile-menu-link {
  display: block;
  color: #000000 !important;
  text-decoration: none;
  margin-bottom: 8px; /* adjust this value for more or less gap */
}

.link-clip {
  overflow: hidden;
  height: 44px; /* just enough for the 40px line-height + a little breathing room */
}

.link-clip span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  transform: translateY(110%);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.open .mobile-menu-link .link-clip span {
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu-link:nth-child(1) .link-clip span { transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) .link-clip span { transition-delay: 0.12s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) .link-clip span { transition-delay: 0.19s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) .link-clip span { transition-delay: 0.26s; }
.mobile-menu.open .mobile-menu-link:nth-child(5) .link-clip span { transition-delay: 0.33s; }
.mobile-menu.open .mobile-menu-link:nth-child(6) .link-clip span { transition-delay: 0.40s; }

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-top: auto;        /* pushes to bottom of available space */
  padding-bottom: 0px;
}

.mobile-menu-instagram {
  margin-bottom: 4px;
}

.mobile-menu-instagram img {
  width: 18px;
  height: 18px;
  filter: brightness(0);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.5s cubic-bezier(0.76, 0, 0.24, 1),
              transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu-email {
  font-family: 'Krub', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #000000 !important;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.5s cubic-bezier(0.76, 0, 0.24, 1),
              transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu-location {
  font-family: 'Krub', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #000000 !important;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.5s cubic-bezier(0.76, 0, 0.24, 1),
              transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.open .mobile-menu-instagram img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.mobile-menu.open .mobile-menu-email {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.52s;
}

.mobile-menu.open .mobile-menu-location {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.59s;
}

