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

html, body {
  font-family: Arial, sans-serif;
  background-color: white;
  color: black;
  line-height: 1.6; /* Improve readability */
}

/* Photo Grid */
.photo-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px;
  max-width: 500px; /* Adjusted for vertical centering */
  margin: auto;
}

.photo {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.photo img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.photo:hover img {
  transform: scale(1.1);
}


/* Headings */
h1, h3 {
  font-family: 'Copperplate', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: black;
  margin: 0; /* Removes all margin */
  padding: 0; /* Removes all padding */
}

.logo {
  text-align: center;
}

.logo2 {
  margin: 0; /* Removes all margin */
  padding: 0; /* Removes all padding */
}

/* Add spacing explicitly between h1 and h3 */
.logo h1 {
  margin-bottom: -20px; /* Adds consistent spacing below h1 */
}

.logo h3 {
  margin-top: 0; /* Ensures no extra spacing above h3 */
}


.logo-image {
  max-width: 100%; /* Adjust width dynamically */
  height: auto; /* Maintain aspect ratio */
  display: inline-block;
}

/* Main Navigation */
.tab-bar {
  background-color: black;
  color: white;
}

.tab-bar ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-family: "copperplate", sans-serif;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.tab-bar li {
  margin: 5px 0;
}

.tab-bar a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: white;
  transition: background-color 0.3s;
}

.tab-bar a:hover {
  background-color: #555;
}

/* Footer */
.footer {
  background: #000;
  padding: 20px;
  text-align: center;
  font-family: 'Play', sans-serif;
  color: gray;
}

.footer .row {
  margin: 10px 0;
  font-size: 0.8em;
}

.footer a {
  text-decoration: none;
  color: gray;
  transition: color 0.3s;
}

.footer a:hover {
  color: #fff;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  display: inline;
  margin: 0 15px;
}

.footer a i {
  font-size: 1.5em;
  margin: 0 5px;
}

/* Artist Introduction Section */
.artist-introduction {
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: "copperplate", sans-serif;
}

.artist-info {
  text-align: center;
  margin-bottom: 15px;
}

.artist-info h2, .artist-info h3 {
  margin-bottom: 8px;
  color: #333;
}

.artist-info p {
  color: black;
  font-size: 16px;
  padding: 0 10px;
  margin-bottom: 10px;
}

.artist-photo {
  width: 100%;
  overflow: hidden;
}

.artist-photo img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  object-fit: cover;
  filter: brightness(70%);
  border-radius: 5px;
}

/* Adjustments for Small Screens */
@media (max-width: 720px) {
  body {
    font-size: 14px; /* Slightly smaller font for compact screens */
  }

  .tab-bar ul {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .tab-bar li {
    margin: 5px 0;
  }

  .footer {
    text-align: center;
    padding: 15px;
  }

  .footer ul li {
    display: block;
    margin: 8px 0;
  }

  .footer a i {
    font-size: 1.2em;
  }

  .artist-introduction {
    padding: 10px;
  }

  .artist-info p {
    font-size: 14px;
  }

  .artist-photo img {
    height: auto;
    border-radius: 5px;
  }
}

@media (max-width: 768px) {
  .photo-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
      gap: 15px; /* Smaller gap for compact layout */
      padding: 20px;
  }

  .tab-bar ul {
      flex-wrap: wrap; /* Allow wrapping for the navigation bar */
      justify-content: space-evenly;
  }

  .tab-bar ul li {
      margin: 10px 5px; /* Reduce spacing */
  }

  .tab-bar ul li a {
      font-size: 1rem; /* Adjust font size for smaller screens */
  }

  .logo {
    font-size: 1.2rem; /* Smaller font size for mobile */
}

.logo2 {
    font-size: 0.8rem;
}
.logo img, .logo2 img {
  max-width: 80%; /* Shrink images proportionally */
  height: auto;   /* Maintain aspect ratio */
}
.photo-grid {
  grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
  gap: 10px; /* Reduce the gap for compact layout */
  padding: 10px; /* Adjust padding for mobile */
}

.photo-grid .photo img {
  max-width: 75%; /* Scale down the images */
  margin: 0 auto; /* Center images within their container */
  align-items: center;
  padding-left: 100px;
}


  footer .row ul li {
      margin: 0 10px;
  }
}
