

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

body {
  font-family: "Italiana", serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Italiana", serif;

}

p, small, li, span, a{
  font-family: "Manrope", sans-serif;
}

.icon {
  position: absolute;
  font-size: 2rem;
  color: #4F4A4A;
  pointer-events: none;
  transform-origin: center center;
  left: 0;
  top: 0;
}

/* Skills Section Styles */
.skill-category {
  opacity: 0;
  transform: translateY(30px);
}

.skill-item {
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 0.5rem;
  border-radius: 2px;
}

.skill-item:hover {
  transform: translateX(6px);
}

.skill-item h4 {
  transition: letter-spacing 0.3s ease;
}

.skill-item:hover h4 {
  letter-spacing: 0.5px;
}

.skill-indicator {
  transition: height 0.5s ease, background-color 0.5s ease, width 0.3s ease;
}

.skill-item:hover .skill-indicator {
  height: 2.5rem;
  width: 2px;
}

.skill-bar {
  transition: height 0.5s ease;
}

.skill-category h3 {
  position: relative;
}

.skill-category:hover .skill-bar {
  height: 4.5rem;
}

.project-line {
  transition: width 0.5s ease;
}

.project-visual {
  transition: transform 0.4s ease;
}



.project-content h3 {
  transition: letter-spacing 0.3s ease;
}

.project-highlight {
  opacity: 0;
  transform: translateY(30px);
}



.service-icon-line {
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, background-color 0.5s ease;
}

.service-item h3 {
  transition: letter-spacing 0.3s ease;
}

/* Testimonials Section Styles */
.testimonial-item.hidden {
  display: none;
}

.testimonial-line {
  transition: width 0.5s ease;
}

.testimonial-item:hover .testimonial-line {
  width: 3rem;
}

.testimonial-item h4 {
  transition: letter-spacing 0.3s ease;
}

.testimonial-item:hover h4 {
  letter-spacing: 0.5px;
}

.testimonial-dots .dot.active {
  background-color: #4F4A4A;
}

/* Contact Section Styles */
.contact-line {
  transition: width 0.5s ease;
}

.contact-form:hover .contact-line,
.contact-info:hover .contact-line {
  width: 5rem;
}

.contact-icon-line {
  transition: width 0.5s ease;
}

.contact-item:hover .contact-icon-line {
  width: 3rem;
}

.contact-item h3 {
  transition: letter-spacing 0.3s ease;
}

.contact-item:hover h3 {
  letter-spacing: 0.5px;
}

input:focus,
textarea:focus {
  border-color: #4F4A4A;
}

/* Footer Styles */
footer a {
  transition: all 0.3s ease;
}

footer a:hover {
  letter-spacing: 0.3px;
}

/* Mobile Menu Styles */
.mobile-menu {
  background-color: #EDEDED;
  overflow-y: auto;
}

.mobile-menu-link {
  opacity: 1 !important;
  display: block !important;
}

.mobile-menu-line {
  transition: width 0.5s ease;
}

.mobile-menu-link:hover .mobile-menu-line {
  width: 3rem;
}

.mobile-menu-link h3 {
  transition: letter-spacing 0.3s ease;
}
