@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

:root {
  --main-color: #f7f7f7;
  --primary-color: #242424;
  --secondary-color: #fe4c06;
  --secondary2-color: #cbebf6;
  --color: #e6e5e5b2;
  --color12: #ececec;
  --color1: #acacaca8;
  --color2: #111111;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  list-style: none;
  text-decoration: none;
}

body {
  background-color: var(--main-color);
  /* opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out; */
}
.section-now {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.4s ease-out;
    }

    .section-now.visible {
      opacity: 1;
      transform: translateY(0);
    }
p{
  font-size: 1rem;
}



header{
  display: flex;
  justify-content: center;
  align-items: center;
    margin-top: 3em;

}

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      position: fixed;
      z-index: 10;
      height: 10vh;
      width: 90%;
      border-radius: 50px;
      
    }

    .logo img {
      height: 80px; /* adjust as needed */
  width: auto;
  object-fit: contain;
  display: block;
  cursor: pointer;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--primary-color);
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover,#mobile-links a:hover,   .socials a:hover  {
      color: var(--secondary-color);

    }

    .collab-btn a, .header-contact-me{
      padding: 0.5rem 1rem;
      background: var(--secondary-color);
      color: var(--main-color);
      text-decoration: none;
      border-radius: 20px;
      font-weight: 600;
      transition: background 0.3s;
    }

    .collab-btn a:hover, .header-contact-me:hover{
      background: #e94400;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      z-index: 11;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--primary-color);
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .menu-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      position: fixed;
      top: -100%;
      left: 0;
      width: 100%;
      height: auto;
      background: white;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: top 0.3s ease;
      z-index: -9;
      
    }

    .menu-wrapper.active {
        top: 0; 
    }

    .menu-inner {
       display: flex;
  flex-direction: column;
  padding: 1.5rem;
  margin-top: 3em;
    }

    .menu-inner nav a {
      display: block;
      margin: 1rem 0;
      font-size: 1.2rem;
      color: var(--primary-color);
      text-decoration: none;
      opacity: 0;
      transform: translateX(-20px);
    }

    .socials {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
    }

    .socials a {
      color: var(--primary-color);
      font-size: 1.5rem;
    }

    .collab-btn-slide a {
      display: inline-block;
      margin-top: 2rem;
      padding: 0.5rem 1rem;
      background: var(--secondary-color);
      color: var(--main-color);
      border-radius: 20px;
      text-decoration: none;
      font-weight: bold;
    }
    #mobile-links{
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}






    @media (max-width: 1080px) {
      .nav-links,
      .collab-btn {
        display: none;
      }

      .hamburger {
        display: flex;
      }
      
    }