/* Global reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: bisque;
  font-family: Assistant, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Navigation styles */
nav a {
  text-decoration: none;
  color: #070707;
  padding: 20px;
  font-size: 14px;
  font-weight: 700;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Header layout */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

/* Logo circle */
.logo-circle {
  height: 50px;
  width: 50px;
  background-color: #ff6600;
  color: white;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* Image container and image */
#imagecontainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

img {
  width: 80%;
  max-width: 300px;
  height: auto;
  border-radius: 50%;
}

/* Section display */
.section {
  display: none;
  padding: 20px;
}

/* Show section targeted by hash */
.section:target {
  display: block;
}

/* Home Section */
.Homesection {
  text-align: center;
}

.Homesection h1,
.Homesection h2 {
  margin: 10px 0;
}

/* About section */
.about-container {
  text-align: left;
  padding-top: 5%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

/* Skills section */
.skill-container ul {
  list-style: none;
  padding-left: 0;
}

.skill-container ul li {
  padding: 10px 0;
  font-size: 20px;
  font-weight: 700;
}

/* Contact form section */
.Contactsection {
  padding: 30px;
}

.form-container {
  padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input,
button {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  font-size: 14px;
}

button {
  border-radius: 10px;
  background-color: #070707;
  color: white;
  border: none;
  cursor: pointer;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    padding: 10px 0;
    font-size: 16px;
  }

  .about-container {
    padding-top: 10%;
    font-size: 16px;
  }

  .skill-container ul li {
    font-size: 18px;
  }

  .Homesection h1,
  .Homesection h2 {
    font-size: 18px;
    text-align: center;
  }
}
