body{
  padding-top: 100px;
  margin: 0;
  height: 2000px;
  background-color: #0b0f1a; 
  background-size: 300% 300%;
  animation: gradientMove 12s ease infinite;
  color: aliceblue;
  font-family: roboto, arial;
}
.hamburger{
  display: none;
}

.header-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background-color: rgba(10, 15, 25, 0.8);
  backdrop-filter: blur(12px);
  color: aliceblue;
  animation: headerGlow 4s ease-in-out infinite;
  z-index: 998;
}
.portfolio-text{
  font-size:20px;
  color: #00f2fe;
}

.hero-section{
  display: flex;
  gap: 25px;
  margin: 0 20px;
}

.hero-section p {
  cursor: pointer;
  transition: 0.3s;
  color: aliceblue;
}

.hero-section p:hover {
  color: #00f2fe;
  transform: translateY(-2px);
}

.right-section{
  display: flex;
  gap: 20px;
  align-items: center;
}

.right-section button {
  transition: 0.3s;
}

/* buttons */
.right-section button:hover {
  transform: scale(1.05);
}

.download-cv-button{
  border: none;
  padding: 6px ;
  border-radius: 10px;
  background-color: #00f2fe;
  color: #0b0f1a;
  font-weight: 500;
}
.profile-container{
  display: flex;
  align-items: center;
  gap: 15px;
}
.profile-picture{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border:#00f2fe 2px solid;
  object-fit: cover;
}

/* ANIMATIONS */
@keyframes headerGlow {
  0% {
    box-shadow: 0 0 0px rgba(0, 242, 254, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
  }
  100% {
    box-shadow: 0 0 0px rgba(0, 242, 254, 0.2);
  }
}

@media (max-width: 850px) {
  .hamburger {
    display: block;
    font-size: 25px;
  }
  .hero-section {
    display: none;
  }
}
@media (max-width: 440px) {
  .Developer{
    display: none;
  }
  .header-container {
    background-color: rgba(10, 15, 25, 0.95);
  }
}
@media (max-width: 320px) {
  .profile-container{
    display: none;
  }
}
@media (max-width: 250px) {
  .download-cv-button{
    display: none;
  }
}

.mobile-menu{
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: white;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  background-color: #0b0f1a; 
  padding: 30px 0;
}
.mobile-menu.active{
  transform: translateY(0);
}
.mobile-header{
  display: flex;
  justify-content: flex-end;
  padding:  0 20px;
  z-index: 10000;
}
.close-button{
  color: #00f2fe;
  font-size: 27px;
  cursor: pointer;
  margin-top: 15px;
}
.mobile-hero{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 5px;
  padding: 0 30px;
  margin-top: -30px;
}

.mobile-hero p {
  cursor: pointer;
  transition: 0.3s;
  color: aliceblue;
}

.mobile-hero p:hover {
  color: #00f2fe;
  transform: translateY(-2px);
}
.mobile-download-cv-button{
  border: none;
  padding: 6px ;
  border-radius: 10px;
  background-color: #00f2fe;
  color: #0b0f1a;
  font-weight: 500;
}

