html, body {
  height: 100%; 
}


@font-face {
  font-family: "StingerFit";
  src: url("fonts/StingerFitTrial-Heavy.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}


 /* CURSOR */
a:hover, button:hover {
  cursor: url('cur.png'), 16 16,pointer;
}
a:hover,
button:hover,
.folder-box .tab:hover {
  cursor: url('cur.png') 16 16, pointer;
}


body, .folder-container, .folder-box, .folder-box .tab, .profile-box, .gif {
  cursor: url('cur.png') 16 16, auto;  
}


.folder-box .tab:hover,
a:hover {
  cursor: url('cur.png') 16 16, pointer;
}


 /* Body */

body {
  
  cursor: url('cur.png'), auto;
  
  margin: 0;
  padding: 0;
 font-family: "Century Gothic", Futura, sans-serif;

  /* Background */
  background-image: url('cbg3.jpeg'); 
  background-size: cover;       
  background-position: center;  
  background-repeat: no-repeat;
  background-attachment: fixed; 

  /* Flex layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  min-height: 100vh;   
  padding-top: 40px;   
  padding-bottom: 80px; 
}




.name {
 font-family: "StingerFit", sans-serif; 

  font-weight: bold;
  position: absolute;
  top: -35px;    
  right: 15px;    
  font-size: 90px;
  color: #1c4c69;

}





/* MAIN BOX SECTION */

.main-box {
  position: relative; 
  background-color: #eafbff; 
  color: #1c4c69; 
  padding: 30px;
  border-radius: 12px;
  width: 783px;
  height: 422px;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}




/* Intro box */
.intro-box {
  position: absolute;
  bottom: 20px;   
  left: 0;        
  background-color: #D0EFEF;
  color: #3f5460;
  width: 355.64px;
  height: 168.58px;
  padding: 20px;
  border-radius: 10px;
  border-radius: 0px 10px 10px 0px;
}


/* INTRO SECTION*/

.intro-box p {
  font-size: 0.9rem; 
  line-height: 1.4;   
  margin: 0;          
  margin-top: 15px;
}


.intro-image {
  position: absolute;
  bottom: 100%;      
  left: 60%;        
  transform: translateX(-50%);
  width: 450px;
  height: auto;
  object-fit: contain;
  opacity: 0;
  animation: riseFade 1.5s ease-out forwards;
}

@keyframes riseFade {
  from {
    opacity: 0;
    transform: translate(-50%, 20px); /* small rise */
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}



.profile-container {
  position: absolute;
  bottom: -60px; 
  right: -40px;
}

.profile-box {
  background-color: #D0EFEF;
  color: #3f5460;
  width: 411px;
  height: 398px; 
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  
}

.profile-box h2 {
  font-family: "StingerFit", sans-serif;
  color: #1c4c69;
  
  
}


.gif {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;

  width: 150px;   
  height: auto;  
  transform-origin: top right;
}

.gif {
  transform: scale(1.55); 
  transition: transform 0.2s ease;
}


/* ARTWORK SECTION. */

.artwork-container {
  margin-top: 530px;
  margin-left: 405px;
  margin-bottom: 100px; 
  width: 420px;
  height: 350px;
  background-color: transparent; 
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 0;
  
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px;
}

.art-slot {
  position: relative;
  width: 100%;
  height: 100%;
}

.art-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  top: 0;
  left: 0;
  transition: opacity 0.5s ease-in-out;
  border-radius: 8px;
}

.art-image.bottom {
  opacity: 0; 
}

.art-slot:hover .art-image.top {
  opacity: 0; 
}

.art-slot:hover .art-image.bottom {
  opacity: 1; 
}





/* FOLDER SECTION. */


.folder-container {

  position: relative;  
  width: 420px;
  height: 500px;
  margin-top: -515px;   
  margin-left: -30px;  
}


.folder-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: 550px;
  background-color: #f4f8e5; 
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1; 
  transition: all 0.3s ease;
}

/* Tabs */
.folder-box .tab {
  position: absolute;
  left: -40px;          
  width: 40px;          
  height: 120px;        
  text-align: center;
  padding: 5px 0;
  border-radius: 0px 10px 10px 0px;
  font-weight: bold;
  font-family: "StingerFit", sans-serif; 
  cursor: pointer;
  background-color: #eafbff; 
  writing-mode: vertical-rl;   
  transform: rotate(180deg);  
  display: flex;
  justify-content: center;
  align-items: center;
}


.folder-box.inspo .tab { background-color: #AFE2F2; }
.folder-box.design .tab { background-color: #C7EAE4; }
.folder-box.music .tab { background-color: #fff4ea; }


.folder-box.inspo .tab { top: 210px; }
.folder-box.design .tab { bottom: 20px; }
.folder-box.music .tab { top: 20px; }


.folder-box.inspo:hover,
.folder-box.design:hover,
.folder-box.music:hover {
  z-index: 10;
}


.folder-box.inspo { background-color:#AFE2F2; }
.folder-box.design { background-color: #C7EAE4; }
.folder-box.music { background-color: #fff4ea; }



.bottom-spacer {
  height: 200px; 
  width: 100%;
}





.songs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.song {
  text-align: center;
  font-size: 0.85rem;
  color: #333;
  transition: transform 0.3s ease; 
}

.song span {
  font-size: 0.75rem;
  color: #555;
}

/* vinyls spin */
.vinyl-disc {
  width: 80px;   
  height: 80px;  
  border-radius: 50%;
  animation: spin 6s linear infinite;
  display: block;
  margin: 0 auto;
}

/* expand on hover */
.song:hover {
  transform: scale(1.2);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}





/* COLLAGE*/
.inspo-collage {
  position: relative;
  width: 90%;          
  max-width: 380px;    
  margin: 0 auto;      
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;           
  padding: 10px 0;
}


.collage-img {
  width: 65px;          
  height: 65px;
  object-fit: cover;
   cursor: url('cur.png') 16 16, auto;
  border-radius: 5px;
 
  transition: transform 0.3s ease, z-index 0.3s ease;
}

/* Hover effect */
.collage-img:hover {
  transform: scale(1.5);
  z-index: 10;
}

/* Desc */
.inspo-desc {
  margin-top: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: #333;

  padding: 0 20px;     
  max-width: 90%;      
  margin-left: auto;   
  margin-right: auto;  
}









/* Top paragraph */


.design-top {
  font-size: 0.8rem;          
  color: #333;
  margin: 0;                   
  padding: 15px;               
  text-align: left;          
  box-sizing: border-box;      
}

/* Side paragraph */
.design-side {
  width: 55%;    
  font-size: 0.75rem;
  color: #444;
  float: left;
  margin: 0;
  padding: 15px;
  box-sizing: border-box;
  line-height: 1.4;
}


/* Transparent image */
.design-img {
  position: absolute;
  bottom: -20px;        
  right: -185px;       
  width: 400px;         
  opacity: 0;           
  pointer-events: none; 
  transition: opacity 1s ease-in-out;
}


.folder-box.design:hover .design-img {
  opacity: 0.9;
}



.artwork-title {
  display: flex;
  justify-content: center;
  margin-top: 500px;
  right:-570px;
  font-family: "StingerFit", sans-serif;
  color: #1c4c69;
  font-size: 2rem;
  font-weight: bold;
  gap: 5px; 
}





.artwork-title {
  position: absolute;       
  top: 500px;               
  left: 50px;               
  
  display: flex;            
  gap: 5px;                 
  
  font-family: "StingerFit", sans-serif;
  color: #1c4c69;
  font-size: 2rem;          
  font-weight: bold;
}

.artwork-title span {
  display: inline-block;
  animation: float 1s ease-in-out infinite alternate;
}

/* even letters move slightly later */
.artwork-title span:nth-child(even) {
  animation-delay: 0.2s;
}

@keyframes float {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}