/*------------------------------
  Base Styles
------------------------------*/

body {
  margin: 0;
  font-family: 'Inter'/*, system-ui*/, sans-serif;
  line-height: 1.5;
  color: #111;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}


h1, h2, h3, .hero-title, .section-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/*------------------------------
  Layout Elements (Refined)
------------------------------*/

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #f8f8f8;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
  z-index: 10;
}

.site-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}

.site-title a {
  color: #111;
  text-decoration: none;
}

main.site-main  {

}

main.artwork-archive  {
  padding: 0 20px 0 20px;
}

.container {
  padding: 0 20px 0 20px;
  border: 0    <header class="archive-header">CONTACTpx solid #7a2e12;
}


/*--------------------------
	PAGE HEADERS
---------------------------*/

.master {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 1rem;
  position: relative;
  animation: fadeInDown 0.6s ease-out;
}

.master-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01px;
  margin-bottom: 0.5rem;
  color: #111;
  font-size: 2rem;
}

.master-description {
  font-size: 1.125rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
  /*font-style: italic;*/
  font-weight: 400;
  letter-spacing: 0.15px;
}

.master::after {
  content: '';
  display: block;
  height: 2px;
  width: 80px;
  margin: 1rem auto 0;
  background: linear-gradient(to right, #3a7bd5, #00d2ff);
  border-radius: 2px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*------------------------------
  Navigation Styles (Modern)
------------------------------*/

.primary-navigation {
  margin-top: 0;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu li {
  position: relative;
}

.primary-menu a {

  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.95rem;
  font-weight: 480;
  
  display: block;
  padding: 0.5rem 0.75rem;

  color: #333;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.primary-menu a:hover {
  background-color: #eaeaea;
  color: #000;
}

/* Dropdown Menu */
.primary-menu ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background: #fff;
  padding: 0.5rem 0;
  margin: 0;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  z-index: 999;
  min-width: 180px;
  border-radius: 6px;
}

.primary-menu li:hover > ul {
  display: block;
}

.primary-menu ul li a {
  padding: 0.5rem 1rem;
  white-space: nowrap;
  color: #333;
}

.primary-menu ul li a:hover {
  background-color: #f5f5f5;
}

/*------------------------------
  Mobile Menu
------------------------------*/

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  line-height: 1;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .primary-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 1rem;
  }

  .primary-menu.active {
    display: flex;
  }

  .primary-menu li {
    width: 100%;
  }

  .primary-menu a {
    padding: 1rem;
    width: 100%;
    border-radius: 0;
  }

  .primary-menu ul {
    position: static;
    border: none;
    box-shadow: none;
  }

  .primary-menu li:hover > ul {
    display: none;
  }

  .primary-menu li:focus-within > ul,
  .primary-menu li.open > ul {
    display: block;
  }
}


.sub-menu {

}



/*------------------------------
  Sticky Header
------------------------------*/
/*
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #f8f8f8;
  transition: box-shadow 0.2s ease;
}

.site-header.sticky-shadow {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
*/