/*@import url('https://fonts.googleapis.com/css2?family=Unna&display=swap');*/


body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #fefefe;
}


/* Headings */
h1 {
  text-align: center;
  font-weight: 600;
  font-size: 2.8em;
  margin: 20px 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

h2.section-title {
  text-align: center;
  font-size: 2em;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 1em;
}

h3.section-title {
  margin-top: 30px;
  margin-bottom: 0.8em;
  font-size: 1.8em;
  font-weight: 500;
  text-align: center;
  color: #444;
}


/* Artist statement */
.statement {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.15em;
  line-height: 1.7;
  color: #222;

  max-width: 1000px;
  margin: 20px auto;
  padding: 10px;
  box-sizing: border-box;

  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #f9f9f9;
}


 /*COMMISSIONS*/
.commissions {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 1.15em;
  line-height: 1.7;
  color: #222;

  max-width: 1000px;
  margin: 20px auto;
  padding: 10px;
  box-sizing: border-box;

  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #f9f9f9;
}
.commissions a {
  color: #3366cc;
  text-decoration: none;
}
.commissions a:hover {
  text-decoration: underline;
}
.commissions p {
  margin: 8px 0;
}


/* Image grid */
.gallery-intro {
  max-width: 1000px;
  margin: 10px auto 10px auto;
  text-align: center;
  font-size: 1.15em;
  color: #222;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.gallery img:hover {
  transform: scale(1.015);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}


/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  cursor: zoom-out;
}


/* FOOTER */
.footer-separator {
  margin: 60px auto 30px auto;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  width: 100%;
}
footer.contact-info {
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1em;
}
footer.contact-info h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 600;
}

 /*CONTACT INFO*/
.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  align-items: center;
  padding: 10px 0;
}
.contact-row a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #2a2a2a;
  font-weight: 500;
  transition: color 0.2s ease;
}
.contact-row a:hover {
  color: #3366cc;
}
.contact-row img {
  width: 20px;
  height: 20px;
}


/*  NAVIGATION BAR */
nav.main-nav {
  background-color: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 12px 24px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}
nav.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
nav.main-nav li {
  position: relative;
}
nav.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 4px;
  font-size: 1.05em;
  transition: color 0.2s ease;
}
nav.main-nav a:hover {
  color: #3366cc;
}

/* Dropdown submenu */
nav.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 8px 0;
  z-index: 99;
}
nav.main-nav li:hover > .sub-menu {
  display: block;
}
nav.main-nav .sub-menu li {
  width: 180px;
}
nav.main-nav .sub-menu a {
  display: block;
  padding: 8px 16px;
  color: #222;
  white-space: nowrap;
}
