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

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  border-bottom: 1px solid #ddd;
}
.logo {
  height: 50px;
}
nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #333;
}
nav a:hover {
  text-decoration: underline;
}

/* footer */

footer {
  text-align: center;
  padding: 1rem;
  background: #f5f5f5;
  font-size: 0.9rem;
  color: #555;
}
footer a {
  color: #555;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #f9f9f9, #eee);
}
.hero h1 {
  font-size: 2rem;
}

/* Gallery */
.gallery {
  padding: 2rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.artwork img {
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s;
}
.artwork img:hover {
  transform: scale(1.02);
}
.artwork p {
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Sections */
section {
  padding: 2rem;
}
.manifesto, .about, .contact {
  background: white;
  margin: 2rem;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.portrait {
  width: 150px;
  display: block;
  margin-bottom: 1rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

/* Privacy Modal */
.privacy-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.privacy-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.privacy-content h3 {
  margin-top: 0;
}
.privacy-logo {
  width: 60px;
  margin-bottom: 1rem;
}
.privacy-content button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.privacy-content button:hover {
  background: #555;
}

