@tailwind base;
@tailwind components;
@tailwind utilities;
#content-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  transition: all 0s 0.3s, opacity 0.3s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

#content-overlay.active {
  z-index: 10;
  visibility: visible;
  opacity: 1;
  transition-delay: 0s, 0s;
}

img {
  backface-visibility: hidden;
}
.tracking-ultra {
  letter-spacing: 0.2em;
}

.pb-percent-60 { padding-bottom: 60%; }
.pb-percent-80 { padding-bottom: 80%; }
.pb-percent-90 { padding-bottom: 90%; }
.pb-percent-100 { padding-bottom: 100%; }
.pb-percent-110 { padding-bottom: 110%; }
.pb-percent-130 { padding-bottom: 130%; }
.pb-percent-150 { padding-bottom: 150%; }
.pb-percent-160 { padding-bottom: 160%; }
.pb-percent-180 { padding-bottom: 180%; }
@font-face {
  font-family: 'Abadi';
  src: url(/assets/fonts/Abadi-ExtraLight-890050c4a62226f8c4fd50a2535aed2255d5a8aa0e4459e218b7aa8f17450110.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Classical Romance';
  src: url(/assets/fonts/ClassicalRomance-ExtraLight-dd1e87b8eab11040e4e7af1f8f5d995c1333ed8f16bf0ca02ecf2261ec886cdd.otf) format('truetype');
  font-weight: normal;
  font-style: normal;
}

.font-abadi {
  font-family: 'Abadi', sans-serif;
}

.font-classical-romance {
  font-family: 'Classical Romance', sans-serif;
}
.burger-icon span {
  box-sizing: border-box;
  margin: 0;
  min-width: 0;
  margin-bottom: 6px;
  width: 100%;
  height: 2px;
  transition: all 800ms cubic-bezier(0.190, 1.000, 0.220, 1.000) 0ms;
}

#burger.active span {
  background-color: #9ca3af !important;
}

.burger-icon.active span:nth-child(1) {
  transform: translateX(8px) rotate(45deg) translateY(11px);
}

.burger-icon.active span:nth-child(2) {
  opacity: 0;
}

.burger-icon.active span:nth-child(3) {
  transform: translateX(8px) rotate(-45deg) translateY(-11px);
}

.menu {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(100%);
  width: 50%;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  background: white;
}

.menu.active {
  transform: translateX(0);
}
.toggle-button {
  display: flex;
  align-items: center;
}

.toggle-circle {
  position: absolute;
  top: 2px;
  left: 3px;
  transition: transform 0.3s;
}

.toggle-button.on .toggle-circle {
  transform: translateX(18px);
}

.toggle-button.off .toggle-circle {
  transform: translateX(0);
}
/*
- * This is a manifest file that'll be compiled into application.css, which will include all the files
- * listed below.
- *
- * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
- * vendor/assets/stylesheets directory can be referenced here using a relative path.
- *
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
- * compiled file so the styles you add here take precedence over styles defined in any other CSS
- * files in this directory. Styles in this file should be added after the last require_* statement.
- * It is generally better to create a new file per style scope.
- *


- */
