
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Kaisei HarunoUmi', serif;
}


.navbar { 
  position: fixed;
  top: 20px;
  left: 20px; 
  z-index: 5; 
}


.dropbtn {
  background-color: #7d81e7;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #5059bc;
}


#vanta-bg {
  position: relative;
  min-height: 100vh;
  width: 100%;
  z-index: 0;
}


.experience {
  padding: 80px;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.experience h1 {
  font-size: 72px;
  text-align: center;
  margin-bottom: 80px;
  color: white;
  text-shadow: 0 4px 4px rgba(0,0,0,0.25);
}


.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  
}

.job {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.job:hover {
  transform: translateY(-15px); /* Moves the card up */
  background: rgba(255, 255, 255, 0.25); /* Makes it slightly brighter on hover */
  box-shadow: 0 30px 60px rgba(0,0,0,0.45); /* Deepens the shadow for depth */
}

.job img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.job h2 {
  margin-top: 20px;
  font-size: 28px;
}

.job span {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
}

.job p {
  margin-top: 15px;
  font-size: 20px;
  line-height: 1.6;
}

.page {
  transform-origin: center;
  overflow: visible;
}

@media (max-width: 768px) {
  .experience h1 {
    font-size: 48px;
  }
}
