@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* CSS VARIABLES (Global) */
:root {
  /* Primary Colors */
  --clr-primary: #ffa700;
  /* Neutral Colors */
  --clr-dark: #2b2b2b;
  --clr-light: #ffffff;
  --clr-gray: #808080;

  /* Fonts */
  --font-inter: "Inter", sans-serif;
}

/* Box Sizing & Global Reset */
*,
*::before,
&::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Element Reset */

/* ===== Element Resets ===== */
/* Grouped selectors for efficiency */
a,
abbr,
acronym,
address,
applet,
article,
aside,
big,
blockquote,
body,
caption,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
font,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
iframe,
img,
ins,
kbd,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
tt,
ul,
var {
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* Document & Body */
html {
  font-size: 62.5% !important; /* 1rem = 10px */
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: var(--clr-dark) !important;
  font-family: var(--font-inter) !important;
  font-size: 1.4rem !important;
  font-weight: 300;
  line-height: 1.4;
  overflow: auto;
  text-transform: uppercase;
}

/* === FLOATING HEADER === */
.floatingheader {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  color: white;
  padding: 3rem 1rem 1rem 1rem;
  text-align: center;
  z-index: 2;
  justify-content: center;
}

.floatingheader img {
  width: 20rem;
}

.floatingheader a {
  padding: 0 5rem;
  font-size: 12px;
}

/* A LINKS FORMAT */

a {
  text-decoration: none;
  color: white;
}

/* === FULL SCREEN IMAGE === */

.cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img__carousel .img__slide {
  position: relative;
  height: 100vh;
  background-color: lightgray;
  z-index: -111;
  overflow: hidden;
  overscroll-behavior-block: contain;
}

/*  FULL SCREEN IMAGE TITLE */

.floatingsidetext {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  position: fixed;
  bottom: 20rem;
  width: 100%;
  justify-content: center;
  text-align: left;
  z-index: 10;
  color: white;
  max-width: 50rem;
  padding: 0 0 0 10rem;
  text-shadow: 1px 1px 8px black;
}

.floatingsidetext h1 {
  font-size: 4rem;
}

.floatingsidetext h4 {
  font-size: 12px;
  padding: 2rem 0 0 0;
}

.floatingsidetext p {
  padding: 1rem 0 0 0;
  font-size: 12px;
}

/* NAVIGATION */

.navigation {
  padding: 2rem 0 0 0;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  text-shadow: 1px 1px 8px black;
}

/* FOOTER */
.footsies {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  position: fixed;
  bottom: 0px;
  width: 100%;
  padding: 0 10rem;
  color: white;
  text-shadow: 1px 1px 8px black;
}

.footsies p {
  padding: 0 0 2rem 0;
  font-weight: 300;
  font-size: 12px;
}

/* ====== MOBILE SCREEN BREAKOUT ====== */

@media screen and (max-width: 768px) {
  /* HEADER */

  .floatingheader a {
    padding: 0 2rem;
  }

  /* FLOATING SIDE TEXT */
  .floatingsidetext {
    padding: 0 0 0 2rem;
    bottom: 10rem;
  }

  /* FOOTER */

  .footsies {
    padding: 0 2rem;
  }

  .img__carousel .img__nav svg {
    width: 24px;
    height: 24px;
  }
}

/* VIEW TRANSITION */

@view-transition {
  navigation: auto;
}

/* NO SELECT */

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
img {
  user-select: none;
}
