/* Import Inter font with specific weights */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* Set base font styles */
:root {
  --font-family-base: "Montserrat", -apple-system, BlinkMacSystemFont, system-ui,
    sans-serif;
  --background: #d1e4dd;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--background);
  color: #4a4a4a;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background: #4a4a4a;
  color: #fff;
  padding: 1rem;
  padding-left: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 500;
  font-size: 1.5em;
  margin-right: auto;
}

.header-logo {
  display: grid;
  grid-template-rows: repeat(auto-fit);
}

.signature {
  font-weight: 300;
  font-size: 1em;
  margin-right: auto;
}

h1 {
  font-family: var(--font-family-base);
  font-weight: 800;
  font-size: 2.5em;
}

nav {
  display: flex;
  justify-content: right;
  flex-grow: 1;
}

nav a {
  font-family: var(--font-family-base);
  font-size: 1.2em;
  font-weight: 500;
  color: #c8c7c7;
  text-decoration: none;
  margin: 0 1rem;
}

@media (max-width: 768px) {
  .art-grid img {
    flex-basis: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (max-width: 480px) {
  .art-grid img {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.content-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.artist-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bio {
  font-size: 1.2rem;
  line-height: 1.6;
}

.bio p + p {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Styles for the gallery */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 16px;
}

.gallery-img {
  width: 100%;
  border-radius: 8px;
  cursor: normal;
  transition: transform 0.2s ease-in-out;
}

.gallery-img:hover {
  transform: scale(0.98);
}
