body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff1f7;
    color: #333;
}

header {
    background: linear-gradient(135deg, #ff8ecb, #ffc1e3);
    color: #3a0030;
    padding: 3rem 2rem;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

header p {
    font-style: italic;
    opacity: 0.9;
}

main {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1rem;
}

h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 2px;
    color: #c21875;
}

.about {
    margin-bottom: 4rem;
    text-align: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(255, 140, 200, 0.25);
}

.artist-photo {
    text-align: center;
    margin-bottom: 4rem;
}

.artist-photo img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
    border: 6px solid #ffe0f0;
}

.galleryold {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery {
    column-count: 3;
    column-gap: 1rem;
}

.gallery img {
  width: 100%;
  margin-bottom: 1rem;
  display: block;
  break-inside: avoid;
}

@media (max-width: 900px) {
  .gallery {
    column-count: 2;
  }
}

@media (max-width: 500px) {
  .gallery {
    column-count: 1;
  }
}

.artwork {
    background: #ffffff;
    padding: 1rem;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(255, 160, 210, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 1rem;
	break-inside: avoid-column;
}

.artwork:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 120, 190, 0.45);
}

.artwork img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.artwork p {
    margin-top: 0.75rem;
    color: #a01460;
    font-weight: 500;
}

footer {
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    font-size: 0.9rem;
    background-color: #ffe3f1;
    color: #a01460;
}
