@import './styles/about.css';
@import './styles/animations.css';
@import './styles/example.css';
@import './styles/feedback.css';
@import './styles/footer.css';
@import './styles/header.css';
@import './styles/legal.css';
@import './styles/navbar.css';
@import './styles/overview.css';
@import './styles/waitlist.css';

/* variables */
:root {
  font-size: 18px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  --bg-dark: #0f0f10;
  --white: #ffffff;
  --purple-light: #ff4ecd;
  --purple-dark: #ff1ca6;

  --font-s: 0.9rem;
  --font-m: 1rem;
  --font-l: 1.1rem;
  --font-xl: 1.5rem;
  --font-xxl: 2rem;
  --font-xxxl: 3rem;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--font-medium) transparent;
}

@media (orientation: portrait) {
  * {
    scrollbar-width: none;
  }
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* html elements */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: var(--bg-dark);
  color: var(--white);
}

a {
  text-decoration: none;
}

button {
  color: var(--white);
  cursor: pointer;
  border-radius: 26px;
  border: none;
  background-color: var(--purple-dark);
  font-size: var(--font-l);
  transition: all linear 0.2s;
}

button a {
  color: var(--white);
}

button:active,
button:hover {
  transform: scale(0.98);
}

ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

li {
  border-left: 4px solid var(--purple-dark);
  font-size: var(--font-l);
  padding: 6px 10px;
  margin-bottom: 14px;
}

li:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
}

li:last-of-type {
  margin-bottom: 0;
}

input,
textarea {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: var(--font-l);
  outline: none;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.1);
  padding: 0 16px;
  width: calc(100% - 32px);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

textarea {
  padding: 16px;
  height: 200px;
  resize: none;
}

p {
  font-size: var(--font-l);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main section {
  width: 700px;
  max-width: calc(90% - 4rem);
  border-radius: 26px;
  padding: 36px;
  margin-bottom: 175px;
}

@media (max-width: 600px) {
  main section {
    margin-bottom: 100px;
  }
}

main section h2 {
  margin: 0 0 30px 0;
  font-size: var(--font-xxl);
  text-align: center;
  color: var(--purple-dark);
}

/* custom */
.card {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glow {
  transition: box-shadow 0.2s linear;
}

.glow:hover {
  box-shadow: 0 0 6px var(--purple-light), 0 0 12px var(--purple-dark),
    0 0 24px var(--purple-dark);
}

.row {
  display: flex;
}

.column {
  display: flex;
  flex-direction: column;
}

.center {
  align-items: center;
  justify-content: center;
}
