body {
  font-family: 'Trebuchet MS', Arial;
  margin: 0;
  background-color: #f5f5f5;
}

/* NAVBAR */
#home {
  background-color: #046958;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile_name {
  color: #e4cbe0;
  font-size: 32px;
}

.contact_info {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.contact_info img {
  width: 18px;
  margin-right: 6px;
}

.contact_info a {
  color: white;
  text-decoration: none;
}

.contact_info a:hover {
  color: red;
}

.topdiv {
  display: flex;
}

.topmenu {
  color: lightgray;
  margin: 10px;
  font-size: 18px;
  text-decoration: none;
}

.topmenu:hover {
  color: white;
  font-weight: bold;
}

/* HERO SECTION */
.hero-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background-color: #eeeeee;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.profile_image_large {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
}

.intro-text h1 {
  font-size: 36px;
}

.intro-text p {
  max-width: 600px;
  line-height: 1.6;
}

/* TITLES */
h2 {
  font-size: 40px;
  color: #7600bc;
  margin: 40px;
}

/* SKILLS */
.all_skills {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 40px;
}

.skill {
  width: 180px;
  background: white;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.skill:hover {
  transform: translateY(-8px);
}

.skill img {
  height: 40px;
}

/* PROJECTS */
#projects {
  padding: 20px 40px;
}

.projects-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.project-card {
  width: 300px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

/* RECOMMENDATIONS */
#recommendations {
  padding: 20px 40px;
}

.all_recommendations {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.recommendation {
  width: 300px;
  background: #90ceea;
  padding: 15px;
  border-radius: 10px;
  font-style: italic;
}

/* FORM */
.recommendation-form {
  margin-top: 40px;
  text-align: center;
}

fieldset {
  width: 50%;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  background: white;
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

input, textarea {
  width: 90%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* BUTTON */
button {
  background: #28a745;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #218838;
}

/* SCROLL BUTTON */
.iconbutton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: purple;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconbutton a {
  color: white;
  text-decoration: none;
}