* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

*, *::before, *::after { cursor: none !important; }

.cursor { pointer-events: none; }
.cursor__ball {
  position: fixed;
  top: 0; left: 0;
  z-index: 10000;
}
.cursor__ball--big    { mix-blend-mode: difference; }
.cursor__ball--big    circle { fill: #BF2929; }
.cursor__ball--small  { mix-blend-mode: difference; }
.cursor__ball--small  circle { fill: #f7f8fa; }

body {
  color: #FFFFFF;
  background-color: #e9f1ec;
  cursor: none;
}

section {
  background-color: #1A1A1A;
  position: relative;
  z-index: 5;
}

html {
  font-size: 60%;
  overflow-x: hidden;
}

@font-face {
  font-family: "im fell";
  src:
    url(fonts/IM_Fell_DW_Pica/IM_FELL_DW_Pica.ttf);
    font-style: normal;
    font-weight: normal;
}
.header {
  display: flex;
  position: fixed;
  height: 120px;
  width: 100%;
  top: 0;
  left: 0;
  padding: 3.5rem 10%;
  /*background-color: #070707d5;*/
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-family: League Spartan;
  font-weight: Regular;
  background-color: #1a1a1aab;
}

#menu-icon {
  font-size: 3rem;
  color: tomato;
  display: none;
}
.logo{
  font-size: 3rem;
  color: rgb(255, 255, 255);
  font-family: libre baskerville;
  transition: 0.3s ease-in-out;
}
.logo:hover{
  transform: scale(1.1);
}
.navbar {
  list-style: none;
  display: flex;
  padding: 0;
  gap: 6rem;
  justify-content: center;
}
nav {
height: 100%;
display: flex;
}
.navbar > li > a {
  display: flex;
  align-items: center;     /* vertical centering */
  justify-content: center; /* horizontal centering */
  color: white;
  font-size: 1.8rem;
  margin-left: 0;
  height: 100%;
  text-align: center;
}
.dropdown-menu li a {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: white;
  font-size: 1.8rem;
  margin-left: 0;
  height: 100%;
  display: block;
  width: 100%;
  text-align: right;
  font-size: 1.5rem;
}
.dropdown-menu li a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;              /* start from right */
  width: 0%;             /* hidden initially width 0 (dosent exist visualy) */
  height: 100%;
  background: #a82a2ad3;
  z-index: -1;

  transition: width 0.3s ease;
}
.dropdown-menu li a:hover::before {
  width: 100%;           /* expands left (pushes out from width 0)*/

}
.navbar li{
  position: relative;
  height: 100%;

}
.dropdown-menu li {
  padding: 0.5rem 1rem;
}
.dropdown-menu { /*verticaly center nav and dropdown */
  
  position: absolute;
  top: 100%;          /* directly under the li */
  right: -1rem;
  background: #2b2b2bd3;
  list-style: none;
  padding: 0;
  min-width: 220px;

  opacity: 0;
  left: auto;
  transform: translateY(-10px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  pointer-events: none;
  


  transition: opacity 0.3s ease, transform 0.3s ease;
}
.navbar li:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu li a{
  width: 100%;
  text-align: right;
  font-size: 1.5rem;
}
img{
    display: block;
    width: 100%;
    height: 100%;
}

.grid-container_1 {
  position: relative;
  padding: 4rem 6%;
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 40px;
}

.svg1 { grid-column: 1; }
.svg2 { grid-column: 2; }
.svg3 { grid-column: 1 / span 2; }

.grid-container_1 svg {
  width: 100%;
  height: auto;
  display: block;
}
.grid-container_2 {
  position: relative;
  padding: 4rem 6%;
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 40px;
}
.grid-container_2 svg {
  width: 100%;
  height: auto;
  display: block;
}
.home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 8rem;
  background-image: url(svgs/baiyu_cover.svg);
  background-size: cover; 
}
.home::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;        
  background: linear-gradient(to top, #132f20 0%, transparent 100%);
  pointer-events: none;

}
.home-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding-top: 37%;
  z-index: 0;
}
h1 {
  font-size: 6rem;
  font-family: League Spartan;
  font-weight: 200;
  letter-spacing: .3rem;
}
h2{
  font-size: 2rem;
  font-family: libre baskerville;
  font-style: italic;
  font-weight: 100;
  margin-top: 4rem;
  margin-bottom: 4rem;
  letter-spacing: .3rem;
}
.wip{
    font-size: 2rem;
    font-family: League Spartan;
    font-weight: 100;
}
.hello {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-family: im fell, serif;
    font-weight: normal;
}

.artist_statement {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  z-index: 5;
}

.statement_text {
text-align: center;
}
.full_img{
  padding-top: 6vh;
  display: flex;
  position: relative;
  gap: 15rem;
  /*background-attachment: fixed;*/
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.hover{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1acb;
    font-size: 2rem;

    color: #ffffff;
    text-align: left;
    padding: 3.2rem 27%;

    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-family: League Spartan;

    line-height: 1.6;
    letter-spacing: 0.05rem;
    z-index: 10;
    opacity: 0;
    /*
    UGLYYY
    max-height: 20vh; 
    overflow-y: auto;*/
  

}
.hover_container{
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.hover_container img {
    width: 100%;
    height: auto;
    display: block;
}

.hover_container:hover .hover{
    transform: translateY(0);
    opacity: 1;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 200px;
  background: rgba(19,19,19,1);
  bottom: 0;
  left: 0;
  padding: 5rem 10%;
  margin-top: auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-self: center;
  /* margin-top: 2rem; */
  gap: 2rem;
}

.text {
  color: rgb(255, 255, 255);
  font-family: League Spartan;
  font-weight: Regular;
  font-size: 5rem;
  opacity: 1;
}

.icon_links {
  display: flex;
  justify-content: space-between;
  width: 155px;
  height: 27px;
}
.contact {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.contact a{  
font-size: 1.8rem;
color: white;
margin-left: 4rem;
font-weight: 500;
font-family: League Spartan;
}

@media (min-width: 1800px) {

  /* HEADER TEXT */
  .logo {
    font-size: 3.6rem;  
  }

  .navbar > li > a {
    font-size: 2.2rem;  
  }

  .dropdown-menu li a {
    font-size: 1.9rem;   
  }

  /* FOOTER TEXT */
  .footer .text {
    font-size: 6rem;     
  }

  .contact a {
    font-size: 2.2rem;   
  }
  .icon_links {
    width: 182px;   
    height: 40px;   
    gap: 2rem;
  }

  .icon_links img {
    width: 35px;    
    height: auto;
  }
}

@media (min-width: 1800px) {
  .hover {
    padding: 3rem 35%;   /* increases side padding → shorter text lines */
    
  }
}

@media screen and (max-width: 768px) {
  .grid-container_1 {
    grid-template-columns: 1fr; /* stack top two images */
  }
  .svg3 {
    grid-column: 1; 
  }
}