/*
 =========================================================
 * Filo's dark theme
 =========================================================
 * Page: https://filo.gg
 * Copyright 2023 iLxlo_ (https://github.com/ilxlodev)
 * Designed by CSDIT Coded by iLxlo_
 =========================================================
 * Not allowed to copy substantial portions of the software without prior authorization.
 */

:root {
  --filogg-color-primary: #67B5E6;
  --filogg-color-secondary: #011034;
  --filogg-color-secondary-alt: #172853;
  --filogg-color-text: #FFFFFF;
  --filogg-color-white: #FFFFFF;
  --filogg-color-darkcyan: #1C5868;

  --filogg-body-gradient: transparent linear-gradient(180deg, var(--filogg-color-secondary-alt) 0%, #3C5D74 44%, #E3B4C4 75%, #FDD6C5 100%) 0% 0% no-repeat padding-box;
  --filogg-body-gradient-alt: transparent linear-gradient(180deg, var(--filogg-color-secondary-alt) 0%, #3C5D74 24%, #E3B4C4 45%, #FDD6C5 100%) 0% 0% no-repeat padding-box;
  --filogg-body-gradient-dark: transparent linear-gradient(180deg, var(--filogg-color-secondary-alt) 0%, #3C5D74 100%) 0% 0% no-repeat padding-box;
  --filogg-body-gradient-only: transparent linear-gradient(180deg, var(--filogg-color-secondary-alt) 0%, #3C5D74 100%) 0% 0% no-repeat padding-box;

  --filogg-font-family: "Louis George Cafe", sans-serif;
  --filogg-font-family-alt: "Montserrat", sans-serif;
  --filogg-font-family-alt-2: "MV Boli", sans-serif;

  --filogg-font-size-small: 18px;
  --filogg-font-size-mobile: 4px;
  --filogg-font-size-small-mobile: calc(var(--filogg-font-size-small) - var(--filogg-font-size-mobile));

  --filogg-icon-transition: max-width 0.5s ease-in-out;
  --filogg-navbar-transition: all 0.3s ease-in-out;
  --filogg-scrollbar-transition: all 0.3s ease-in-out;
  --filogg-hover-image-transition: all 0.3s ease-in-out;
  --filogg-hover-text-transition: color 0.3s ease-in-out;
  --filogg-hover-background-transition: background 0.5s ease-in-out;
  --filogg-small-rotation-transition: transform 0.5s ease-in-out;

  --filogg-section-padding-desktop: 50px 100px;
  --filogg-section-padding-laptop: 50px 85px;
  --filogg-section-padding-tablet: 50px 40px;
  --filogg-section-padding-mobile: 50px 25px;

  --filogg-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);

  --filogg-navbar-zindex: 99999999999;
  --filogg-navbar-overlay-zindex: var(--filogg-navbar-zindex);
}

* {
  font-size: 18px;
  word-spacing: 1px;
  line-height: 1.2em;
  letter-spacing: 1px;
  scroll-behavior: smooth;
  scroll-margin-top: 150px;
  color: var(--filogg-color-text);
  font-family: var(--filogg-font-family);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--filogg-color-secondary);
}

::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: var(--filogg-color-white);
  transition: var(--filogg-scrollbar-transition);
  border: 3px solid var(--filogg-color-secondary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--filogg-color-primary);
}

h1, h2, h3 {
  word-spacing: 1px;
  line-height: 1.3em;
  letter-spacing: 1px;
  margin: 0 !important;
  color: var(--filogg-color-primary);
  font-family: var(--filogg-font-family-alt);
}

h1.alt, h2.alt, h3.alt {
  color: var(--filogg-color-secondary);
}

h4, h5, h6 {
  word-spacing: 1px;
  line-height: 1.25em;
  letter-spacing: 1px;
  margin: 0 !important;
  color: var(--filogg-color-primary);
  font-family: var(--filogg-font-family-alt);
}

h4.alt, h5.alt, h6.alt {
  color: var(--filogg-color-secondary);
}

h1 {
  font-weight: 900;
  font-size: 45px !important;
}

h2 {
  font-weight: 800;
  font-size: 40px !important;
}

h3 {
  font-weight: 700;
  font-size: 35px !important;
}

h4 {
  font-weight: 600;
  font-size: 30px !important;
}

h5 {
  font-weight: 500;
  font-size: 25px !important;
}

h6 {
  font-weight: 500;
  font-size: 20px !important;
}

body {
  background-blend-mode: lighten;
  background-size: contain !important;
  background: url("https://cdn.filo.gg/assets/images/Stars.png"), var(--filogg-body-gradient);
}

img {
  width: 100%;
  height: auto;
}

a {
  font-weight: 500;
  text-decoration: none;
  color: var(--filogg-color-text);
  transition: var(--filogg-hover-text-transition);
}

a:hover {
  color: var(--filogg-color-primary)
}

.full-width {
  max-width: 100%;
}

div.title {
  max-width: 900px;
}

.small-rotation {
  transition: var(--filogg-small-rotation-transition) !important;
}

.small-rotation:nth-child(even):hover {
  transform: rotate(2deg) scale(1.05);
}

.small-rotation:nth-child(odd):hover {
  transform: rotate(-2deg) scale(1.05);
}

.hidden {
  display: none;
}

/*
 =========================================================
 * Media queries
 =========================================================
 * Responsive is the future \ ✪ ω ✪ /
 */

@media (max-width: 1366px) { /* Laptop resolution */

  h1 {
    font-size: 40px !important;
  }

  h2 {
    font-size: 35px !important;
  }

  h3 {
    font-size: 30px !important;
  }

  h4 {
    font-size: 25px !important;
  }

  h5 {
    font-size: 20px !important;
  }

  h6 {
    font-size: 18px !important;
  }

}

@media (max-width: 1024px) { /* Tablet resolution */

}

@media (max-width: 881px) { /* Mobile horizontal resolution */

  body {
    background-size: 300% !important;
  }

  h1 {
    font-size: 35px !important;
  }

  h2 {
    font-size: 30px !important;
  }

  h3 {
    font-size: 25px !important;
  }

  h4 {
    font-size: 20px !important;
  }

  h5 {
    font-size: 18px !important;
  }

  h6 {
    font-size: 15px !important;
  }

}

@media (max-width: 768px) { /* Mobile vertical resolution */

  h1 {
    font-size: 30px !important;
  }

  h2 {
    font-size: 25px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  h4 {
    font-size: 18px !important;
  }

  h5 {
    font-size: 15px !important;
  }

  h6 {
    font-size: 13px !important;
  }

  div.title {
    width: 100%;
  }

}