@charset "UTF-8";
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}

body, html {
  height: 100%;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: black;
  background-color: #E3DFD6;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}
h1, h2, h3 {
	font-family: "neue-haas-grotesk-text", sans-serif;
	color: black;
  line-height: 1.1;
  letter-spacing: -0.01em;
}


.main-header {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 90%;
  width: 100%;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  border-radius: 999px;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.site-title a {
  color: black;
  text-decoration: none;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase; }

.menu-icon {
  justify-self: start;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-links {
  justify-self: end;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.7;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Footer Section */
footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 4rem 2rem 2rem;
  font-family: "neue-haas-grotesk-text", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.footer-title {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  letter-spacing: 0.9rem;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
}

.footer-subscribe {
  margin-bottom: 2rem;
  display: none;
}

.footer-subscribe p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-subscribe form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.footer-subscribe input[type="email"] {
  width: 100%;
  padding: 0.5rem;
  border: none;
  background: transparent;
  border-bottom: 1px solid white;
  color: white;
  font-size: 1rem;
  outline: none;
}

.footer-subscribe button {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.footer-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  font-size: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  position: relative;
}

.footer-links a::before {
  content: "[";
  position: absolute;
  left: -0.8rem;
  opacity: 1;
  transition: transform 0.3s ease;
}

.footer-links a::after {
  content: "]";
  position: absolute;
  right: -0.8rem;
  opacity: 1;
  transition: transform 0.3s ease;
}

.footer-copy {
  margin-top: 4rem;
  font-size: 0.75rem;
  opacity: 0.6;
}
.footer-links a:hover::before {
  transform: translateX(0.4rem);
}

.footer-links a:hover::after {
  transform: translateX(-0.4rem);
}
.side-menu {
  position: absolute;
  top: 100%;
  left: 1rem;
  background: #000;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}

.side-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.side-menu a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-family: "neue-haas-grotesk-text", sans-serif;
}

.side-menu a:hover {
  opacity: 0.7;
}
.footer-links {
  gap: 3rem;
}

.footer-links a {
  position: relative;
  transition: all 0.3s ease;
}

.footer-links a::before,
.footer-links a::after {
  transition: transform 0.3s ease;
}

.footer-links a:hover::before {
  transform: translateX(-3px);
}

.footer-links a:hover::after {
  transform: translateX(3px);
}
/* Artwork Carousel Section */
.art-section {
  padding-top: 70px;
}
.artwork-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 3rem;
  padding: 4rem 2rem 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  flex: none;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible; /* changed from hidden */
  padding: 0;
  z-index: 2; /* increased so child elements are layered above */
}

.carousel-image {
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  aspect-ratio: 1 / 1.414;
}

.carousel-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transform: none;
}

.carousel-nav.prev {
  left: 1rem;
}

.carousel-nav.next {
  right: 1rem;
}

.dropdown-section {
  width: 100%;
  margin-top: 2rem;
}

.dropdown-item {
  border-top: 1px solid white;
  padding: 1rem 0;
  cursor: pointer;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 1rem;
  color: white;
  transition: color 0.3s ease;
}

.dropdown-item:hover {
  color: #aaa;
}

.dropdown-item:last-child {
  border-bottom: 1px solid white;
}

.dropdown-content {
  display: none;
  padding-top: 0.5rem;
  color: black;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 90%;
}

.dropdown-item.open .dropdown-content {
  display: block;
}

/* Dropdown Section Enhanced Styles */
.dropdown-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dropdown-section {
  width: 100%;
  margin-top: 0;
}

.dropdown-btn {
  background: none;
  border: none;
  color: black;
  font-size: 0.85rem;
  text-align: left;
  padding: 0.75rem 0;
  width: 100%;
  cursor: pointer;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  transition: color 0.3s ease;
  font-family: "neue-haas-grotesk-text", sans-serif;
}

.dropdown-btn:hover {
  color: #aaa;
}

.dropdown-btn:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.dropdown-content {
  display: none;
  padding-top: 0.5rem;
  color: black;
  font-size: 0.8rem;
  line-height: 1.3;
  max-width: 90%;
}

.dropdown-item.open .dropdown-content {
  display: block;
}
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2.5rem;
  font-weight: 100;
  letter-spacing: -0.05rem;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  z-index: 11;
  transition: color 0.3s ease;
  padding: 0;
  pointer-events: auto;
}

.prev-btn:hover,
.next-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

.prev-btn {
  left: -2rem;
}

.next-btn {
  right: -2rem;
}
.art-details {
	padding-top: 0.3rem;
	font-size: 1rem;
  font-weight: 500;
}
.bracket-link {
  color: black;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  padding-left: 0.8rem;
}
.bracket-link::before {
  content: "[";
  position: absolute;
  /* left: -0.8rem; */
  left: 0;
  opacity: 1;
  transition: transform 0.3s ease;
}
.bracket-link::after {
  content: "]";
  position: absolute;
  right: -0.8rem;
  opacity: 1;
  transition: transform 0.3s ease;
}
.bracket-link:hover::before {
  transform: translateX(0.4rem);
}
.bracket-link:hover::after {
  transform: translateX(-0.4rem);
}
.ownership {
  font-size: 0.9rem;
  color: #5f5f5f;
  margin-bottom: 0.5rem;
}

.buy-button {
  background: none;
  border: 1px solid rgba(0, 0, 0, 1);
  color: black;
  font-family: inherit;
  padding: 6px 14px;
  font-size: 0.9rem;
  border-radius: 1000px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
}
.buy-button:hover {
  background: black;
  color: white;
}
.price {
  font-weight: bold;
}
.prev-btn, .next-btn {
  color: #878686;
}
.prev-btn:hover {
  color: black;
}
.next-btn:hover {
  color: black;
}
#sequence {
  font-size: 0.9rem;
  display: inline-block;
  transform: translateY(-0.15em);
}
#lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

#lightbox-image {
  transition: transform 0.3s ease;
  transform-origin: center center;
  cursor: zoom-in;
  will-change: transform;
}

#lightbox-image.zoomed {
  cursor: zoom-out;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/*Responsive Mobile Layout*/
@media (max-width: 768px) {
  .main-header {
  padding: 0.5rem;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 3rem;
}

.nav-links {
  display: none;
}

.site-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  padding: 0;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
}

  .artwork-section {
    flex-direction: column;
    padding: 2rem 1rem;
    align-items: center;
    gap: 2rem;
  }

  .carousel-container {
    width: 100%;
    max-width: 100%;
  }

  .carousel-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
  }

  .prev-btn, .next-btn {
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    display: none;
  }

  .prev-btn {
    left: 0.5rem;
  }

  .next-btn {
    right: 0.5rem;
  }
  .art-info {
    width: 100%;
    text-align: center;
    padding: 0 1rem;
  }

  .art-info h2.art-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .art-info h3.art-details {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin: 0.1rem 0;
    display: block;
  }
  .art-info h3.art-details:nth-of-type(2)::after {
    content: " · 2025";
    white-space: normal;
  }

  .art-details {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.85;
    margin-bottom: 0.5rem;
  }

  .ownership {
    font-size: 0.8rem;
    opacity: 0.65;
    margin-bottom: 0.5rem;
  }

  .buy-button {
    margin: 1rem auto 0;
    display: inline-block;
  }
  .art-info h3.art-details:nth-of-type(3) {
    display: none;
  }
  .art-info .description {
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 350;
    max-width: 32ch;
    margin: 0rem auto 0rem;
    opacity: 0.85;
    position: relative;
    padding: 1rem 0;
  }
  .art-info .description::before,
  .art-info .description::after {
  content: "";
  display: block;
  width: 40%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  }

  .art-info .description::before {
  margin-bottom: 2rem;
  }

  .art-info .description::after {
  margin-top: 2rem;
  }
  .art-info .price {
  margin-top: -1rem; /* Or even 0 if you want it tight */
  }

  .dropdown-btn {
    background: none;
    border: none;
    color: black;
    font-size: 0.85rem;
    text-align: center;
    padding: 0.75rem 0;
    width: 100%;
    cursor: pointer;
    border-top: 1px solid rgba(0, 0, 0, 0.4);
    transition: color 0.3s ease;
    font-family: "neue-haas-grotesk-text", sans-serif;
  }

  .dropdown-btn:hover {
    color: black;
  }

  .dropdown-content {
    text-align: left;
  }
  .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: -1rem;
}

.carousel-dots .dot {
  width: 6px;
  height: 6px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
  background-color: rgba(0, 0, 0, 0.6);
}
footer {
    padding: 3rem 2rem;
  }
  .footer-title {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
  .footer-title .tight-last {
  letter-spacing: 0;
}
  .footer-copy {
    margin-top: 3rem;
  }
  .lightbox-prev,
  .lightbox-next {
    display: none;
  }
}