/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

  .departments {
      background-color: #c0daf6;
      color: white;
      padding: 15px;
      text-align: left;
      border: 2px solid #85b9f0;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      font-weight: bold;
  }

  .departments a {
      color: white;
      text-decoration: none;
  }

  .departments:hover {
      text-decoration: underline;
      background-color: #0c3af1;
  }

  @media (max-width: 1000px) {
    .departments {
      display: flex;
      flex-direction: column;
    }
  }

  @media (max-width: 820px) {
    #hero {
      display: flex;
      flex-direction: column;
    }
  }

  #topnav {
    text-align: right;
    background-color: #85b9f0;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    padding: 10px;
  }

  #topnav p {
    margin: 0;
  }

  #topnav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }

  #topnav a:hover {
    text-decoration: underline;
  }

  .contact-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
  }

  .form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
  }

  .form-group label {
    font-weight: bold;
    margin-bottom: 5px;
  }

  .form-group input,
  .form-group textarea {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #85b9f0;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
  }

  .validation-message {
    font-size: 12px;
    margin-top: 3px;
  }

  .form-actions {
    margin-top: 20px;
  }

  .form-actions input[type="submit"] {
    background-color: #85b9f0;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }

  .form-actions input[type="submit"]:hover {
    background-color: #0c3af1;
  }

  .thank-you-container {
    text-align: center;
    padding: 60px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .thank-you-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
  }

  .thank-you-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
  }

  .home-link {
    background-color: #85b9f0;
    display: inline-block;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
  }

  .home-link:hover {
    background-color: #0c3af1;
  }

  #footer {
    text-align: center;
    padding: 10px;
  }

  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  .services, .design, .consulting, .info {
    flex-grow: 1;
    gap: 20px;
    justify-content: space-evenly;
    margin: 20px;

    li {
      margin: 20px 0;
    }
  }

  .skills {
    display: flex;
    flex-grow: 1;
    gap: 20px;
    justify-content: space-evenly;
    margin: 20px;

    li {
      margin: 20px 0;
    }
  }

  #hero {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
  }
  #topnav, #hero, #footer {
    padding: 10px;
  }
  #footer {
    text-align: center;
  }
  #hero-image {
    width: 450px;
    height: 350px;
    object-fit: cover;
    transition: opacity 0.15s ease;
    opacity: 1;
  }
