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;
}


.text {
  color: whitesmoke;
  font-size: 12px;
  text-align: center;
}

.pricing {
  width: 100%;
}

.pricing-text {
  width: 100%;
  display: grid;
  grid-template-columns: .5fr 2fr .5fr;
  color: whitesmoke;
  font-size: 12px;
  text-align: center;
}

.price-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid #444;
  padding-bottom: 10px;
}

.price-section {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 25px;
  font-weight: 600;
  color: #e0c08d;
}

.price-subsection {
  margin-top: 14px;
  font-size: 22px;
  font-weight: 600;
  color: #caa76b;
}

.price-row {
  display: flex;
  justify-content: space-between ;
  padding: 6px 0;
  border-bottom: 1px dashed #333;
  font-size: 15px;
}

.price-row span {
  font-weight: 600;
  font-size: 15px;
}

.price-note {
  margin-top: 10px;
  font-size: 15px;
  color: #bbb;
  font-style: italic;
}

.square-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about,
.taxidermy-class {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2%;
  flex-direction: column;
}

.squares-container,
.class-container {
  width: 90%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.square-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.square-row:nth-child(odd) {
  flex-direction: column;
}

.square-row:nth-child(even) {
  flex-direction: column-reverse;
}



.square-img img,
.class-img img {
  width: 80%;
  margin: 8%;
  max-width: 500px;
}

.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;
}

/* Responsive Design */
@media (min-width: 768px) {

  .squares-container,
  .class-container {
    grid-template-columns: 1fr 1fr;
  }
  .square-row {
    flex-direction: column;
    text-align: center;
  }
  .square-row:nth-child(odd) {
    flex-direction: column;
  }
  .square-row:nth-child(even) {
    flex-direction: column-reverse;
  }
  .square-img img,
  .class-img img {
    width: 80%;
    max-width: 500px;
    margin: 8%;
  }

}

@media (min-width: 1200px) {
  .square-img img,
  .class-img img {
    width: 90%;
    max-width: 600px;
    margin: 5%;
  }
}

@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;
  }
}
