/* General Styles */
body {
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 10px 0;
  text-align: center;
}

header h1 {
  font-size: 36px;
  letter-spacing: 4px;
  font-weight: 500;
  color: #ea1285;
}

/* Artist statement */
.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 20px auto;
  max-width: 650px;
}

.artist-statement {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.3px;
  margin: 0;
  color: #545354;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid #ea1285;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #ea1285;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.btn:hover {
  background-color: #ea1285;
  color: #ffffff;
}

/* Sections */
section {
  text-align: center;
}

h3 {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #545354;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Mobile View —  2 columns */
@media (max-width: 425px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: #ffffff;
  color: #ffffff;
  padding: 10px 0;
  text-align: center;
}
