/* COLOR PALETTES (need balance)
MAIN  #111 #1f1f1f
ACCENT 1 #1098ad #0fadc5 #10d0e1 water colors 
ACCENT 2 #e67700 #f59f00 #d1b70d toucan colors
GREY #bbb #ccc #f1f1f1


CYAN 0 #e3fafc YELLOW 0 #fff9db GRAY 0 #f8f9fa
CYAN 1 #c5f6fa YELLOW 1 #fff3bf GRAY 1 #f1f3f5
CYAN 2 #99e9f2 YELLOW 2 #ffec99 GRAY 2 #e9ecef
CYAN 3 #66d9e8 YELLOW 3 #ffe066 GRAY 3 #dee2e6
CYAN 4 #3bc9db YELLOW 4 #ffd43b GRAY 4 #ced4da
CYAN 5 #22b8cf YELLOW 5 #fcc419 GRAY 5 #adb5bd
CYAN 6 #15aabf YELLOW 6 #fab005 GRAY 6 #868e96
CYAN 7 #1098ad YELLOW 7 #f59f00 GRAY 7 #495057
CYAN 8 #0c8599 YELLOW 8 #f08c00 GRAY 8 #343a40
CYAN 9 #0b7285 YELLOW 9 #e67700 GRAY 9 #212529
sdpgijsdoigjsdoigj
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* width + height calc now uses border dimensions */
}

/* PAGE SECTIONS */
body {
  background-color: #111;
  font-family: sans-serif;

  color: #f1f1f1;
  /* border-top: 5px solid #1098ad; */
  margin: 25px 15px 15px 15px;
}

footer {
  display: flex;
  background-color: #1f1f1f;
  justify-content: space-between;
  align-content: center;
  text-align: center;
  padding: 15px;
  font-size: small;
  color: #bbb;
  letter-spacing: 1.5px;
  width: 100%;
  border-radius: 0px 0px 5px 5px;
}

h1,
h2,
h3 {
  color: #bbb;
}
h2 {
  color: #ccc;
  font-size: 18px;
}

h3 {
  letter-spacing: 1px;
  color: #1098ad;
  margin-bottom: 10px;
}

ul {
  margin: 8px 0px 8px 30px;
  color: #bbb;
}

li {
  margin-bottom: 5px;
}

p {
  color: #bbb;
  /* margin-bottom: 5px; */
}

div

/* IFRAMES */

iframe {
  border: none;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 15px 15px;
}

.job-info {
  outline: 1px solid #aaa;
  padding: 15px;
  margin-bottom: 15px;
}

.job-info > p {
  margin-bottom: 5px;
}

.location {
  font-style: italic;
}

/* DARK MODE */

.dark-mode {
  filter: invert(100%);
  background-color: #555;
}

.dark-img {
  /* filter: invert(0%); */
  hue-rotate(90deg);
  scale: 105%;
  outline: yellow solid 4px;
}

.darkmode-button {
  border: none;
  padding: 0;
}
.darkmode-button:hover {
  color: #1098ad;
  cursor: pointer;
}

nav {
  display: grid;
  background-color: #1f1f1f;
  grid-template-columns: 250px repeat(4, 1fr);
  margin-bottom: 15px;
  font-size: 20px;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px 5px 0px 0px;
}

.headline {
  font-weight: normal;
  font-size: 30px;
  letter-spacing: 4px;
  margin: 10px;
  text-align: center;
}

.headline:hover {
  text-transform: uppercase;
}

.navlink {
  text-align: center;
  font-weight: bold;
  letter-spacing: 3px;
  color: #bbb;
  font-variant: small-caps;
}

.navlink:hover {
  text-transform: uppercase;
  outline: #1098ad 1px solid;
}

.nav-chatbot, #nav-chatbot {
  cursor:not-allowed;
}

/* GENERAL LINK STYLING */

a:link {
  text-decoration: none;
  color: #bbb;
}

a:visited {
  color: #bbb;
}
a:hover {
  outline: 1px solid #1098ad;
}

a:active {
  /* border: 1px dashed #13bad4; */
  outline: 1px solid #13bad4;
  color: #1098ad;
}

.fa:hover {
  cursor: pointer;
}

/* INFO BAR UNDER NAV */

.pre-content {
  display: flex;
  text-align: center;
  font-size: larger;
  margin-bottom: 15px;
  flex-shrink: 0;
  width: 100%;
  gap: 15px;
  flex-wrap: wrap;
}

.socials {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;

  padding: 10px 10px 10px 10px;
  gap: 10px;
  width: 250px;
  background-color: #1f1f1f;
  flex-shrink: 0;
}

.pre-content-txt {
  background-color: #1f1f1f;
  color: #bbb;
  align-self: center;
  flex-shrink: 0;
  flex: 1;
  padding: 15px 0 15px 0;
}

/* CHATBOT PAGE*/

#chatbot-ui {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: 1fr 65px;
  grid-gap: 15px;
  width: 100%;
  height: 100%;
  background-color: #1f1f1f;
}

.chatbot-input {
  background-color: #333;
  border: none;
  border-radius: 0px 0px 5px 5px;
  outline: solid 1px #1098ad;
  padding: 15px 5px 15px 5px;
  font-size: 15px;
  color: #bbb;
  width: 500px;
}

.chatbot-output {
  margin-top: 15px;
  text-align: right;
  letter-spacing: 1px;
  font-size: medium;
  background-color: #333;
  border-radius: 0px 0px 5px 5px;
  padding: 15px 15px 15px 15px;
}

.chatbot-info {
  background-color: #333;
  text-align: left;
  font-size: medium;
  color: #1f1f1f;
  padding: 19px;
  border-radius: 0px 0px 5px 5px;
  margin-top: 15px;
  height: 92%;
}

.chatbot-input-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min-content;
}

.chatbot-output-container {
  outline: solid 1px #1098ad;
  height: 50vh;
  padding: 15px;
  border-radius: 0px 0px 5px 5px;
  text-align: center;
}

.chatbot-info-container {
  text-align: center;
  padding: 15px 0px 10px 15px;
}

/* GALLERY PAGE */

gallery {
  display: grid;
  margin-left: 265px;
  margin-bottom: 15px;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
}

gitem {
  background-color: #1f1f1f;
  padding: 25px;
}

gitem img {
  height: 100%;
  width: 100%;
}

gitem img:hover {
  box-shadow: 0px 0px 3px #f08c00;
}

/* MISC PAGE */

.animals {
  display: grid;
  justify-content: center;
  grid-template-columns: min-content min-content;
  gap: 35px 15px;
  background-color: #1f1f1f;
  margin-left: 265px;
  margin-bottom: 15px;

  /* width: min-content; */
  padding: 40px;
  text-align: center;
}

.otter-txt {
  text-align: left;
  align-self: center;
  margin-right: 40%;
}
.toucan-txt {
  text-align: right;
  align-self: center;
  margin-left: 40%;
}
.otter-img {
  border: 2px solid #1098ad;
  justify-self: end;
}

img:hover {
  scale: 101%;
}

.toucan-img {
  border: 2px solid #e67700;
}

/* INFO PAGE */

button {
  color: #bbb;
  background-color: #1f1f1f;
  padding: 10px;
  font-variant: small-caps;
  font-size: medium;
  letter-spacing: 1px;
}

barentry:hover {
  outline: 1px solid #1098ad;
}

.cv-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: 250px 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 15px;
  margin-bottom: 15px;
}

.cv-grid-bar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50vh;
  text-align: center;
}

info {
  background-color: #1f1f1f;
  grid-column: 2/-1;
  grid-row: 1/-1;
  height: 100vh;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #888;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #555;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #2f2f2f;
}

/* Dropdown Button */
.dropbtn {
  color: #bbb;
  border: none;
  font-size: 20px;
  font-weight: bold;
}

.dropbtn:hover {
  text-transform: uppercase;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  /* display: inline-block; */
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 105%;
  width: 100%;
  background-color: #1f1f1f;
  text-transform: lowercase;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #bbb;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
