@font-face {
  font-family: "Signature";
  src: url("assets/fonts/Historia_Sky.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "ITC";
  src: url("assets/fonts/AppleGaramond-LightItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "tusker";
  src: url("assets/fonts/TuskerGrotesk-5700Bold.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.vinyl,
.cursor,
.folder,
.airdrop,
.toolbar {
  z-index: 10;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #fbf7f2;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Inter', sans-serif;
  }
  
  .canvas {
    position: relative;
    width: 100%;
    min-height: 100vh;
  }
  
  /* LEFT */
  .left-collage {
    position: absolute;
    left: -120px;
    top: -40px;
    width: 520px;
  }
  
  /* RIGHT */
.vinyl-wrapper {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 290px;
  transition: transform 0.25s ease;
  z-index: 999;

}

.vinyl-wrapper:hover {
  transform: scale(1.3);
}

.vinyl {
  width: 100%;
  animation: spin 3s linear infinite;
  pointer-events: none; 

}

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

  
  .airdrop {
    position: absolute;
    right: 140px;
    bottom: 160px;
    width: 200px;
  }
  
  .toolbar {
    position: absolute;
    right: 40px;
    bottom: 80px;
    width: 56px;
  }
  
  .cursor {
    position: absolute;
    right: 260px;
    top: 100px;
    width: 40px;
  }
  
  /* CENTER TEXT */
  .center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    text-align: center;
    max-width: 520px;
  }
  
  .name {
    font-family: 'Pacifico', cursive;
    font-size: 64px;
    font-weight: 400;
    color: #3a3a3a;
    font-family: "Signature", cursive;

  }
  
  .role {
    margin-top: 16px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #555;
  }
  
  .role span {
    font-style: italic;
  }
  
  .description {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b6b6b;
  }
  
  /* ICONS */
  .icons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
  }
  
  .icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .folder {
    position: absolute;
    right: 100px;
    top: 200px;
    width: 250px;
    z-index: 10;
    transform: rotate(-10deg);

  }
  .airdrop {
    position: absolute;
    right: 100px;
    top: 400px;
    width: 230px;
    z-index: 0;
    transform: rotate(12deg);
  }
  
  
  .toolbar {
    position: absolute;
    right: -90px;
    top: 300px;
    width: 320px;
    z-index: 0;
  }
  
  .lamp {
    position: absolute;
    left: -40px;
    top: 20px;
    width: 280px;
    height: 260px;
    transform: rotate(-10deg);
    z-index: 0;
    cursor: pointer;
  }
  
  .lamp img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    transition: opacity 0.25s ease;
  }
  
  .lamp-on {
    opacity: 0;
  }
  
  .lamp:hover .lamp-off {
    opacity: 0;
  }
  
  .lamp:hover .lamp-on {
    opacity: 1;
  }
  
  
  .notebook {
    position: absolute;
    left: -170px;
    top: 210px;
    width: 720px;
    transform: rotate(-20deg);
    z-index: 1;
  }
  

  .dreams-paper {
    position: absolute;
    left: 160px;
    top: 180px;
    width: 110px;
    transform: rotate(-20deg);
    z-index: 6;
  }

  .pen {
    position: absolute;
    left: 240px;
    top: 210px;
    width: 220px;
    transform: rotate(-12deg);
    z-index: 6;
  }
  

  .clip-paper {
    position: absolute;
    left: 200px;
    top: 350px;
    width: 90px;
    transform: rotate(-6deg);
    z-index: 6;
  }
  
  .lighter {
    position: absolute;
    left: 260px;
    top: 410px;
    width: 60px;
    transform: rotate(6deg);
    z-index: 6;
  }
  
  .camera-roll {
    position: absolute;
    left: 80px;
    top: 590px;
    width: 160px;
    transform: rotate(-10deg);
    z-index: 6;
  }
  
  .coffee-ring {
    position: absolute;
    left: -40px;
    top: 330px;
    width: 160px;
    opacity: 0.7;
    z-index: 2;
  }
  
  .cream-blue {
    position: absolute;
    left: 200px;
    top: 610px;
    width: 120px;
    transform: rotate(-8deg);
    z-index: 6;
  }
  

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




  
  .about-section {
    position: relative;
    background: #fbf7f2;
    padding: 120px 100px 160px;
  
  }

  .about-section {
    margin-bottom: -40px;
  }
  

  .lego-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }

  .about-content {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;

  }

  .about-photo img {
    width: 500px;
    display: block;
    margin-top: 100px; 
    margin-bottom: 120px; 


  }

  .about-text {
    max-width: 600px;
    margin-bottom: 0px; 
    margin-top: 100px; 

  }
  
  .about-heading {
    font-family: 'Signature', cursive;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 1px;
  }
  
  .about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #6d6d6d;
  }

  .mini-lego {
    position: absolute;
    right: 20px;
    bottom: 0px;
    width: 72px;
    transform: translateY(-70px);
  }
  
  .overlay-1 {
    position: absolute;
    width: 160px;
    height: auto;
    z-index: 5;
    pointer-events: none;
  
    left: 280px;
    top: 170px;
  }
  
  .overlay-2 {
    position: absolute;
    width: 150px;
    height: auto;
    z-index: 6;
    pointer-events: none;
  
    left: 530px;
    top: 480px;

    transform: rotate(10deg);

  }
  


  
  /* files */
  
  .files-section {
    padding: 60px 100px 160px;
    background: #fbf7f2;
    text-align: center;
  }
  
  .files-heading {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    color: #555;
    font-family: 'Signature';
  }
  
  .files-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 120px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .file {
    display: inline-block;
    transition: transform 0.25s ease;
    cursor: pointer;
  }
  
  .file img {
    width: 160px;
    height: auto;
    display: block;
  }

  .file:hover {
    transform: scale(1.12);
  }
  
  .file6{
    width:150px; 
  }

  .file {
    text-decoration: none;
    color: black;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .file:link,
.file:visited,
.file:hover,
.file:active {
  text-decoration: none;
  color: inherit;
}

.file-caption {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555;
}


.sep1 {
  width: 100%;
  height: 195px;
  background-image: url("assets/bg.png");
  padding: 0 0 0 0;
}









.contact-section {
  height: 70vh;
  background: #a9bccc;

  display: flex;
  align-items: center;
  justify-content: center;

  transform-origin: center center;
  will-change: transform;
}

.contact-inner {
  position: relative;
  width: 100%;
  text-align: center;
}

.contact-title {
  font-family: 'tusker';
  font-weight: 800;
  font-size: clamp(120px, 20vw, 300px);
  letter-spacing: -0.0em;
  color: #fbf7f2;;
  margin: 0;
}

.contact-info {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  position: relative;
  z-index: 5;
}

.contact-info a {
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fbf7f2d3;;
  text-decoration: none;
  pointer-events: auto;

}

.contact-phone {
  position: absolute;
  right: 10px;
  top: 62%;
  transform: translateY(-50%);
  width: 400px;
  z-index: 1;
  pointer-events: none; 
}
.contact-section,
.contact-inner {
  pointer-events: auto;
}

