/* Base */
    body {
      margin: 0;
      font-family: 'Segoe UI', Arial, sans-serif;
      background-color: #faf9f7;
      color: #333;
      line-height: 1.6;
      padding-top: 80px; /* prevents content from hiding under header */
    }

    header {
      background-color: #4a3f35;
      color: white;
      padding: 20px;
      text-align: center;
      position: fixed; /* ✅ Option 2 applied here */
      top: 0;
      width: 100%;
      z-index: 1000;
    }
header h1 { margin: 0; font-size: 2rem; }
nav { margin-top: 10px; }
nav a { color: white; text-decoration: none; margin: 0 15px; font-weight: bold; }
nav a:hover { text-decoration: underline; }
main { max-width: 1000px; margin: auto; padding: 20px; }
section {
    margin-bottom: 40px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.08);
}
h2 { color: #4a3f35; margin-top: 0; }
footer {
    text-align: center;
    background-color: #4a3f35;
    color: white;
    padding: 15px;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* Events */
#events ul { list-style: none; padding: 0; }
#events li {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
#events li strong { font-size: 0.8rem; color: #4a3f35; }

/* Gallery placeholder grid (future) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.gallery-grid figure {
  margin: 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.gallery-grid img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.gallery-grid figcaption { padding: 10px; font-size: 0.95rem; }

/* About Module */
.about-artist { padding: 40px 20px; background-color: #f9f9f9; }
.about-container { max-width: 1200px; margin: 0 auto; }
.artist-profile { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 24px; }
.artist-photo { width: 300px; max-width: 100%; }
.artist-photo, .artist-photo img { border-radius: 8px; }
.artist-photo img { width: 100%; height: auto; object-fit: cover; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.artist-info { flex: 1; min-width: 280px; }
.artist-info h2 { margin-bottom: 15px; font-size: 28px; }
.artist-info p { margin-bottom: 12px; }
.artist-contact h3 { margin-top: 8px; margin-bottom: 12px; }
.contact-details { margin-bottom: 16px; }
.contact-details a { color: #0077cc; text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 10px; }
.contact-form input, .contact-form textarea {
  padding: 10px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px;
}
.contact-form button {
  padding: 12px; background-color: #333; color: #fff; border: none; border-radius: 5px; font-size: 16px; cursor: pointer;
}
.contact-form button:hover { background-color: #555; }

@media (max-width: 600px) {
    nav a { display: block; margin: 6px 0; }
    .artist-profile { flex-direction: column; text-align: center; }
    .artist-photo { width: 80%; margin: 0 auto; }
}

/* Events columns */
.events-flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;              /* allows wrapping on small screens */
}

.events-flex .event-group {
  flex: 1 1 280px;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

/* ----- About Flex Layout ----- */
.about-flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about-flex .about-block {
  flex: 1 1 300px;
  background:#f5f5f5;
  padding:20px;
  border-radius:8px;
  box-shadow:0 1px 4px rgba(0,0,0,0.07);
}
.about-flex .artist-photo {
  width:100%;
  border-radius:8px;
  margin-bottom:15px;
}

/* ----- Contact Flex Layout ----- */
.contact-flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-flex .contact-block {
  flex: 1 1 300px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.contact-flex h3 {
  margin-top: 0;
}