body {
  margin: 0;
  background-color: #26282d;
}


.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  background: #1b1b1b;
  color: #f2f2f2;
  font-family: Arial, Helvetica, sans-serif;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  height: 70px;
  width: auto;
}

.company-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.owner-info {
  text-align: right;
}

.owner-name {
  font-size: 18px;
  font-weight: 600;
}

.owner-contact {
  font-size: 14px;
  color: #ccc;
}

.social-icons {
  display: flex;
  gap: 12px;
}

/* Placeholder styling so the space is obvious */
.social-icons a,
.social-icons img {
  width: 24px;
  height: 24px;
  display: block;
  opacity: 0.8;
  font-size: 25px;
}

.social-icons a:hover,
.social-icons img:hover {
  opacity: 1;
}


.bio,ul,.desc {
  font-size: 20px;
  text-align: center;
  line-height: 25px;
}

ul {
  list-style: none;
}

.header {
  display: grid;
  grid-template-columns: auto auto auto auto;
  background-color: #1e2025;
  padding: 10px;
}

.logo-img {
  padding: 5%;
}

.logo-img img {
  width: 100%;
  max-width: 250px;
}

.header-contact-info {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: whitesmoke;
  font-size: 20px;
}

.social-icon {
  text-decoration: none;
}

#facebook {
  color: #1877F2;
}

#instagram {
  color: #C13584;
}

#tiktok {
  color:#FE2C55;
}

.contact {
  background-image: url("https://corbinhill.huskisites.com/Ryan-site/images/contactimg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.contact-info {
  background-color: rgba(255, 255, 255, 0.9);
  width: 90%;
  max-width: 400px;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.2em;
  text-align: center;
}

.footer {
  background-color: #1e2025;
  padding: 15px;
  color: lightgray;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

@media (max-width: 780px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .header-left {
    flex-direction: column;
    gap: 8px;
  }

  .logo {
    height: 55px;
  }

  .company-name {
    font-size: 18px;
  }

  .header-right {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .owner-info {
    text-align: center;
  }

  .owner-name {
    font-size: 16px;
  }

  .owner-contact {
    font-size: 13px;
  }

  .social-icons {
    justify-content: center;
  }
}
