@import url('https://fonts.googleapis.com/css2?family=Alice&family=Bungee+Spice&family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alice&family=Bungee+Spice&family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Alice', serif;
}
body,html{
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}
#main{
    height: 100%;
    width: 100%;
    background-color:blanchedalmond;
}
#nav{
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;

}
.nav-left , .nav-right{
    display: flex;
    gap: 30px;
}
.nav-left a, .nav-right a{
    color: #0f0e0e;
    text-decoration: none;
    font-size: 25px;
    font-weight: 600;
    transition: 0.3s;
}
.nav-left a:hover, .nav-right a:hover{
    color: chocolate;
}
#logo{
    position: absolute;
    left: 50%;
    font-size: 50px;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 600;
    transform: translateX(-50%);
    color: #0c0c0c;
    letter-spacing: 2px;
    }

#main h1{
    color: #0c0c0c;
    font-size: 250px;
    font-weight: 300;
    padding-left: 300px;
    margin-top: 10px;

}
.hamburger {
    position: relative;
    font-size: 22px;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: 0.3s ease;
   
}

.hamburger:hover {
    background-color: #dbcece;
}

.social-icons {
    position: absolute;
    top: 40px;
    right: 0;
    display: flex;
    flex-direction: column;
    background: rgb(212, 212, 17);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.5s ease;
    padding: 10px 15px;
}

.hamburger:hover .social-icons {
    opacity: 1;
    visibility: visible;
}
.social-icons a {
    height: 40px;
    color: #333;
    margin: 8px;
    font-size: 25px;
    text-align: center;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff5c35;
}
.image{
    position: absolute;
    display: flex;
    gap: 60px;
}
.image img{
    border-radius: 55px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    object-fit: cover;
    filter: blur(3px);
    animation: clearImage 4.5s ease forwards;
}
.img1{
    width: 300px;
    height: 500px;
    margin-left: 50px;
    transform: translate(70px,80px);

}
.img2{
    height: 300px;
    width: 300px;
    transform: translate(400px,50px);
}
.img3{
    width: 250px;
    height: 300px;
    transform: translate(300px,350px);
}
.hero-text {
  text-align: center;
  margin-top: 230px; 
  position: relative;
  z-index: 1;
  font-size: 20px;
}

.hero-text h2 {
  font-size: 110px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 400;
  color: #000;
  margin-left: -10%;
  transform: translateY(50px);
  animation:fadeSlide 5s ease-out forwards;
}

.hero-text span {
  color: #000;
  display: inline-block;
  position: relative;
  margin-right: -40%;
}

.hero-text span::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 120%;
  height: 5px;
  background-color: #00ffb3;
  z-index: -1;
}

.find-more {
  display: inline-block;
  margin-top: 25px;
  text-decoration: none;
  font-size: 28px;
  font-weight: 500;
  color: #111;
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.find-more:hover {
  background-color: #00ffb3;
  border-color: #00ffb3;
  color: white;
}
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes clearImage {
  0% {
    filter: blur(5px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 0.8;
  }
}