* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #fff6fa 0%, #ffeef5 100%);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}
/* HEADER & NAV */
header {
  background: linear-gradient(135deg, #e75480, #ffb6c1);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(255, 105, 180, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-top: 20px;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
nav a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-nav {
  background: white;
  color: #ff69b4;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.4);
}

.btn-nav:hover {
  background: #ffe6f0;
  color: #e75480;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
}
/* HERO (Simplified) */
.hero {
  background: linear-gradient(135deg, #f4abc1, #ffb6c1);
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.hero-content {
  max-width: 700px;
  padding: 2rem;
}
.hero h2 {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
.btn-hero {
  background: white;
  color: #ff69b4;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  display: inline-block;
  text-decoration: none;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
  background: #f8f8f8;
}
/* SECTIONS */
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.info,
.project {
  background: white;
  margin: 2rem auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.info:hover,
.project:hover {
  transform: translateY(-5px);
}
section h2 {
  font-size: 2.5rem;
  color: #ff69b4;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}
.info p {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}
.info img {
  width: 150px;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
  transition: transform 0.3s ease;
}
.info img:hover {
  transform: scale(1.02);
}
.project ul {
  text-align: left;
  max-width: 700px;
  margin: 2rem auto;
  list-style: none;
  padding: 0;
}
.project li {
  background: #ffeef5;
  margin: 1rem 0;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #ff69b4;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.project li:hover {
  background: #ffd6e8;
  transform: translateX(10px);
}
.project li i {
  color: #ff69b4;
  margin-right: 0.5rem;
}
.project p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}
/* CTA */
.cta {
  background: linear-gradient(135deg, #ffd6e8, #fff0f6);
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.1);
}
.cta h2 {
  color: #ff69b4;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #e75480, #ffb6c1);
  color: white;
  font-weight: 500;
}
/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .hero h2 {
    font-size: 2rem;
  }
  section {
    padding: 3rem 1rem;
  }
  .project ul {
    text-align: center;
  }
}

#kontakti {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
  color: #333;
  font-family: "Poppins", sans-serif;
}

#kontakti h2 {
  color: #ff4da6; /* pink e bukur */
  font-size: 2rem;
  margin-bottom: 15px;
}

#kontakti a {
  color: #ff4da6;
  text-decoration: none;
  font-weight: 600;
}

#kontakti a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 20px;
}

.social-icon {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.8rem;
  color: #ff4da6;
  transition: all 0.3s ease;
}
