/* Transparant Pages  */   
    
   
.winter-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('img/bg/wedding1.jpg') no-repeat center center/cover;
}
.winter-scene1 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('img/bg/banner.png') no-repeat center center/cover;
}

.ice-card {
  width: 750px;
  padding: 40px;
  text-align: center;
  color: #fff;
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
 
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  transition: all 0.5s ease-in-out; 
  position: relative;
  z-index: 10;
}
.ice-card-nav {
  width: 750px;
  padding: 0px;
  text-align: center;
  color: #fff;
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
 
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  transition: all 0.5s ease-in-out; 
  position: relative;
  z-index: 10;
}

.ice-card:hover {
  backdrop-filter: blur(0px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  transform: translateY(-5px);
}
.ice-card-nav:hover {
  backdrop-filter: blur(0px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  transform: translateY(-5px);
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  background: linear-gradient(to bottom, #fff, #e0f7fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.8;
  margin-top: 5px;
}

.separator {
  height: 1px;
  width: 50px;
  background: rgba(255,255,255,0.5);
  margin: 20px auto;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}

.btn-ice {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-ice:hover {
  background: #fff;
  color: #003366;
  box-shadow: 0 0 15px rgba(255,255,255,0.8);

  }
  
.snow-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.snow-container i {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
  top: -20px;
 
  animation-name: fallingSnow;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  animation-duration: 5s;
}

.snow-container i:nth-child(even) { width: 4px; height: 4px; animation-duration: 6s; }
.snow-container i:nth-child(odd) { width: 6px; height: 6px; animation-duration: 9s; }
.snow-container i:nth-child(3n) { width: 3px; height: 3px; animation-duration: 7s; opacity: 0.5; }

.snow-container i:nth-child(1) { left: 5%; animation-delay: 0s; }
.snow-container i:nth-child(2) { left: 15%; animation-delay: 3s; }
.snow-container i:nth-child(3) { left: 25%; animation-delay: 1s; }
.snow-container i:nth-child(4) { left: 35%; animation-delay: 4s; }
.snow-container i:nth-child(5) { left: 45%; animation-delay: 2s; }
.snow-container i:nth-child(6) { left: 55%; animation-delay: 0.5s; }
.snow-container i:nth-child(7) { left: 65%; animation-delay: 3.5s; }
.snow-container i:nth-child(8) { left: 75%; animation-delay: 1.5s; }
.snow-container i:nth-child(9) { left: 85%; animation-delay: 2.5s; }
.snow-container i:nth-child(10) { left: 95%; animation-delay: 0.5s; }

@keyframes fallingSnow {
  0% {
    transform: translateY(0); 
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(110vh);
    opacity: 0;
  }
} 