body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #fff;
  }

  header {
      position: relative;
      background-image: url("tattoo2.jpg");     
      background-size: cover;       
      background-repeat: no-repeat;
      background-position: center;
      height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  nav {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: rgb(0, 0, 0,50%);
      padding: 20px;
      }

  .nav-logo {
      height: 40px;      
      width: auto;
      border-radius: 30px;
  }

  .nav-links a {
      color: white;
      margin-left: 20px;
      text-decoration: none;
      font-weight: bold;
      
  }


      .intro {
  background-color: rgb(18, 19, 23);
  padding: 40px 20px;
  }

  .intro-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  flex-wrap: wrap;
  }

  .intro-text {
  flex: 1;
  color: #ccc;

  }

  h2{
      margin: 0;
  }

  .header-title {
position: absolute;
right: 20%;
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
align-items: center;
text-align: right;
color: white;
font-size: 28px;
line-height: 1.2;
}


  .intro-text p {
  font-size: 16px;
  max-width: 500px;
  text-align: justify;
  }

  .intro-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  }

  .intro-img:hover {
  filter: grayscale(0%);
  transition: filter 0.5s ease;
  }



  .gallery-section {
    background-color: #303138;
    padding: 40px 20px;
    text-align: center;
  }

  .gallery-section h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1000px;
      margin: auto;
      padding: 20px;
  }

  .gallery img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 8px;
  }

  .see-more {
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
    cursor: pointer;
    color: rgb(255, 255, 255);
  }

  footer {
    background-color: rgb(0, 0, 0);
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
  }

  .socials {
    margin-top: 10px;
  }

  .socials a {
    margin: 0 8px;
    color: #fff;
    text-decoration: none;
  }

  .footer-links {
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}

.footer-links a {
  color: #777;
  text-decoration: none;
  margin-right: 15px;
}

.footer-links a:hover {
  color: #00aced;
}

.social-icon{
  width: 32px;
  height: 32px;
}

/*obile*/
@media (max-width: 768px) {
  nav {
  flex-direction: column;
  align-items: center;
}

.nav-logo {
  margin-bottom: 10px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nav-links a {
  margin-left: 0; 
}

.header-title {
  right: 10%;
  font-size: 20px;
  text-align: center;
  align-items: center;
}

.intro-content {
  flex-direction: column;
  text-align: center;
}

.intro-text p {
  text-align: center;
  font-size: 15px;
  max-width: 90%;
  margin: 0 auto;
}

.intro-img {
  margin-top: 20px;
  width: 150px;
  height: 150px;
}

.gallery {
  grid-template-columns: repeat(2, 1fr);
  padding: 10px;
}

.gallery img {
  height: 180px;
}

footer {
  font-size: 12px;
  padding: 20px 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-links a {
  margin: 0;
}

.social-icon {
  width: 28px;
  height: 28px;
}

}

