body {
  background: #f7f7f7;
  color: #232323;
  font-family: 'Montserrat', 'Lora', Arial, sans-serif;
}
header, footer {
  background: #fff;
  color: #232323;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: none;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
nav ul li a {
  text-decoration: none;
  color: #232323;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav ul li a.active, nav ul li a:hover {
  background: #232323;
  color: #fff;
}
nav .twitter {
  background: #232323;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  margin-left: 1rem;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
  padding: 0.5rem 1rem;
}
nav .twitter:hover {
  background: #444;
  color: #fff;
}
.hero {
  background: #111;
  text-align: center;
  padding: 4rem 2rem 3rem 2rem;
}
.hero h1 {
  font-size: 2.7rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 10px #00fff7, 0 0 20px #ff00c8;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #fff;
}
.cta {
  background: #232323;
  color: #fff;
  border-radius: 24px;
  font-weight: bold;
  border: none;
  box-shadow: none;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.cta:hover {
  background: #444;
  color: #fff;
}
.gallery {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.gallery h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.1rem;
  color: #232323;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}
.artwork {
  background: #fff;
  border-radius: 10px;
  border: 1.5px solid #eee;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
}
.artwork:hover {
  box-shadow: 0 0 48px #00fff7, 0 0 64px #ff00c8;
  transform: translateY(-8px) scale(1.03);
}
.artwork img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.artwork h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #232323;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.artwork p {
  color: #888;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  font-style: italic;
  letter-spacing: 0.5px;
}
.artwork button {
  background: #fff;
  color: #232323;
  border: 1.5px solid #232323;
  padding: 0.8rem 2rem;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.artwork button:hover {
  background: #232323;
  color: #fff;
  border: 1.5px solid #232323;
}
.about, .contact {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.about h2, .contact h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #232323;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.about p {
  font-size: 1.1rem;
  text-align: center;
  color: #232323;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.contact input, .contact textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1.5px solid #eee;
  font-size: 1rem;
  background: #fff;
  color: #232323;
}
.contact input:focus, .contact textarea:focus {
  outline: 2px solid #232323;
}
.contact button {
  background: #232323;
  color: #fff;
  border: none;
  padding: 0.8rem 0;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}
.contact button:hover {
  background: #444;
  color: #fff;
}
.contact-mail {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #232323;
}
.contact-mail a {
  color: #232323;
  text-decoration: underline;
  font-weight: bold;
}
footer {
  background: #fff;
  color: #232323;
  padding: 2rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 1.5px solid #eee;
}
footer .socials {
  display: flex;
  gap: 1.5rem;
}
footer .socials a {
  color: #232323;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.2s;
}
footer .socials a:hover {
  color: #888;
}
.logo-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}
.logo-hero img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 3px solid #232323;
  padding: 2.5rem;
  display: block;
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 0.5rem 0;
}
@keyframes logo-glow {
  0% { filter: drop-shadow(0 0 60px #fff) drop-shadow(0 0 120px #00fff7); }
  100% { filter: drop-shadow(0 0 120px #fff) drop-shadow(0 0 180px #ff00c8); }
}
.small-btn {
  font-size: 0.98rem;
  padding: 0.5rem 1.2rem;
  border-radius: 18px;
  margin-top: 0.5rem;
}
.art-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  max-width: 480px;
  width: 90vw;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  text-align: center;
  position: relative;
}
.close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2rem;
  color: #232323;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s;
}
.close-modal:hover {
  color: #888;
}
.buy-button {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.1s ease;
}

.buy-button:hover {
  background: #333333;
  transform: translateY(-1px);
}

.buy-button:active {
  transform: translateY(0);
}
@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .gallery {
    padding: 2rem 0.5rem;
  }
  .about, .contact {
    padding: 2rem 0.5rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .logo-hero img {
    width: 80px;
    height: 80px;
    padding: 0.2rem;
  }
} 
.art-status-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 0.95em;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  z-index: 2;
  color: #fff;
  background: #2ecc40;
  letter-spacing: 0.5px;
  pointer-events: none;
} 
.contact img[alt="Wondavee contact"] {
  max-width: 132px;
} 