/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Header */
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    height: 100px;
    margin-right: 15px;
  }
  
  .logo-text {
    font-size: 30px;
    color: #000;
    font-weight: bold;
  }
  
  .logo-subtext {
    font-size: 40px;
    color: #333;
  }
  
  .menu-list {
    display: flex;
    list-style: none;
    justify-content: space-between;
  }
  
  .menu-list a {
    text-decoration: none;
    color: #000;
  }
  
  .menu-list a:hover {
    color: #ff9800;
  }
  
  /* Artist Profile */
  .artist-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
  }
  
  .artist-info {
    padding: 20px;
  }
  
  .artist-name {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .tattoo-styles {
    display: grid;
    gap: 10px;
  }
  
  .tattoo-style {
    background-color: #f3f3f3;
    padding: 15px;
    border-radius: 8px;
  }
  
  .style-name {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .artist-photo {
    display: flex;
    justify-content: center;
  }
  
  .artist-image {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .artist-profile {
      grid-template-columns: 1fr;
    }
  
    .logo-text, .logo-subtext {
      font-size: 24px;
    }
  
    .artist-name {
      font-size: 24px;
    }
  
    .style-name {
      font-size: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .artist-profile {
      padding: 20px;
    }
  
    .tattoo-styles {
      grid-template-columns: 1fr;
    }
  
    .style-name {
      font-size: 18px;
    }
  }
  
  @media (max-width: 576px) {
    .logo-img {
      height: 80px;
    }
  
    .logo-text {
      font-size: 22px;
    }
  
    .logo-subtext {
      font-size: 30px;
    }
  }
  /* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 200px;
    margin-right: 20px;
}

.logo-text {
    font-size: 50px;
    color: #000;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.tattoo-text {
    color: rgb(4, 4, 4);
    font-weight: bold;
    font-size: 50px;
}

.menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu ul li {
    margin: 0 15px;
}

.menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: bold;
}

.menu ul li a:hover {
    color: #1905f9;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .logo-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 20px;
    }

    .menu ul li {
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 250px;
    }

    .logo-text {
        font-size: 60px;
    }

    .tattoo-text {
        font-size: 60px;
    }

    .menu ul li a {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    header {
        padding: 10px 0;
    }

    .logo-img {
        height: 250px;
    }

    .logo-text {
        font-size: 40px;
    }

    .tattoo-text {
        font-size: 40px;
    }

    .menu ul {
        align-items: center;
    }

    .menu ul li {
        margin: 5px 0;
    }

    .menu ul li a {
        font-size: 14px;
    }
}
/* General Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.grid {
  display: grid;
  gap: 20px;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu ul {
  display: flex;
  list-style: none;
}

.menu li {
  margin: 0 20px;
}

.menu a {
  text-decoration: none;
  color: #000;
  padding: 10px;
}

.menu a:hover {
  color: #ff9800;
}

/* Tattoos Section */
.section {
  padding: 40px 0;
}

.image-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 images in desktop/laptop */
  gap: 10px;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .image-container {
    grid-template-columns: repeat(2, 1fr); /* 2 images on smaller devices */
  }

  .title {
    font-size: 40px; /* Adjust font size for smaller screens */
  }
}

@media (max-width: 576px) {
  .menu {
    flex-direction: column; /* Stack the menu items */
    align-items: center; /* Center the menu items */
  }

  .menu li {
    margin: 10px 0; /* Add margin for vertical spacing */
  }

  .title {
    font-size: 30px; /* Adjust font size for smaller screens */
  }
}

 /* Base Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-container {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 200px;
  margin-right: 20px;
}

.logo-text {
  font-size: 50px;
  color: #000;
  font-weight: bold;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.tattoo-text {
  color: rgb(4, 4, 4);
  font-weight: bold;
  font-size: 50px;
}

.menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu ul li {
  margin: 0 15px;
}

.menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: bold;
}

.menu ul li a:hover {
  color: #1905f9;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .logo-container {
      flex-direction: column;
      align-items: flex-start;
  }

  .menu ul {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      margin-top: 20px;
  }

  .menu ul li {
      margin: 10px 0;
  }
}

@media (max-width: 768px) {
  .logo-img {
      height: 250px;
  }

  .logo-text {
      font-size: 60px;
  }

  .tattoo-text {
      font-size: 60px;
  }

  .menu ul li a {
      font-size: 16px;
  }
}

@media (max-width: 576px) {
  header {
      padding: 10px 0;
  }

  .logo-img {
      height: 250px;
  }

  .logo-text {
      font-size: 40px;
  }

  .tattoo-text {
      font-size: 40px;
  }

  .menu ul {
      align-items: center;
  }

  .menu ul li {
      margin: 5px 0;
  }

  .menu ul li a {
      font-size: 14px;
  }
}



  