body {
  font-family: 'Montserrat', sans-serif;
  background-image: linear-gradient(to bottom, rgba(144, 113, 164, 0.9), rgba(147, 37, 133, 0.9)), url('bg.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  color: #FFF;
}

.logo {
  font-weight: 800;
  font-size: 1.8rem;
}

.pottery-icon {
  font-size: 1.5rem;
  margin-left: 0.3rem;
}

.nav-link {
  color: #FFF;
  font-weight: 500;
}

.nav-link:hover {
  text-decoration: underline;
}

.hero {
  background: url('') center center/cover no-repeat;
  background-blend-mode: multiply;
  color: #fff;
}

.btn-outline-dark {
  border-color: #000;
  color: #000;
}

.btn-outline-dark:hover {
  background-color: #000;
  color: #fff;
}

.portfolio img {
  background: transparent;
  height: 200px;
  object-fit: contain;
  border-radius: 1rem;
  filter: grayscale(100%) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
  transition: filter 0.3s ease;
  margin: 50px;
}

.portfolio img:hover {
  filter: grayscale(0%) drop-shadow(0 6px 50px rgba(0, 0, 0, 0.75));
}

.ceramic {
	letter-spacing: 0.6em;
    color: #000;
	border: 0;
}

@media (max-width: 576px) {
    .ceramic {
        letter-spacing: 0.4em;
        font-size: 1rem; /* optional */
    }
}

@media (max-width: 576px) {
  nav a.nav-link {
    margin-left: 3rem;
	margin-bottom: 2rem;
  }
}

.modal-content {
  background-color: rgba(144, 113, 164, 0.95); /* similar to your gradient */
  color: #fff;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.modal-header {
  border-bottom: none;
}

.modal-body {
  font-family: 'Montserrat', sans-serif;
}

.modal .close {
  color: #fff;
  opacity: 1;
}