@font-face {
    font-family:'SamsungOne' ;
    src: url(fonts/samsung-sans-4-cufonfonts/Variable\ One\ UI\ Sans.ttf)
    format('truetype');
}




body {
    display: flex;
    background-color: white;
    justify-content: center;
    font-family: 'SamsungOne', sans-serif;
    align-items: flex-start;
}

.phone {
    display: flex;
    justify-content: center;
    font-family: 'SamsungOne', sans-serif;
    align-items: flex-start;
    border: 7px black solid;
    border-radius: 40px;
    width: 350px;
     background: url(./images/WhatsApp\ Image\ 2025-09-29\ at\ 23.53.18_5c10c5cc.jpg) no-repeat center center;
     background-size: cover;
    border-radius: 31px;
    overflow: hidden;
    position: relative;
     height: 97.8vh;
    position: relative;
}

.lockscreen {
    display: flex;
    justify-content: center;
    font-family: 'SamsungOne', sans-serif;
    align-items: flex-start;
    width: 350px;
    height: 97.8vh;
   
    background-size: cover;
    border-radius: 31px;
    overflow: hidden;
    position: relative;

}

.icons{
    
  position: absolute;   
  top: 8px;             
  right: 10px;          
  display: flex;
  gap: 6px;  
  padding-right: 27px;
  padding-top: 0px; 
  transform: scale(0.9);   
  transform-origin: top right; 
}

.clock {
  position: absolute;
    text-align: center;
  color: white;
  font-family: 'SamsungOne', sans-serif; /* or Poppins */
  padding-top: 11.2vh;
  transform: scale(1.2);
  line-height: 0.86;
}

#time {
  font-size: 64px;
  font-weight: 500 ;
}

#date {
  font-size: 18px;
  opacity: 0.65;
  transform: scale(0.77);
}

.lock-icon{
    position: absolute;
    padding: 5vh;
    left: 50%;
  transform: translateX(-50%);
  animation: wiggle 1s infinite;
  animation-delay: 1s;

}


.lock-icon img{
   filter: drop-shadow(0 0 6px rgba(255,255,255,0.5));
}

@keyframes wiggle {
  0%, 100% { transform: translateX(-50%) rotate(0deg); }
  25% { transform: translateX(-50%) rotate(-8deg); }
  50% { transform: translateX(-50%) rotate(8deg); }
  75% { transform: translateX(-50%) rotate(-4deg); }
}



.bottom-icons {
  position: absolute;
  bottom: 30px;             /* raise icons higher from bottom */
  left: 50%;
  transform: translateX(-50%);  /* keep the whole row centered */
  display: flex;
  gap: 220px;     
  align-items: center;
  justify-content: center;
  
}


.bottom-icons img {
  width: 35px;
  height: 35px;
  z-index: 1;
}

.bottom-icons div {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);  
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(7px);             
}

.Swipe {
  position: absolute;
  color: white;
  bottom: 12vh; 
  opacity: 0.8; 
  transform: scale(0.95);
left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeBlink 4s infinite;  /* 👈 animate */
}

@keyframes fadeBlink {
  0% { opacity: 0; transform: translateX(-50%) translateY(5px); }
  50% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(5px); }
}




.homescreen {
  width: 100%;
  height: 100%;
  background: url("./images/homescreen-bg.jpg") no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: none;   
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(px);
  background: rgba(0, 0, 0, 0.2);
}

.time-bar{
   
  position: absolute;   
  top: 8px;             
  left: 10px;          
  gap: 6px;  
  padding-left:5px;
  padding-top: 0px; 
  transform: scale(0.8);   
  transform-origin: top left; 
  color: white;
  font-family: 'SamsungOne', sans-serif; 
  font-weight: 600;
  transform: scale(1.02);
}

.time-bar img{
  position: absolute; 
  transform: scale(0.5);
   

}

.lefticons{
   position: absolute;   
  top: -5px;             
  left: 10px;          
  display: flex;
  gap: 6px;  
  padding-left: 32px;
  padding-top: 0px; 
  transform: scale(0.4);    
}

.gesture-bar {
  position: absolute;
  bottom:-6px;
  left: 50%;
  transform: translateX(-50%);
}

.gesture-bar img {
  width: 550px; /* adjust to match phone size */
  height: auto;
  opacity: 0.6; /* semi-transparent */
  transition: all 0.3s ease-in-out;
}

/* Hover state */
.gesture-bar img:hover {
  opacity: 0.9; 
  transform: scale(1.1);
}

.favourite-bar {
  position: absolute;
  bottom: 40px; /* just above gesture bar */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;               /* wide but with margin */
  height: 90px;             /* height of dock */
  background: rgba(255, 255, 255, 0.15); /* translucent white */
  border-radius: 25px;
  backdrop-filter: blur(15px);  /* frosted-glass effect */
  -webkit-backdrop-filter: blur(15px); /* for Safari */
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); /* depth */
}

.favourite-bar img {
  width: 70px;
  height: 70px;
  transition: transform 0.2s ease, filter 0.2s ease;
  cursor: pointer;
}

.favourite-bar img:hover {
  transform: scale(1.2);      /* zoom */
  filter: brightness(1.2);    /* glow */
}
