@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.5px !important;
}

html,#body {
  overflow-x: hidden !important;
  background-color: #f0f0f0;
}


header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #33333325;
  z-index: 50;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  max-width: 1800px;
  margin-inline: auto;
}
header nav .left {
  display: flex;
  align-items: center;
}
header nav .left img {
  width: 85px;
  height: 85px;
  margin-right: 20px;
  object-fit: contain;
}
header nav .left ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding-top: 14px;
}
header nav .left ul a {
  font-style: italic;
  text-decoration: none;
  color: #000;
  padding-bottom: 1px;
  font-size: 0.98rem;
}
header nav .left ul a:hover {
  color: #000000a8;
}
header nav .left ul a.active-c {
  color: #000;
  font-weight: bold;
  border-bottom: 2px solid #000;
  padding-bottom: 1px;
}
header nav .left li {
  margin-right: 20px;
}
header .right {
  display: flex;
  align-items: center;
  color: #000;
}
header .right a {
  margin-inline: 5px;
  color: #000000d8;
  text-decoration: none;
}
header .right i {
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f0f0f0, #ffffff);
  display: grid;
  place-content: center;
  border-radius: 10px;
  transition: 0.1s ease-in-out;
}
header .right i:hover {
  color: #000;
  transform: translateY(-5px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  cursor: pointer;
  z-index: 100;
  margin-left: 10px;
  background: none;
  border: none;
}

.hamburger i {
  font-size: 1.8rem;
  color: #000;
  transition: color 0.2s;
}

footer {
  margin-top: 100px;
  background: #232323;
  color: #f0f0f0;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 24px;
  padding: 60px 0 30px 0;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: 0.03em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li,
.footer-col ul li a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  color: #bdbdbd;
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer-social a {
  color: #bdbdbd;
  font-size: 1.25rem;
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: #fff;
  transform: scale(1.15);
}

.footer-contact i,
.footer-hours i {
  margin-right: 8px;
  color: #aaa;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 18px 0 10px 0;
  color: #bdbdbd;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

/* Responsive footer */
@media (max-width: 900px) {
  .footer-main {
    flex-wrap: wrap;
    gap: 32px 0;
  }
  .footer-col {
    min-width: 180px;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    gap: 32px 0;
    padding: 40px 0 20px 0;
  }
  .footer-col {
    min-width: 0;
    max-width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid #333;
  }
  .footer-col:last-child {
    border-bottom: none;
  }
  .footer-logo {
    width: 90px;
  }
}

@media (max-width: 767px) {
  header {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  header nav .left ul {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 30px 30px;
    box-shadow: 2px 0 16px #00000018;
    transition: left 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 99;
    gap: 0;
  }
  header nav .left ul.open {
    left: 0;
  }
  header nav .left li {
    margin: 0 0 22px 0;
  }
  header nav .left ul a {
    font-size: 1.15rem;
    padding: 8px 0;
  }
  header nav {
    width: 100%;
    padding: 0 10px;
  }
  .hamburger {
    display: flex;
  }
  header nav .left img {
    display: none;
  }
  header nav .left {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
}

@media (max-width: 600px) {
  header nav .right {
    display: flex;
    position: static;
    margin-left: auto;
  }
  header nav .left {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
  .hamburger {
    margin-left: 0;
    margin-right: 0;
    order: 1;
  }
  header nav .left ul {
    width: 90vw;
    max-width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
  }
}

header nav .overlay {
  display: none;
}

header nav .overlay.active {
  display: block;
  position: fixed;
  z-index: 98;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #00000040;
  animation: fadeInOverlay 0.3s;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  /* Disable all hover effects */
  header nav .left ul a:hover {
    color: #000; /* Same as non-hover state */
  }
  
  header .right i:hover {
    color: #000000d8; /* Same as non-hover state */
    transform: none;
  }
  
  .footer-col ul li a:hover {
    color: #d0d0d0; /* Same as non-hover state */
    text-decoration: none;
  }
  
  .footer-social a:hover {
    color: #bdbdbd; /* Same as non-hover state */
    transform: none;
  }
}

/* Add this to your existing CSS file */

.nav-check {
  display: none;
  margin-left: 5px;
  color: #4CAF50;
  font-size: 0.8em;
}

a.active-c .nav-check {
  display: inline-block;
}

/* Optional hover effect for non-active links */
.nav-link:hover .nav-check {
  opacity: 0.3;
  display: inline-block;
}
