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

body, html {
  height: 100%;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
  background-color: #000;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  scroll-behavior: smooth;
}
h1, h2, h3 {
	font-family: "linotype-didot-headline", serif;
	color: white;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.background-image {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url('img/anders-jilden-Sc5RKXLBjGg-unsplash.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.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 {
  justify-self: center;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-text", sans-serif;
}

.site-title {
  color: white;
  text-decoration: none;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
}
a {
  text-decoration: none;
}
.menu-icon {
  justify-self: start;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

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

.nav-links a {
  text-decoration: none;
  color: white;
  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);
}

.hero-section {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  overflow: hidden;
}

.hero-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.enter-archive {
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

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

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

.enter-archive:hover::before {
  transform: translateX(0.4rem);
}

.enter-archive:hover::after {
  transform: translateX(-0.4rem);
}

.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(6rem, 8vw, 10rem);
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.info-column {
  flex: 1 1 400px;
  max-width: 420px;
}

.info-column h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.info-column p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.bracket-link {
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.bracket-link::before {
  content: "[";
  position: absolute;
  left: -0.8rem;
  top: -0.1rem;
  opacity: 1;
  transition: transform 0.3s ease;
}

.bracket-link::after {
  content: "]";
  position: absolute;
  right: -0.8rem;
  top: -0.1rem;
  opacity: 1;
  transition: transform 0.3s ease;
}

.bracket-link:hover::before {
  transform: translateX(0.4rem);
}

.bracket-link:hover::after {
  transform: translateX(-0.4rem);
}

.hero-heading {
	font-family: "neue-haas-grotesk-text", sans-serif;
}

/* Featured Collection Section */
.featured-collection {
  padding: 6rem 2rem;
  text-align: center;
  background-color: #2e2e2e;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
}

.collection-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(4rem, 8vw, 12rem);
  max-width: 1200px;
  margin: 0 auto;
}

.collection-item {
  max-width: 300px;
  text-align: center;
}

.collection-item img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.collection-title {
  font-size: 1rem;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
}
/*art section - the studio*/
.art-section {
  padding: 6rem 2rem;
  background: black;
  color: white;
}

.art-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  flex-wrap: wrap;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.main-art {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.magnifier {
  margin-top: 2rem;
  width: 260px;
  height: 160px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid white;
  background-repeat: no-repeat;
  background-size: 200%;
  background-position: 30% 80%;
  opacity: 1;
  transition: none;
  background-image: url('img/frames(1).jpg');
}

.art-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding-left: 1.5rem;
}
.art-section .bracket-link {
  margin-left: 12px;
}

/* Archive Section */
.archive-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  height: 100vh;
  background-image: url('img/pero-kalimero-9BJRGlqoIUk-unsplash.jpg');
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  text-align: center;
}

.archive-section h2 {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "linotype-didot-headline", serif;
  font-size: 2rem;
  margin: 0;
}

.archive-details {
  font-size: 0.85rem;
  line-height: 1.6;
  font-family: "neue-haas-grotesk-text", sans-serif;
  text-align: center;
  margin-top: 5rem;
}

.archive-details .artist {
  margin-top: 0.8rem;
}

.archive-details .country {
  font-size: 0.75rem;
  opacity: 0.7;
}

.archive-section .bracket-link {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  font-size: 0.85rem;
  text-decoration: none;
}

/* 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;
}

.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;
}
.privacy-policy {
  color: white;
  font-size: 12px;
  margin-top: 3rem;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1.5px;
  
}
.privacy-policy:hover {
  text-decoration: none;
}
.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: 1000;
}

.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);
}

.buy-button {
  background: none;
  border: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  font-family: inherit;
  padding: 6px 14px;
  font-size: 0.9rem;
  border-radius: 1000px;
  cursor: pointer;
  transition: all 0.2s ease;

}
.buy-button:hover {
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.own {
  color: #8a8a8a;
  font-size: 0.85rem;
   margin-top: 3rem;
   padding-bottom: 0.8rem;
}
.quote {
	font-style: italic;
	color: #111111;
	font-family: linotype-didot-headline, serif;
}


@media screen and (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;
    transition: height 0.3s ease;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
  }
  .hero-content h2 {
    font-size: 1.2rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .info-section {
    flex-direction: column;
    padding: 3rem 2rem 3rem 2rem;
    gap: 3rem;
  }
  .info-column {
    max-width: 100%;
    max-height: fit-content;
  }
  .main-art {
    max-width: 100%;
  }
  .magnifier {
    width: 200px;
    height: 120px;
  }
  .footer-links {
    flex-direction: row;
    gap: 3rem;
  }

  .main-header {
    padding: 0.5rem;
    border-radius: 999px;
  }

  .featured-collection {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #2e2e2e;
  }
  .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;
  }
  .art-section {
    padding: 3rem 2rem;
  }
  .art-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .art-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0rem;
    text-align: center;
  }
  .magnifier {
    display: none;
  }
  .mobile-details {
    font-size: 0.85rem;
    gap: 0.3rem;
  }
  .bracket-link {
    margin-left: 0rem !important;
  }
  .archive-section {
    height: 30vh;
  }
  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;
  }
  .menu-icon {
    margin-left: 1rem;
  }
}
