:root {
    --blue: #2f80ed;
    --dark-blue: #1c3d72;
    --gray-light: #f5f7fa;
    --gray-medium: #707c97;
    --white: #ffffff;
  }
  * {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gray-light);
    color: var(--dark-blue);
    line-height: 1.55;
  }
  header {
    background: var(--white);
    padding: 16px 24px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .logo img { max-width: 100%; }
  header .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: rgba(255,255,255,0);
    max-width: 15%;
  display: flex;
  align-items: center;
/*	background-image: url("it-friends-logo-slim.png");*/
   background-position: center center;
  background-repeat: no-repeat;
  height: 100px;
  background-size: contain;
  }
  header nav {
      text-align: center;
  }
  header .socials {

  }
  nav a {
    text-decoration: none;
    color: var(--dark-blue);
    margin-left: 24px;
    font-weight: 600;
    transition: color 0.3s;
  }
  nav a:hover {
    color: var(--blue);
  }
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 16px;
  }
  h1, h2 {
    margin-top: 0;
  }
  h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--blue);
  }
  h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--blue);
    padding-bottom: 6px;
  }
  p {
    color: var(--gray-medium);
  }
  .hero {
    background: var(--white);
    padding: 64px 16px 48px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(47, 128, 237, 0.15);
    margin-bottom: 48px;
  background-image: url("jax-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  }
  body.nashville .hero { 	background-image: url("nashville-bg.jpg"); }
  .hero h1, .hero h2, .hero * {
      color: var(--white);
  }
  .hero .container {
      position: relative;
      z-index: 2;
      background: rgba(0,0,0,0.3);
      font-size: 20px;		
  }
  .hero::before {
      content: '';
      position: absolute;
      z-index: 1;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.3);
  }

  a.btn {
    
  }
  .btn {
    background-color: var(--blue);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    font-size: 1.125rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1.5rem;
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
  }
  .btn:hover {
    background-color: #2054c0;
  }
  .grid {
    display: grid;
    grid-gap: 24px;
  }
  .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .card {
    background: var(--white);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
  }
  .card:hover {
    box-shadow: 0 8px 20px rgba(47, 128, 237, 0.25);
  }
  .card strong {
    font-size: 1.125rem;
    color: var(--blue);
    display: block;
    margin-bottom: 10px;
  }
  ol {
    padding-left: 20px;
    color: var(--gray-medium);
    margin-top: 0;
  }
  label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--dark-blue);
  }
  input, textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    resize: vertical;
    font-size: 1rem;
    margin-bottom: 18px;
  }
  textarea {
    min-height: 100px;
  }
  footer {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    color: var(--gray-medium);
    margin-top: 48px;
    font-size: 0.9rem;
  }
  @media (min-width: 700px) {
    nav a {
      margin-left: 32px;
    }
    .hero {
      padding: 96px 32px 64px;
    }
  }
  @media (max-width: 880px) {
      header .socials { display: none; }
      header { flex-direction: column }
      header .logo { max-width: 200px }
  }
  @media (max-width: 500px) {
      header nav { 
          display: flex;
          flex-direction: column;
          width: 100%;
      }
      header nav a {
          padding: 8px 0;
          text-align: center;
          margin: 0px;
          width: 100%;

      }
      header nav a:hover {
          background-color: var(--blue);
          color: var(--white);
      }		
      header {
        position: relative;
      }
  }