/* Apply this to everything below, so that it all has a consistent look */
* { 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* Page tone */
body {
  background: #ffe6eb; /* soft pink background */
  color: #3d3d3d;   /* dark gray text, good for readability */
  line-height: 1.6; /* spacing between lines */
}


/* Link color and hover color */
a {
  color: #d6336c;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  text-decoration: underline;
  color: #ff3366;
}


/* Banner sizing information */
.banner img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-bottom: 4px solid #ffcad4;
}


/* Spacing for container that holds the main page contents */
.container {
  width: 90%;
  max-width: 960px;
  margin: 30px auto;
  padding: 30px;
  background: #fff;
  border-radius: 20px; /* nice rounded corners */
  box-shadow: 0 4px 15px rgba(255, 105, 135, 0.2);
}


/* Navigation menu bar with logo and  */
nav.navbar {
  background-color: #ff5e78;
  padding: 1em 2em;
  box-shadow: 0 2px 5px rgba(255, 105, 135, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .nav-left { /* allows title to be centered with logo */
  display: flex;
  align-items: center;
}
.navbar .logo { /* logo on nav bar */
  height: 120px;
  width: auto;
  margin-right: 1rem;
}
.navbar .site-title { /* for title next to logo */
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.navbar .nav-menu { /* nav menu look */
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.navbar .nav-menu li a { /* links on nav bar */
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  height: 100%;
}
.navbar .nav-menu li a:hover { /* nav bar hover color */
  color: #ffeef2;
}


/* Profile list items */
.profile-list {
  list-style: none;
  margin-top: 1rem;
  padding-left: 1rem;
}
.profile-list li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}


/* Profile card and image adjustments */
.profile-card {
  margin-top: 1rem;
  text-align: center;
}
.profile-card img {
  border-radius: 50%; /* nice rounding effect */
  margin-bottom: 1rem;
  border: 4px solid #ff99ac;
}


/* Message list */
.messages {
  margin-top: 2rem;
}
.message { /* nice coloring, border rectangles for each message */
  background-color: #ffe6ea;
  border-left: 6px solid #ff7f9c;
  padding: 0.75rem 1.25rem;
  margin: 0.5rem 0;
  border-radius: 10px;
  font-style: italic;
}


/* Input Field appearance */
input[type="textbox"] {
  padding: 0.5rem;
  margin-right: 0.5rem;
  border: 1px solid #ffa5b0;
  border-radius: 6px;
  background-color: #fff6f8;
}


/* Submit button look */
button {
  padding: 0.5rem 1rem;
  background-color: #ff6b81;
  border: none;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
button:hover {
  background-color: #ff859a;
}


/* Footer color, alignment, etc.. */
footer {
  text-align: center;
  padding: 1rem 0;
  margin-top: 40px;
  color: #999;
  font-size: 0.9rem;
}
