* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  /* background-image: linear-gradient(to top, #e6b980 0%, #eacda3 100%); */
  /* background: linear-gradient(135deg, #e77219, #f24d12); */
  background-image: linear-gradient(to right, #ff8177 0%, #ff867a 0%, #ff8c7f 21%, #f99185 52%, #cf556c 78%, #b12a5b 100%);
  overflow-x: hidden;
  overflow-y: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* background: rgba(254, 244, 244, 0.1); */
  /* backdrop-filter: blur(10px); */
  /* z-index: 1000; */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 650;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(215, 16, 16, 0.2);
  padding: 8px;
}

.nav-links {
  display: flex;
  gap: 70px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  /* transform: translateY(-2px); */
  transform: translateY(-3px);
  /* transform: translateY(-3px); */
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.nav-links-item:hover {
  transform: translateX(-10px);
  text-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.nav-links a:hover::after {
  width: 100%;
}

/* .linktree-btn {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        } */

/* .linktree-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        } */

/* .linktree1 {
    width: 600px;
top: 10px;
right: 10px;
    height: auto;
    display: flex;
    justify-content: flex-start;
    position: relative;
}
           */

.linktree1 {
  position: relative;
  top: -5px;
  right: 10px;
  width: 120px;
  size: 2px;
}

.linktree1 img {
  width: 100%;
  height: auto;
  display: block;
}

.linktree1:hover {
    transform: scale(1.1);
}
/* transform: translateX(10px); */
/* opacity: 0.8; */
/* animation: slideInRight 1s ease-in; */

/* Main Content */
.main-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 50px 50px;
  position: relative;
}

/* Background Shapes */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.bg-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.bg-shape:nth-child(2) {
  width: 500px;
  height: 500px;
  top: 20%;
  right: -15%;
  animation-delay: -2s;
}

.bg-shape:nth-child(3) {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 20%;
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Content Layout */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-text h1 {
  font-size: 8rem;
  font-weight: 350;
  line-height: 0.9;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 1000px;
}

.social-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a:hover {
  transform: translateY(-3px);
  /* text-shadow: 0 5px 15px rgba(255, 255, 255, 0.3); */
}

/* Navigation Menu */
.nav-menu {
  text-align: right;
  animation: slideInRight 1s ease-out;
}

.nav-menu-item {
  font-size: 3rem;
  font-weight: 300;
  margin: 20px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.nav-menu-item:hover {
  transform: translateX(-10px);
  /* text-shadow: 0 5px 20px rgba(255, 255, 255, 0.3); */
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); */
}

.nav-menu-item::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.nav-menu-item:hover::before {
  width: 0px;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .nav-menu {
    text-align: center;
  }

  .nav-menu-item {
    font-size: 2.5rem;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    font: semi-bold;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-content {
    padding: 150px 20px 50px;
  }

  .hero-text h1 {
    font-size: 4.5rem;
  }

  .nav-menu-item {
    font-size: 2rem;
  }

  .social-links {
    flex-direction: column;
    gap: 15px;
  }
}

/* Particle Effect */
.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float 8s ease-in-out infinite;
}

.particle:nth-child(4) {
  width: 4px;
  height: 4px;
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(5) {
  width: 6px;
  height: 6px;
  top: 70%;
  right: 30%;
  animation-delay: -3s;
}

.particle:nth-child(6) {
  width: 3px;
  height: 3px;
  bottom: 40%;
  left: 60%;
  animation-delay: -6s;
}

@keyframes particle-float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-30px) translateX(20px);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) translateX(-20px);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-25px) translateX(15px);
    opacity: 0.8;
  }
}



