/* Palette:
Off-White: #F5F5F5
Cool Gray: #B0BEC5
Vibey Green: #6FBF73
Soft Teal: #80CBC4
Dusty Pink: #CF93A6
*/

/* Reset some default styling */
body, h1, h2, p, ul, img {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #F5F5F5;  /* Off-White Background */
  color: #333;  /* General dark text color */
}

/* Basic Layout Styling */
header {
  background-color: #6FBF73; /* Vibey Green background */
  color: #F5F5F5;            /* Off-White text */
  padding: 20px;
  text-align: center;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 15px;
}

nav ul li a {
  color: #F5F5F5;  /* Off-White text for links */
  text-decoration: none;
}

nav ul li a:hover {
  color: #80CBC4; /* Soft Teal on Hover */
}

main {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Profile Page Specific Styles */
.profile-container {
  background-color: #E0E0E0; /* Light Gray Background */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden; /* Clear floats */
}

.profile-image {
  float: left;
  width: 30%;
  margin-right: 20px;
}

.profile-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.profile-details {
  float: left;
  width: 65%;
}

.profile-details h2 {
  margin-bottom: 10px;
  color: #333; /* Dark Text */
}

.profile-details p {
  margin-bottom: 15px;
  color: #B0BEC5; /* Cool Gray Text */
}

.profile-info {
  list-style-type: none; /* Remove default bullet points */
  padding: 0; /* Remove default padding */
  margin: 20px 0; /* Add space around the list */
}

.profile-info li {
  margin-bottom: 10px; /* Add space between list items */
  color: #333; /* Dark text color */
  font-weight: bold; /* Make the list items stand out */
  padding-left: 0; /* Ensure no extra padding is added on the left */
}



button {
  padding: 10px 20px;
  background-color: #CF93A6; /* Dusty Pink Button */
  color: #fff;  /* White text on button */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px; /* Add margin above the button */
  margin-bottom: 20px; /* Add margin below the button to create space */
}

button:hover {
  background-color: #80CBC4; /* Soft Teal on Hover */
}

/* Footer Styling */
footer {
  background-color: #6FBF73; /* Vibey Green background */
  color: #F5F5F5; /* Off-White text */
  text-align: center;
  padding: 20px;
  position: relative;
  width: 100%;
  bottom: 0;
  margin-top: 20px;
}
