/* NAVBAR */
.main-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #222; /* dark, visible */
}

.nav-links a {
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  color: #444;  /* dark grey, visible */
}

.nav-links a:hover {
  color: #000;
}

.about-section {
  padding: 80px 20px;
  max-width: 900px;
  margin: 120px auto;
}

.about-section h1 {
  font-size: 32px;
  margin-bottom: 25px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.contact-section {
  padding: 80px 20px;
  max-width: 900px;
  margin: 120px auto;
}

.contact-section h1 {
  font-size: 32px;
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #bbb;
  border-radius: 4px;
}

.contact-form textarea {
  min-height: 150px;
}

.error-box {
  background: #ffdcdc;
  padding: 12px;
  margin-bottom: 20px;
  border-left: 4px solid red;
}

.success-box {
  background: #d8ffdb;
  padding: 12px;
  margin-bottom: 20px;
  border-left: 4px solid #28a745;
}

.captcha-label {
  margin-top: 10px;
  font-weight: 600;
}

/* GENERAL */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  color: #222;
}

h1, h2, h3 {
  margin: 0;
}

/* HERO */
.hero {
  height: 48vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.hero-inner {
  text-align: center;
}

.artist-name {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 1px;
}

.tagline {
  font-size: 18px;
  margin-top: 10px;
  opacity: 0.7;
}

.browse-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  transition: .2s;
}

.browse-btn:hover {
  background: #000;
  color: #fff;
}

/* GALLERY SECTION */
.gallery-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  transition: opacity .2s;
}

.art-title {
  margin-top: 8px;
  font-size: 16px;
  text-align: center;
  opacity: 0.7;
}

/* MAGNIFIER LENS */
.magnifier-lens {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: none;
  pointer-events: none;
  background-repeat: no-repeat;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: #fff;
  max-width: 900px;
  width: 100%;
  display: flex;
  gap: 30px;
  padding: 30px;
  border-radius: 6px;
}

.modal-img {
  width: 50%;
  border-radius: 4px;
}

.modal-info {
  width: 50%;
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 40px;
  cursor: pointer;
  color: #fff;
}

/* BUTTONS */
.purchase-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.buy-btn {
  padding: 12px 20px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: .2s;
}

.buy-btn.alt {
  background: transparent;
  color: #000;
}

.buy-btn:hover {
  opacity: 0.8;
}

/* RESPONSIVE */
@media(max-width: 800px) {
  .modal-content {
	flex-direction: column;
  }
  .modal-img, .modal-info {
	width: 100%;
  }
}