/*
Theme Name: ASLÏ
Author: Asli
Description: Custom WordPress + WooCommerce theme for ASLÏ.
Version: 1.0
Text Domain: asli
*/
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: Helvetica, Arial, sans-serif;
  cursor: none;
}

.asli-page {
  position: relative;
  min-height: 420vh;
  background: #fff;
}

.asli-header {
  position: fixed;
  top: 58px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav-left,
.nav-right {
  position: fixed;
  top: 58px;
  width: 86px;
  height: 38px;
  border: 2px solid #111;
  border-radius: 6px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 10px rgba(0,0,0,.25);
  z-index: 1000;
}

.nav-left {
  left: 145px;
}

.nav-right {
  right: 145px;
}

.asli-logo {
  position: fixed;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 38px;
  border: 2px solid #111;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 10px rgba(0,0,0,.25);
  z-index: 1000;
}

.asli-logo img {
  width: 36px;
  height: auto;
  display: block;
}

.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.time {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #111;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
  z-index: 100;
}

#three-background {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
}

.custom-cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  border: 2px solid #111;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.2s ease, height 0.2s ease;
}

/* EDITORIAL */

.editorial-section {
  position: relative;
  z-index: 200;
  background: transparent;
  padding: 120vh 6vw 20vh;
}

.big-scroll-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 85vh;
  background: transparent;
  pointer-events: none;
}

.big-scroll-logo img {
  width: min(50vw, 600px);
  height: auto;
  display: block;
  background: transparent;
}

.editorial-block {
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.editorial-label {
  font-size: 18px;
  margin-bottom: 34px;
  color: #111;
}

.editorial-image {
  width: min(56vw, 680px);
  height: auto;
  max-height: 76vh;
  object-fit: cover;
  display: block;
  border: 2px solid #111;
  box-shadow: 4px 4px 10px rgba(0,0,0,.18);
}

.about-section {
  min-height: 90vh;
  width: min(520px, 82vw);
  margin: 20vh auto 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.about-section h2,
.info-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 34px;
}

.about-section p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.info-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.info-links a,
.site-footer a {
  color: #111;
  text-decoration: none;
  font-size: 14px;
}

.info-links a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.site-footer {
  min-height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}

@media (max-width: 700px) {
  .editorial-image {
    width: 82vw;
    max-height: 58vh;
  }

  .site-footer {
    flex-direction: column;
    gap: 12px;
  }
}

/* MOBILE */

@media (max-width: 700px) {
  .nav-left,
  .nav-right {
    top: 42px;
    width: 68px;
    height: 34px;
    font-size: 11px;
  }

  .nav-left {
    left: 22px;
  }

  .nav-right {
    right: 22px;
  }

  .asli-logo {
    top: 42px;
    width: 54px;
    height: 34px;
  }

  .asli-logo img {
    width: 32px;
  }

  .time {
    font-size: 38px;
  }

  .big-scroll-logo img {
    width: 76vw;
  }

}