@import url('https://googleapis.com');

* {
  box-sizing: border-box;
}

body {
  background-image: url("Screenshot 2026-08-11 174604.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: rgb(255, 255, 255);
  font-size: 16px;
  text-align: center;
  font-family: 'Michroma', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

h1 {
  font-family: 'Michroma', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  text-align: center;
  color: white;
  font-size: 4.5vw;
  margin: 0 0 20px 0;
  background-color: transparent;
  white-space: nowrap;
  width: 100%;
  margin-top: 200px;
}

h2 {
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 15px;
  color: rgb(249, 247, 247);
  font-family: 'Space Mono', monospace;
}

h3 {
  background-color: rgba(0, 0, 0, 0);
  color: rgb(255, 255, 255);
  font-size: 25px;
  text-align: center;
  font-family: 'Space Mono', monospace;
}

p {
  font-size: 14px;
  color: rgb(245, 245, 245);
  text-align: center;
  margin: 0;
  font-family: 'Space Mono', monospace;
}

ul {
  background-color: rgba(0, 0, 0, 0);
  color: rgb(255, 255, 255);
  font-size: 16px;
  text-align: left;
  font-family: 'Space Mono', monospace;
}

a {
  color: white;
  text-decoration: underline;
}

nav.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgb(49, 56, 114);
  color: white;
}

div.logo {
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  font-weight: 100;
  color: white;
  justify-content: center;
}

nav.navbar a {
  color: white;
  text-decoration: underline;
  font-family: 'Space Mono', monospace;
  margin-left: 20px;
}

.interests-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.favorites-section, .hobbies-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 auto;
  width: 100%;
  max-width: 600px; 
}

.interests-container h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 0px; 
  text-align: center;
  margin-top: 0;
  font-family: 'Space Mono', monospace;
}

.text-box {
  background-color: #535a93;
  border: 2px solid white;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  margin-top: 30px; 
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.text-box ul {
  color: white;
  font-size: 1.05rem;
  line-height: 1.8;
  padding-left: 20px;
  margin: 0;
  font-family: 'Space Mono', monospace;
}

.hobby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;             
  width: 100%;
  max-width: 600px;       
  justify-content: center;
  margin: 30px auto 0 auto;
}

.hobby-grid img {
  width: 100%;
  max-width: 180px;    
  height: 130px;   
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.main-content-layout { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: 30px; 
  max-width: 1300px;         
  margin: 0 auto; 
  padding: 40px; 
  min-height: calc(100vh - 80px); 
  position:relative;
} 

.avatar-image { 
  max-width: 220px;            
  width: 100%; 
  height: auto; 
  object-fit: contain; 
  flex-shrink: 0;               
} 

.interactive-button { 
  background-color: #ffae42; 
  color: #f4f5fa; 
  border: 2px solid #ffffff; 
  padding: 14px 32px; 
  font-size: 1.1rem; 
  font-family: 'Space Mono', monospace; 
  font-weight: bold; 
  border-radius: 25px; 
  cursor: pointer; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
  transition: all 0.3s ease; 
  flex-shrink: 0;      
  position: absolute;             
  left: 50%;                      
  top: 50%;                       
  transform: translate(-50%, -50%);         
} 

.interactive-button:hover { 
  background-color: #e09632; 
 transform: translate(-50%, -50%) scale(1.05);
} 

.about-box { 
  flex: 1; 
  max-width: 480px; 
  background: rgba(255, 255, 255, 0.07); 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px); 
  border: 1px solid rgba(255, 255, 255, 0.2); 
  border-radius: 20px; 
  padding: 35px; 
  color: #ffffff; 
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); 
  line-height: 1.7; 
  letter-spacing: 0.3px; 
  z-index: 5; 
  transition: opacity 0.6s ease, transform 0.6s ease; 
  text-align: left; 
} 

.about-box h2, .about-box p { 
  text-align: left; 
} 

.about-box.hidden { 
  opacity: 0; 
  transform: translateX(40px);  
  pointer-events: none; 
} 

.about-box.reveal { 
  opacity: 1; 
  transform: translateX(0);    
  pointer-events: auto; 
} 

.Contacts {
  background-image: url('Screenshot 2026-09-06 175046 copy.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

h5 {
  font-size: 1.5rem;
  color: white;
  margin-top: 20px;
  font-family: 'Space Mono', monospace;
  transform:translateY(420px)
}

.tiktok {
  font-size: 1.4rem;
  color: rgb(248, 248, 249);
  display: inline-block;
  background-color: #010132; 
  color: #ffffff;         
  padding: 8px 16px;     
  border-radius: 20px;     
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  transform:translateY(320px)

  .tiktok:hover {
    background-color: #0056b3; 
  }

}

.github {
  font-size: 1.4rem;
  color: rgb(7, 1, 48);
  display: inline-block;
  background-color: #010132; 
  color: #ffffff;  
  padding: 8px 16px;      
  border-radius: 20px;    
  text-decoration: none;
  font-family: 'Space Mono', monospace;

}

h6 {
  font-size: 1.6rem;
  color: rgb(7, 1, 46);
  margin-top: 20px;
  font-family: 'Space Mono', monospace;
}

.contact-info {
  margin-left:20px;
  transform:translateX(-200px)
}