.header, .lightbox {
    justify-content: center;
}
.header, .navigation {
    height: 60px;
    display: flex;
}
.button, .call-button {
    border: none;
    cursor: pointer;
}
.button, body, html {
    font-family: Coolvetica, sans-serif;
}
.image-text, .nav-item .button::after {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.call-button, A {
    text-decoration: none;
}
@font-face {
    font-family: Coolvetica;
    src: url('coolvetica.otf') format('opentype');
}
* {
    box-sizing: border-box;
}
body, html {
    margin: 0;
    padding: 0;
    background-color: #282828;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 100%;
    overflow-x: hidden;
}
.header {
    margin-top: 5px;
    width: 100%;
    align-items: center;
}
.logo {
    max-height: 100%;
    max-width: 100%}
.navigation {
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    position: relative;
    width: 70%;
    z-index: 10;
    opacity: 1;
    transition: none;
    margin: 0 auto;
}
.burger-menu.open span:nth-child(2), .lightbox {
    opacity: 0;
}
.navigation.active {
    display: flex;
    opacity: .7;
    background-color: #323232;
}
.nav-item {
    flex-basis: 20%;
    min-width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.button {
    padding: 10px 20px;
    font-size: 17px;
    background: 0 0;
    color: #dadbd9;
    letter-spacing: 2px;
    transition: color .2s, background-color .2s;
}
.button:hover {
    color: #fee3a3;
}
.nav-item .button {
    position: relative;
    overflow: hidden;
}
.nav-item .button::after {
    content: '';
    position: absolute;
    width: 85%;
    height: 0;
    background-color: #fee3a3;
    transform-origin: top;
    transition: height .2s, transform .1s;
}
.nav-item .button:hover::after {
    height: 2px;
    transform: translateX(-50%) scaleY(1);
}
.text-container {
    width: 70%;
    margin: 20px auto 0;
}
.text-content {
    width: 80%;
    margin: 0 auto;
    text-align: left;
    font-size: 15px;
    color: #dce0df;
    letter-spacing: 1px;
    word-spacing: 2px;
}
.image-text, .page-title {
    font-family: Coolvetica, sans-serif;
    text-align: center;
}
.image-container {
    width: 70%;
    margin: 50px auto 0;
}
.image-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.navigation.active .close-button, .page-image {
    display: block;
}
.image-wrapper {
    position: relative;
    width: calc(50% - 20px);
}
.image {
    width: 100%;
    border-radius: 15px;
    height: auto;
    transition: transform .2s;
}
.image:hover {
    transform: scale(1.03);
}
.image-text {
    position: absolute;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    opacity: 0;
    transition: opacity .2s;
}
.image-text span {
    background-color: rgba(0, 0, 0, .7);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}
.image-wrapper:hover .image-text {
    opacity: 1;
}
.page-title {
    width: 70%;
    margin: 50px auto 0;
    font-size: 20Px;
    color: #dce0df;
    letter-spacing: 2px;
}
.page-image {
    width: 40%;
    margin: 50px auto;
    border-radius: 30px;
    filter: grayscale(100%);
    transition: filter .2s;
}
.page-image:hover {
    filter: grayscale(0%);
}
.lightbox {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: opacity .2s, visibility 0s .2s;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    margin: auto;
}
.lightbox.show {
    visibility: visible;
    opacity: 1;
    transition: opacity .2s;
}
.sketchfab-embed-wrapper {
    display: flex;
    justify-content: center;
    width: 70%;
    margin: 0 auto;
}
.sketchfab-embed-wrapper iframe {
    width: 100%;
    height: 700px;
}
.contact-container {
    width: fit-content;
    margin: 50px auto;
    padding: 20px;
    background-color: #393939;
    border-radius: 10px;
}
.contact-row {
    margin-bottom: 15px;
    color: #dce0df;
    font-size: 20px;
    text-align: left;
    letter-spacing: 3px;
}
.call-button, .input-field {
    font-size: 15px;
    letter-spacing: 1px;
    font-family: Coolvetica, sans-serif;
}
.contact-label {
    color: #fbc85e;
}
.call-button {
    background-color: #ffc265;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 700;
    transition: background-color .3s;
}
.call-button:hover {
    background-color: #f8aa06;
}
.contact-icon {
    height: 20px;
    width: auto;
}
.input-field {
    width: 95%;
    padding: 10px;
    margin-top: 5px;
    background-color: #393939;
    color: #dce0df;
    border: none;
    border-bottom: 2px solid #fbc85e;
}
.input-field:focus {
    outline: 0;
    border-bottom: 2px solid #f8aa06;
}
.collaboration-title {
    text-align: center;
    color: #fbc85e;
    font-size: 20px;
    font-family: Coolvetica, sans-serif;
    letter-spacing: 2px;
    margin-bottom: 30px;
    margin-top: 100px;
}
.message-field {
    height: 150px;
    resize: vertical;
}
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    margin-right: 30px;
    cursor: pointer;
    position: relative;
}
.burger-menu span {
    background-color: #dadbd9;
    height: 3px;
    border-radius: 2px;
    transition: .3s;
}
.burger-menu.open span:first-child {
    transform: translateY(8px) rotate(45deg);
}
.burger-menu.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.close-button {
    background: 0 0;
    border: none;
    color: #e7e7e7;
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    display: none;
}
@media (max-width:768px) {
    .header {
    justify-content: flex-start;
    padding-left: 20px;
    height: 40px;
}
.navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .3s;
}
.navigation.active {
    display: flex;
    opacity: 1;
}
.nav-item {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.image-text, .text-content {
    width: 100%}
.page-image {
    width: 95%;
    filter: grayscale(0%);
}
.page-title {
    width: 90%;
    margin: 40px auto 20px;
    font-size: 15px;
}
.text-content {
    font-size: 10px;
}
.image-row {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}
.image-wrapper {
    width: 100%;
    border-radius: 10px;
    margin: 10px 0;
}
.image-container {
    width: 95%;
    margin: 10px auto 0;
}
.sketchfab-embed-wrapper, .text-container {
    width: 95%}
.burger-menu {
    display: flex;
}
.header {
    justify-content: space-between;
}
.close-button {
    display: block;
}
.button {
    font-size: 30px;
}
}A {
    color: inherit;
}

.footer {
  margin-top: auto;
  background-color: #222222;
  color: #ffffff;
  text-align: center;
  padding: 10px 0 1px; /* Adjusted padding-bottom to 10px */
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-navigation {
  margin-top: 1px;
}

.footer-navigation a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 2px;
  margin: 0 10px;
}

.footer-navigation a:hover {
  text-decoration: underline;
}

.footer-social-media {
  margin: 7px 0;
}

.social-icon {
  width: 24px;
  height: 24px;
  margin: 0 8px;
  vertical-align: middle;
}

.footer-copyright {
  margin-top: 1px;
}

.contact-container .footer-social-media {
    display: flex; /* Arrange icons in a row */
    justify-content: center; /* Center the icons horizontally */
    align-items: center; /* Align icons vertically */
    gap: 15px; /* Space between the icons */
    margin-top: 50px; /* Add some space above */
}

.contact-container .social-icon {
    width: 30px; /* Set the size of the icons */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s; /* Add hover effect */
}

.contact-container .social-icon:hover {
    transform: scale(1.2); /* Slightly enlarge the icon on hover */
}

@media (max-width: 768px) {
  .image-text {
    opacity: 1 !important;
    position: static;
    transform: none;
    text-align: center;
    margin-top: 10px;
    padding: 10px 0;
  }

  .image-text span {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
  }

  .image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
