@font-face {
  font-family: atmospheric;
  src: url('Fonts/a_atmospheric/aAtmospheric.otf');
}

@font-face {
  font-family: nextart;
  src: url('Fonts/next_art/NEXT ART_SemiBold.otf');
}

body {
  background-color: #9DE4D6;
  margin: 0;
}

/* Header container with grid layout */
header {
  background-color: black;
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 10px;
  position: relative;
}

/* Left logo area */
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 150px;
}

#logofull {
  display: none;
}

#logoinitials {
  display: block;
}

/* Centered company name */
.header-center {
  text-align: center;
}

#companyLink {
  text-decoration: none;
  color: inherit;
  display: block;
}

#companyName {
  color: white;
}

#company1 {
  margin: 0;
  font-size: 3.1em;
  font-family: atmospheric, sans-serif;
}

#company2 {
  margin: 0;
  font-size: 1.6em;
  font-family: nextart, sans-serif;
}

/* Right-aligned social media */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-left: 30px;
}

.social {
  width: 40px;
}

/* Nav Styles */
nav {
  background-color: #111;
  padding: 0px 10px;
  font-family: sans-serif;
  font-size: 1.2em;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Toggle Button (Hamburger to X) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 24px;
  cursor: pointer;
  position: relative;
  margin-top: 12px;
  padding-bottom: 12px;
}

.nav-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s ease;
}

.nav-toggle span:nth-child(1) {
  top: 0;
}

.nav-toggle span:nth-child(2) {
  top: 10px;
}

.nav-toggle span:nth-child(3) {
  top: 20px;
}

/* Animate into X */
.nav-toggle.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 0px;
  margin: auto;
  padding: 0;
}

.nav-links li {
  height: 100%;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: block;
  padding: 15px 25px;
}

.nav-links li a:hover {
  color: #9DE4D6;
  background-color: #222;
  transition: background 0.3s;
}

#siteFooter {
  background-color: #000;
  color: white;
  font-family: nextart, sans-serif;
  padding: 40px 20px 20px 20px;
  border-top: 2px solid #ff7f50;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-column {
  flex: 1 1 100px;
  min-width: 240px;
}

.footer-title {
  font-family: atmospheric, sans-serif;
  font-size: 1.8em;
  color: #ff7f50;
  margin-bottom: 10px;
}

.footer-subtitle {
  font-family: nextart, sans-serif;
  font-size: 1.2em;
  color: #9DE4D6;
  margin-bottom: 10px;
}

.footer-column p,
.footer-column a {
  color: #eee;
  font-size: 0.95em;
  text-decoration: none;
  line-height: 1.6;
}

.footer-column a:hover {
  color: #ff7f50;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #9DE4D6;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #222;
  padding-top: 10px;
  font-size: 0.85em;
  color: #aaa;
}

/* Responsive Layout */
@media screen and (max-width: 700px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .footer-column p {
    margin: 0;
    padding: 2px 0;
  }
}



/* Responsive & Dropdown Animation */
@media screen and (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
  }

  .nav-links.active {
    max-height: 500px;
  }

  .nav-links li {
    text-align: center;
    border-top: 1px solid #333;
  }

  .nav-links li a {
    display: block;
    padding: 15px 0;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
  }

  .nav-links li a:hover {
    background-color: #222;
    color: #9DE4D6;
  }
}

/* Extra small screens */
@media screen and (max-width: 604px) {
  /* Layout shift */
  header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 20px 10px;
  }

.header-left {
  justify-content: center;
  width: 100%;
}

#logoinitials {
  display: none;
}

#logofull {
  display: block;
  height: 150px;
}

.header-center,
#companyName {
  display: none;
}

.header-right {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
  margin-top: 10px;
  padding: 0;
}

.social {
  width: 36px;
  margin-top: 0;
}
}
