@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hahmlet:wght@200;300;400;500;600;700&family=Yeseva+One&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* ===== HEADER ===== */

header{
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 200px;
  transition: 0.5s ease;
}

header .brand{
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

header .navigation{
  position: relative;
}

header .navigation .navigation-items a{
  position: relative;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:before{
  content: '';
  position: absolute;
  background: #fff;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before{
  width: 100%;
}

section{
  padding: 100px 200px;
}

.home{
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #000000;
  overflow: hidden; /* Ensure no overflow from the absolutely positioned GIF */
}

.home:before{
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.63);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* ===== MAIN CATALOGUE ===== */

.catalogue {
  padding: 140px 40px 80px 40px;
  max-width: 1400px;
  margin: auto;
}

.year {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ccc;
}

/* ===== ARTWORK BLOCK ===== */

.artwork {
  margin-bottom: 120px;
}

.artwork img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.4s ease;
}

.artwork img:hover {
  opacity: 0.85;
}

.art-info {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.art-info h2 {
  font-weight: 400;
  font-size: 1.2rem;
}

.art-info a {
  text-decoration: none;
  color: #aaa;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.art-info a:hover {
  color: #fff;
}

/* ===== MEDIA ICONS (Right Side Fixed Like Homepage) ===== */

.media-icons {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 999;
}

.media-icons a {
  color: #fff;
  font-size: 1.6em;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.media-icons a:hover {
  transform: scale(1.3);
}





@media (max-width: 1040px){
  header{
    padding: 12px 20px;
  }

  section{
    padding: 100px 20px;
  }

  .home .media-icons{
    right: 15px;
  }

  header .navigation{
    display: none;
  }

  header .navigation.active{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  header .navigation .navigation-items a{
    color: #222;
    font-size: 1.2em;
    margin: 20px;
  }

  header .navigation .navigation-items a:before{
    background: #222;
    height: 5px;
  }

  header .navigation.active .navigation-items{
    background: #ffffff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }

  .menu-btn{
    background: url(menu.png)no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .menu-btn.active{
    z-index: 999;
    background: url(close.png)no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }


  @media (max-width: 560px){
    .home .content h1{
      font-size: 3em;
      line-height: 60px;
    }
  }



/* ===== FOOTER TEXT ===== */

.site-footer {
  text-align: center;
  padding: 80px 20px 40px 20px;
  font-size: 0.85rem;
  color: #777;
  letter-spacing: 1px;
}








