#website{
    background-color: white;
}

#navbar{
  color:rgb(85, 103, 103);
  background-color: whitesmoke;
  padding: 10px 40px; /* More horizontal padding for spacing */
  font-family:'Quicksand', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500; /* Increased font weight for better readability */
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between; /* Pushes logo to the left and links to the right */
  align-items: center;
  width: 100%; /* Make navbar span the full width */
  box-sizing: border-box; /* Ensures padding is included in the width calculation */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Adds a subtle shadow for depth */
}

/* We style the anchor tag directly for better control and hover effects */
.link a {
  color: rgb(85, 103, 103);
  text-decoration: none; /* Remove the default underline */
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover */
}

/* Add a hover effect for interactivity */
.link a:hover {
  background-color: rgb(85, 103, 103);
  color: white;
}

/* The .link class is on a <p> tag, so we remove its default margin */
.link {
  margin: 0;
  display: flex;
  align-items: center;
}

.body{
    color: rgb(85, 103, 103);
    background-color: whitesmoke;
    font-family: 'Lato', sans-serif;
    font-weight: 50;
    letter-spacing: 1px;
    line-height: 1.5;
    padding: 20px;
    margin: 10px;
    text-align: center;
}

.card{
    color: rgb(85, 103, 103);
    background-color: whitesmoke;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    border: 2px solid rgb(85, 103, 103);
    width: 500px;
    text-align: center;
    flex: 1 1 300px; /* grow, shrink, base width */
    max-width: 100%; /* ensures card doesn’t overflow */
}

#footer{
    color: rgb(85, 103, 103);
    background-color: whitesmoke;
    padding: 20px;
    text-align: center;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background-color: #ff7f50;
    color: white;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  /* Popup Styles */
  .popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: white;
    border: 1px solid #ccc;
    padding: 16px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .popup textarea {
    width: 100%;
    height: 80px;
    resize: none;
  }
  
  .popup button {
    align-self: flex-end;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .hidden {
    display: none;
  }