@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

body {
    margin: 0;
    color: #33343C;
    background: #F6EFEF;
    padding: 25px;
}

html, body {
  overflow-x: hidden;
}

 ::selection {
    color: #ECEBEF;
    background: #E76F51;
  }


 a {
    text-decoration: none;
    cursor: pointer;
    color: #33343C;
 }



  .header {
    display: flex;  
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
  }

  .header-chip {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    transition: transform 0.6s ease, background-color 0.6s ease, color 0.6s ease;
  }

  .header-chip:hover {
    transform: scale(1.03);
    background-color: #E76F51;
    color: #ffffff;
}


  .logo {
    width: 64px;
    height: 64px;
    border-radius: 100px;
    position: relative;
    box-shadow: 0px 0px 40px 0px #E76F51;
    animation: logo-pulse 6s infinite ease-in-out;
  }



  #granim-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    border-radius: 100px;
}


@keyframes logo-pulse {
  0% {
    box-shadow: 0px 0px 15px 0px #E76F51;
  }
  50% {
    box-shadow: 0px 0px 40px 8px #E76F51;
  }
  100% {
    box-shadow: 0px 0px 15px 0px #E76F51;
  }
}


.text {
  position: absolute;
  left: 50%;
  top: 180px;
  transform: translateX(-50%);
  z-index: 1;
  width: 80vw;
  text-align: center;
  font-size: clamp(2rem, 10vw, 8rem);
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: #33343C;
  opacity: 1;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.orange-gradient-bg {
  position: absolute;
  left: 50%;
  top: -80%;
  transform: translateX(-50%);
  width: 120vw;
  height: 60vw;
  z-index: -3;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 30% at 50% 50%, #E76F51 0%, #F6EFEF 100%);
  opacity: 0.8;
}



.depth-image {
    position: fixed;
    left: 50%;
    bottom: -10%;
    transform: translateX(-50%);
    width: 36vw;         
    max-width: 1200px;   
    z-index: 5;
    pointer-events: none;
    user-select: none;
    opacity: 1;          
  }


  .bottom-ribbon {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* For Safari */
    z-index: 10; /* Above your depth image, adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; /* So you can interact with content inside */
  }



  @media (max-width: 768px) {
    .depth-image {
        left: 50%;
        height: 60vh;     
        width: auto;
        z-index: 5;
        pointer-events: none;
        user-select: none;
        opacity: 1;          
      }
    

  }