*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
  background-image: url("images/Background\ Website_long_version.png");
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin-top: 40px;
}


/* MAIN LAYOUT */

.project-container{
    display:flex;
    max-width:1400px;
    margin:auto;
    min-height:100vh;
}


/* LEFT SIDE */

.project-media{
    flex:3;
    padding:30px;
}

.media-viewer{
    width:100%;
    background: rgba(255, 255, 255, 0.2); 
     backdrop-filter: blur(10px);        
    -webkit-backdrop-filter: blur(10px); 
    border-radius: 20px;     
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
    padding: 1rem;
}

.media-viewer img{
    width:100%;
    display:block;
    padding: 5px;
}

.media-viewer video{
    width:100%;
    display:block;
    padding: 5px;
}

.media-thumbnails{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.media-thumbnails img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:5px;
    cursor:pointer;
    opacity:0.7;
    transition:0.2s;
}

.media-thumbnails img:hover{
    opacity:1;
}


/* RIGHT SIDE */

.project-info{
    flex:1;
    padding:40px 30px;
    background: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(10px);        
    -webkit-backdrop-filter: blur(10px); 
    border-radius: 20px;     
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
    margin-top: 30px;

        position: sticky;
    top: 0;
    height: 100vh;
}

.project-title{
    font-size:28px;
    margin-bottom:20px;
    font-family: Quanta Grotesk Pro;
    color: #E9E9E9;
    letter-spacing: 1px;
}

.project-description{
    line-height:1.6;
    color:#E9E9E9;
    margin-bottom:25px;
    font-family: Cabinet Grotesk;
    letter-spacing: 1px;
}


/* TAGS */

.project-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    font-family: Cabinet Grotesk;
    letter-spacing: 1px;
    
}

.tag{
    padding:6px 12px;
    font-size:13px;
        background: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(10px);        
    -webkit-backdrop-filter: blur(10px); 
    border-radius: 20px;     
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.social-icons {
  position: fixed;
  top: 50%;                 /* center vertically */
  left: 20px;               /* distance from left edge */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;   /* stack vertically */
  gap: 20px;                /* space between icons */
  z-index: 1000;
}

.social-icons a img {
  width: 2rem;
  height: auto;
  transition: transform 0.2s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

.site-logo {
  position: absolute;
  top: 30px;
  left: 20px;
  width: 50px;   /* adjust size */
  height: auto;

  z-index: 1000; /* keeps it above other content */
}

/* RESPONSIVE */

@media (max-width:900px){

.project-container{
    flex-direction:column;
}

.project-info{
    border-left:none;
    border-top:1px solid #333;
}

.media-thumbnails{
    justify-content:center;
}

}

