body
{
  font-family: Arial, Helvetica, sans-serif;
  background-color:rgb(229, 237, 237);
}
header
{
  position:relative;
  width: 100%;
  z-index: 1000;
}
 nav
{
  width:100%;
  position:fixed;
  background-color:rgb(18, 18, 19);
  color: white;
  display: flex;
  top: 0;
  align-items: center;
  
}
header nav ul
{
  list-style: none;
  display: flex;
}
header nav ul li
{
  margin: 0 15px;
}
header nav ul li a
{
  color:white;
  text-decoration: none;
  font-size: 16px;
}
header nav .contact-btn
{
  background-color: rgb(228, 107, 20);
  padding: 10px 20px;
  color: black;
  border-radius: 5px;
  text-decoration: none;
}
section#home
{
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 75vh;
  padding: 0 10%;
}
.intro
{
  max-width: 500px;
}
.intro h1
{
  font-size: 48px;
}
.intro .role
{
 font-size: 24px;
}
.intro .btn
{
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}
.photo img
{
  border-radius: 90%;
  width: 250px;
  height: 250px; 
  object-fit: cover;
  border: 5px solid black;
}
section#about,section#contact
{
 padding: 50px 10%;
 text-align:center ;
}
section#abouth2,section#contacth2
{
 font-size: 36px;
 margin-bottom: 20px;
}
form input, form textarea
{
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: 1px solid black;
  border-radius: 5px;
}
form button
{
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}



.Portfolio {
  background-color: #ea5967;
  
}
html{
  scroll-behavior: smooth;
}


/* responsive */
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Header and Navigation */
header {
  background: #333;
  color: #fff;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

/* Button Styles */
.contact-btn, .Portfolio {
  background: #b85c7b;
  color: rgb(16, 4, 4);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Section Styles */
section {
  padding: 20px;
  text-align: center;
}

.img img {
  border-radius: 50%;
  border: 5px solid black;
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
      flex-direction: column;
      align-items: center;
  }
  
  .img img {
      width: 200px;
      height: 200px;
  }
  
  .title {
      font-size: 1.5em;
  }
  
  .Description {
      font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  nav ul {
      margin: 0;
  }
  
  .title {
      font-size: 1.2em;
  }
  
  .Description {
      font-size: 0.8em;
  }
  
  .contact-btn, .Portfolio {
      width: 100%;
      margin: 10px 0;
  }
}



/*-----------*/
/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Navigation Links */
.nav-links {
  display: flex;
  justify-content: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
      display: block;
      color: white;
      margin-right: 15px;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 60px; /* Adjust according to your header height */
      left: 0;
      background-color: black;
  }

  .nav-links.active {
      display: flex;
  }

  .nav-links li {
      margin: 10px 0;
  }

  .contact-btn {
      width: 90%; /* Make the button responsive */
      margin: 10px auto; /* Center the button */
  }
}

/* Adjusting Contact Me Button */
.contact-btn {
  padding: 10px 20px;
  width: auto; /* Allow it to adjust */
}

