/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

body {
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Site Wrapper */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.header-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.site-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
}

.artist-title {
  font-size: 0.8rem;
  color: #555;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.award {
  font-size: 0.8rem;
  color: #555;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-tagline {
  color: #111;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
}

.site-tagline:hover {
  color: #0066cc;
}

.contact {
  font-size: 0.85rem;
  color: #333;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact a {
  color: #0033cc;
  text-decoration: none;
  text-transform: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: #111;
  text-decoration: none;
  font-size: 1rem;
}

nav a:hover {
  color: #0066cc;
}

/* Main Content */
main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Footer */
footer {
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
  padding: 2rem 1rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #666;
}

.header-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;

}

.header-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
}

.header-socials a:hover {
  color: #0066cc;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gallery-item {
  text-decoration: none;
  color: inherit;
}

.gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-item h2 {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 400;
}

.gallery-item p {
  color: #666;
  font-size: 0.9rem;
}

/* Content Pages */
.content-page {
  max-width: 800px;
  margin: 0 auto;
}

.content-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.content-page h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.content-page p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-page ul,
.content-page ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.content-page li {
  margin-bottom: 0.5rem;
}

.content-page .page-image {
  margin: 2rem 0;
  text-align: center;
}

.content-page .page-image img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-page .page-image figcaption {
  margin-top: 0.5rem;
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .site-title {
    font-size: 2rem;
  }

  nav ul {
    gap: 1rem;
    justify-content: center;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .content-page h1 {
    font-size: 2rem;
  }
}

/* Loading States */
img {
  loading: lazy;
}

/* Accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Print Styles */
@media print {
  header,
  footer,
  nav {
    display: none;
  }
}
