
/* Website Wide Styles */
.general_website { 
  background-color: black; 
  overflow: hidden;
}

.general_spacer {
  text-align: center;
  padding: 10px;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

/*********** Sub page styles ***********/
.subpage_header {
  display: flex;
  flex-direction: row;
  align-items: center;

  padding-left: 5%;
  padding-right: 5%;

}

.subpage_logo {
  overflow: hidden;
}

.subpage_logo img {
  width: 500px;
  height: 100px;
  object-fit: cover;
}

.subpage_menu {

  font-family: 'Oxanium', sans-serif;
  padding-left: 7%;
}

.subpage_menu ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 35px;

}

.subpage_menu a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  white-space: nowrap;
}

.subpage_menu_list a:hover {
  color: steelblue;
}

/*********** HOME Page Styles ***********/
.homepage_logo {
  width: 100vw;
  height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: center;
}

.homepage_logo img {
  width: 70%;
  max-width: 1400px;
  height: auto;

  object-fit: contain;

  margin-left: -5%;
}

.vertical-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    padding: 0;
    z-index: 10;
    width: 450px;
    height: 600px;
}

.vertical-menu img {
  position: absolute;
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.vertical-menu ul {
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;

  margin-left: 180px;
  margin-top: 115px;

}

.vertical-menu li {
  font-family: 'Oxanium', sans-serif;
  padding-bottom: 25px;
  margin: 0px 0;
  display: flex;
  align-items: center;
  gap: px;
}

.vertical_menu_item img {
  width: 50px;
  height: 50px;
  margin-left: -30px;
  order: -1;
  position: static;
  opacity: 0;

}
  
.vertical-menu a {
  margin-left: -25px;
  color: white;
  text-decoration: none;
  font-size: 32px;
  display: inline;
}

.vertical-menu a:hover {
  transform: translateX(30px);
}

.vertical-menu a:hover + img{
  opacity: 1;
}


/*********** About Me Page Styles ***********/
.aboutme_content {
  color: white;
  font-family: 'Oxanium', sans-serif;
  font-size: 18px;

  display: flex;
  align-items: flex-start;
  gap: 30px;

  padding-left: 5%;
  padding-right: 5%;
}

.aboutme_image img {
  width: 500px;
  height: auto;

  border-radius: 10px;
}

.aboutme_text {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 0px;
  padding-right: 20px;
}

.aboutme_text h1 {
    margin: 0px;

  text-align: center;
  font-size: 36px;

}

.aboutme_text p {
  
  line-height: 1.6;

  text-indent: 40px;
  text-align: left;

  margin-bottom: 0%;

  padding-left: 7%;
}

/*********** Contact Me Page Styles ***********/
.contactme_container {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  color: #fff;
  font-family: 'Oxanium', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;

  padding: 0 5%;
}

.contactme_top{
  display: grid;
  grid-template-columns: 4fr 4fr 4fr ;
  gap: 10px;
}

.contactme_top h1 {
  font-size: 46px;
  margin-bottom: 20px;
}

.contactme_information {
  display: grid;
  grid-template-columns: 4fr 4fr 4fr 4fr;
  gap: 10px;

  direction: rtl;
}

.contactme_information img {
  width: 75px;
  height: 75px;

  overflow: hidden;
}

.contactme_information a {
  display: flex;
  align-items: center;

  font-size: 24px;

  color: white;
  text-decoration: none;
}

.contactme_bottom {
  display: flex;
  align-items: flex-start;

  gap: 40px;

  width: 100%;
}


.contactme_form {
  display: grid;

  grid-template-columns: 1fr 1fr;

  width: 100%;
  max-width: 800px;

  margin: 0 auto;

  padding: 40px;
  gap: 20px;

  border: 2px solid #fff;
  border-radius: 20px;
}

.contactme_form input,
.contactme_form textarea,
.contactme_form button {
  box-sizing: border-box;

  width: 100%;

  padding: 12px;

  font-size: 20px;
  font-family: inherit;

  border-radius: 10px;
}

.contactme_form input,
.contactme_form textarea {
  background-color: #111;

  color: white;

  border: 1px solid #444;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contactme_form input:focus,
.contactme_form textarea:focus {
  outline: none;

  border-color: steelblue;

  box-shadow: 0 0 6px rgba(70, 130, 180, 0.5);
}

.contactme_form textarea {
  grid-column: span 2;

  min-height: 120px;
  max-height: 250px;
  resize: vertical;
}

.contactme_form button {
  grid-column: span 2;

  border: none;

  background-color: steelblue;

  color: white;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.contactme_form button:hover {
  transform: translateY(-2px);

  opacity: 0.9;
}

.input_wrapper {
  position: relative;

  width: 100%;
}

.input_wrapper input {
  padding-right: 45px;
}

.info_icon {
  position: absolute;

  top: 50%;
  right: 15px;

  transform: translateY(-50%);

  width: 22px;
  height: 22px;

  border-radius: 50%;

  background-color: steelblue;

  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;

  cursor: pointer;
}

.tooltip {
  position: absolute;

  bottom: 130%;
  right: 0;

  width: 220px;

  padding: 10px;

  border-radius: 10px;

  background-color: steelblue;

  color: rgb(0, 0, 0);

  font-size: 14px;

  box-shadow: 0 0 20px steelblue;

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;

  z-index: 10;
}

.input_wrapper:hover .tooltip {
  opacity: 1;

  visibility: visible;
}

/*********** Credits Page Styles ***********/
.credits_content {
  color: white;
  font-family: 'Oxanium', sans-serif;
  font-size: 20px;

}

.credits_fullwidth {
  grid-column: span 5;
  margin-bottom: 2.5%;
  margin-top: 2.5%;

  margin-left: 5%;
  margin-right: 5%;

  font-size: 18px;

  text-align: center;
}

.credits_container {
  display: grid;
  grid-template-columns: 6fr 1fr 6fr;
  gap: 10px;

  padding-left: 10%;
  padding-right: 10%;

}

.credits_group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  margin-bottom: 2.5%;

}

.credits_sub_grid {
  display: grid;
  grid-template-columns: 20fr 1fr 20fr;
  gap: 10px;

  font-size: 14px;
  margin: 0px;

  text-align: center;
}

.credits_sub_grid h1 {
  grid-column: span 3;
  font-size: 28px;
  margin: 0;

}

.credits_sub_grid p {
  margin: 0;
}























/*********** Portfolio Page Styles ***********/
.portfolio_container {
  color: white;
  font-family: 'Oxanium', sans-serif;
  font-size: 20px;
}

.portfolio_container h1 {
  font-size: 36px;
  margin-bottom: 20px;

  text-align: center;
}

.portfolio_container h2 {
  font-size: 36px;

  margin: 0;

  text-align: center;
}

.portfolio_container p {
  font-size: 18px;
  text-align: center;

  padding-left: 20%;
  padding-right: 20%;
}