/* General body and layout */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #f9f6f3;
  color: #333;
}

/* Header styling */
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

/* Main content centering */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* General image styling */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Artist info and photo */
.artist-info {
  display: flex;
  align-items: center;
}
.artist-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 15px;
}

/* Tagline */
.tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px;
}
.art-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.art-card img:hover {
  transform: scale(1.05);
}

/* View more button */
.view-more {
  text-align: center;
  margin-bottom: 40px;
}
.view-more button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.view-more button:hover {
  background-color: #555;
}

/* Video page centering */
.video-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.video-container h2,
.video-container p {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.video-container iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 700px;
  height: 394px; /* 16:9 aspect ratio for 700px width */
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive tweaks */
@media (max-width: 800px) {
  .video-container iframe {
    width: 100%;
    height: 56vw; /* maintain 16:9 ratio on small screens */
    min-height: 200px;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tagline {
    font-size: 1rem;
  }
  .artist-photo {
    width: 50px;
    height: 50px;
  }
}