/* HOME PAGE */

/* sets default font, background color, and text color */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    margin-left: 34px;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
  }
  
  /* styles the top bar with a fark background and white text */
  header  {
    background-color: #1e3d59;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
/* ============================
 Responsive Navigation
============================= */


@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    display: flex; /* Hidden by default on mobile */
    
    padding: 10px;
    border-radius: 8px;
  }
  
  nav ul.show {
    display: flex; /* Show when toggled */
  }
  
  .menu-toggle {
    display: block; /* Show toggle button on mobile */
    margin: 10px auto;
  
  }
  }
  
  /* Remove bullet points and spaces, aligns nav items horizontal */
  nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  

  /* Styles the nav links white, bold, no underline */
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  



/* CONTACT  */


  /* default */
  contact {
    padding: 20px;
    background-color: #fff;
    margin: 20px;
    border-radius: 8px;
    max-width: 300px;
    margin-left: 345px;
    margin-right: auto;
  }

  /* form input and form text area */
  form input{
    
    width: 40%;
    padding: 5px;
    margin-top: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;

  }

  form textarea{
    width: 40%;
    padding: 70px;
    margin-top: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;

  }


  /* form button */
   form button{
    background-color: #1e3d59;
    color: white;
    padding: 10px 20px;
    border: 5px;
    border-radius: pointer;
   }

   /* form button hover */
   form button:hover{
    background-color: #16324a;
   }

/* 🧠 Responsive message box styling */
    #message {
      width: 50%;               /* Full width on mobile */
      min-height: 120px;         /* Taller box for typing */
      padding: 12px;             /* Comfortable space inside */
      font-size: 16px;           /* Readable text size */
      border: 1px solid #ccc;    /* Soft border */
      border-radius: 8px;        /* Rounded corners */
      resize: vertical;          /* Allow vertical resizing */
      box-sizing: border-box;    /* Prevent overflow issues */
    }

    /* 🧠 Optional: Responsive tweaks for small screens */
    @media (max-width: 600px) {
      #message {
        min-height: 140px;
        font-size: 18px;
      }
    }

p a{
  text-decoration: none;
  color: blue;
  font-weight: bold;
  
  font-family: 'Courier New', Courier, monospace;

}
p a:hover{
  background-color: gray;
}
