/** Global setup **/ 
html { 
  scroll-behavior: smooth; 
}

main {
  opacity:0;
  transform: translateY(10px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

body { 
  padding-top: 100px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #000000; 
  color: #f7f7f7; 
  max-width: 1200px; 
  margin:0 auto; 
  padding: 20px 40px; 
  line-height: 1.6;
}

#gradient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background: linear-gradient(135deg, #000000 0%, #fcefef 100%);

  /* background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%); */
      
  z-index: -1;
  opacity: 0.7;
}

.Title header {
  display: flex;
  align-items: center;
  gap: 20px; 
  margin-bottom: 20px;
}

.title-text h1,
.title-text h5 {
  margin: 0;
  padding: 0;
}

.pfp {
  margin-top: 20px;
  width: 120px;         
  height: 120px;        
  border-radius: 50%;   
  object-fit: cover;    
  border: 3px solid #2e2e2e;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

#Tauha {
  margin: 0;
  padding: 0;
  font-size: 2.8rem;
}

#student {
  font-size: 1.1rem;
  color: #cfcfcf;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

/* HEADERS */
h1, h3 { 
  color: #ffffff; 
  padding-bottom: 10px;
}

h3 { 
  position: relative;
  padding-bottom: 10px;
}

h3::after{ 
  content: "";
  position: absolute;
  
  left: 0;
  bottom: 0;

  width: 100%;
  height: 3px; 

  background: linear-gradient(135deg, #2e2e2e 0%, #fcefef 100%);
  border-radius: 3px;
}

h1 { 
  font-size: 2.5em; 
  border-bottom: none;
  margin-top: 50px; 
}

h5 { 
  /* background: linear-gradient(90deg, #ff6b6b, #4ecdc4); <--testing gradient
  text can be gradient colored I'll look into this later when deciding 
  a final theme 
  background: linear-gradient(350deg, #2e2e2e 0%, #fcefef 100%); 
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  */
}

h6, h4 { 
  margin: 0;
}

h6 {
  font-size: 0.9rem;
}

footer { 
  text-align: center;
  margin: 50px 0;
}

.splitter { 
  margin-top: 25px;
}

.para-splitter {
  margin: 25px 0;
  border-top: 1px;
  z-index: 1;
}

.journeyImg { 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.journeyImg img { 
  width: 100%;
  height: auto;
  max-width: 300px;
  max-height: 250px;
  border-radius: 12px;
  border: 1px solid #2e2e2e;
}

.studentImg { 
  display: flex;
  align-items: left;
  gap: 15px;
}

.studentImg img { 
  width: 100%;
  height: auto;
  max-width: 300px;
  max-height: 250px;
  border-radius: 12px;
  border: 1px solid #2e2e2e;
}

.studentImg img:hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform: scale(1.06);
  cursor: pointer;
}