
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f8f8f8;
}

nav {
  background-color: #111;
  padding: .5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .nav-links {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: 2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #87CEEB;
  text-decoration: underline;
}

.nav-logo img {
  height: 50px;           
  width: auto;
  object-fit: contain;
}
header {
  text-align: center;
  padding: 2rem 2rem;
  background-color: #87CEEB;
  color: #000;
  font-family:Georgia;
}

header h1 {
  margin: 0;
  font-size: 6rem;
  font-weight: bolder;
}

.gallery {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}

.art-piece {
  width: 600px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.art-piece:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.art-piece img {
  width: 100%;
  height: 800px;
  display: block;
  object-fit: cover;
}

.artist-name {
  padding: 1rem;
  font-size: 2rem;
  font-weight: 900;
  background-color: #ddd;
  border-radius: 0 0 8px 8px;
  margin: 0;
}

.art-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  cursor: pointer;
}

.art-link:hover .art-piece {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.art-block {
  text-align: center;
  width: 100%;
  max-width: 1000px;
}

.art-block h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.1rem;
  color: #222;
}

.art-block img {
  width: 90%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.art-block img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.back-link:hover,
.back-link:visited,
.back-link:active,
.back-link:focus {
  color: white;
  text-decoration: underline;
  outline: none;
}

.ori-toor-page h1 {
  font-size: 100px;
}

.artist-bios {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.artist-bio-block {
  text-align: center;
  margin-bottom: 4rem;
}

.artist-bio-block h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #222;
}

.artist-bio-block p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.artist-gallery {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1.5rem;
  justify-items: center;
}

.artist-gallery img {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}

.artist-gallery img:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.artist-gallery .middle-img {
  width: 100%;
}

.featured-artworks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  justify-items: center;
}

.featured-artworks .art-block img {
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .featured-artworks {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-artworks {
    grid-template-columns: 1fr;
  }
}

.artist-featured-artworks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
}

.artist-featured-artworks .art-block h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #222;
}

.artist-featured-artworks .art-block img {
  width: 90%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.main-nav {
  background-color: #111;
  padding: 1rem 0;
  text-align: center;
}

.main-nav .nav-links {
  display: inline-flex;
  gap: 2rem;
}

.main-nav a {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #87CEEB;
}

.event-details {
  background-color: #f0f0f0;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 2rem;
  border-radius: 10px;
}

.event-details h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.event-details p {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  color: #444;
}
