* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  color: white;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Navigation Styles */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

#desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #01ee77;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

/*.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #01ee77;
  transition: width 0.3s ease;
}
*/
.nav-links a:hover::after {
  width: 100%;
}

.contact-button {
  padding: 12px 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(45deg, #01ee77, #00cc66);
  border-radius: 25px;
  border: none;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-button:hover {
  background: linear-gradient(45deg, #00cc66, #01ee77);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(1, 238, 119, 0.3);
}

/* Mobile Navigation */
#hamburger-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
}

.hamburger-menu {
  position: relative;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  width: 25px;
  cursor: pointer;
}

.hamburger-icon span {
  height: 2px;
  width: 100%;
  background-color: white;
  transition: all 0.3s ease;
}

.menu-links {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  min-width: 200px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 10px;
  margin-top: 10px;
}

.menu-links.open {
  max-height: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.menu-links li {
  list-style: none;
}

.menu-links a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.menu-links a:hover {
  background: rgba(1, 238, 119, 0.1);
  color: #01ee77;
}

/* Main Content */
main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

#profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 2rem;
  min-height: calc(100vh - 80px);
  position: relative;
}

.section_pic-container {
  position: relative;
  flex-shrink: 0;
}

.section_pic-container img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #01ee77;
  box-shadow: 0 20px 40px rgba(1, 238, 119, 0.3);
  transition: all 0.3s ease;
}

.section_pic-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(1, 238, 119, 0.4);
}

.section_text {
  flex: 1;
  max-width: 600px;
}

.section_text_p1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #01ee77;
  font-weight: 500;
}

.title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #01ee77, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section_text_p2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #cccccc;
  font-weight: 300;
}

.btn-container {
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-color-2 {
  background: transparent;
  color: white;
  border: 2px solid #01ee77;
}

.btn-color-2:hover {
  background: #01ee77;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(1, 238, 119, 0.3);
}

.socials-container {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.icon {
  width: 40px;
  height: 40px;
  fill: white;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.icon:hover {
  fill: #01ee77;
  background: rgba(1, 238, 119, 0.2);
  transform: translateY(-3px);
}

/* Background Animation */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-animation::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(1, 238, 119, 0.1) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-50px, -50px) rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .title {
    font-size: 3.5rem;
  }

  .section_pic-container img {
    width: 300px;
    height: 300px;
  }

  #profile {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  #desktop-nav {
    display: none;
  }

  #hamburger-nav {
    display: flex;
  }

  #profile {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .section_pic-container img {
    width: 250px;
    height: 250px;
  }

  .title {
    font-size: 2.5rem;
  }

  .section_text_p1 {
    font-size: 1.2rem;
  }

  .section_text_p2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 1rem;
  }

  .title {
    font-size: 2rem;
  }

  .section_text_p1 {
    font-size: 1rem;
  }

  .section_text_p2 {
    font-size: 1rem;
  }

  .section_pic-container img {
    width: 200px;
    height: 200px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .socials-container {
    justify-content: center;
  }

  .contact-button {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 320px) {
  .title {
    font-size: 1.8rem;
  }

  .section_pic-container img {
    width: 180px;
    height: 180px;
  }

  #profile {
    padding: 1rem 0.5rem;
  }
}
