@font-face {
    font-family: 'DepartureMono Nerd Font';
    src:  url('/Fonts/DepartureMonoNF-Regular.woff2') format('woff2'),
          url('/Fonts/DepartureMonoNF-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url("/Assets/Backgrounds/traces.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-family: 'DepartureMono Nerd Font', monospace;
  color: #f0f0f0;
  line-height: 1.5;
  text-align: justify;
}

/* HIDE SCROLLBAR */
body::-webkit-scrollbar {
  display: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  object-fit: cover;
}

.row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2em;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* NAV BAR */
.navigation_bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4em;
  padding: 1em 0;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: white;
}

.navigation_bar a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.navigation_bar a:hover {
  transform: scale(1.1);
}

/* DISCLAIMER */
#disclaimer {
  background-image: url("Assets/Other_Media/caution.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.disclaimer-title {
  font-size: 2rem;
  font-weight: bold;
  color: #FFFF00;
  text-align: center;
}

.disclaimer-text {
  text-indent: 2em;
}

/* INDEX  */
#hero {
  min-height: 80vh;
  max-width: 80vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1em;
  margin: 0 auto;
}


.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  gap: 2em;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1em;
  background-color: rgba(25, 25, 25, 0.9);
}

.hero-box {
  color: #f0f0f0;
  padding: 1em;
  border: 2px solid #f0f0f0;
  border-radius: 5px;
}

.hero-image {
  flex: 1;
  max-width: 25%;
  height: auto;
  object-fit: contain;
  border: 2px solid #f0f0f0;
  border-radius: 5px;
}

#photography {
  min-height: 60vh;
  max-width: 80vw;
  display: flex;
  padding: 1em;
  background-color: rgba(240, 240, 240, 0.8);
  border: 2px solid #1a1a1a;
  border-radius: 5px;
  margin: 0 auto;
  color: #1a1a1a;
}

#photography img {
  border: 2px solid #1a1a1a;
  border-radius: 5px;
}

.photography-text {
  border: 2px solid #1a1a1a;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1em;
}

.photography-link {
  font-weight: bold;
  text-align: center;
  border: 2px solid #1a1a1a;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1em;
}

#connection {
  min-height: 40vh;
  max-width: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.connection-box {
  border: 2px solid #f0f0f0;
  border-radius: 5px;
  padding: 1em;
  background-color: rgba(25, 25, 25, 0.9);
}
