/* HEADER */
header {
  width: 100%;
  height: 60px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1000;
  text-transform: uppercase;
  /* max-width: 1400px; */
  transform: translateX(-50%);
}

#main-header.scrolled {
    background: rgba(0, 0, 0, 0.5); /* transparent black */
}

/* LEFT SIDE */
.header-left {
  display: flex;
  align-items: center;
  /* gap: 20px; */
  /* width: 20%; */
}

.ysl-btn {
  border: 1px solid #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.header-left > a {
  font-size: 12px;
  letter-spacing: 1px;
}

/* CENTER LOGO */
.header-center {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-center > div {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-center img {
  width: 100%;
  height: auto;
}

/* RIGHT MENU */
.header-right {
  display: flex;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  justify-content: space-between;
  align-items: center;
  /* width: 20%; */
}

header a {
  text-decoration: none;
  color: #fff;
  width: max-content;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: #fff;
}

@media (max-width: 768px) {
  .header-left > a,
  .ysl-btn,
  .header-right {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .header-center {
    /*transform: translate(0%, -50%);*/
  }
  .header-center > div {
    width: 60%;
  }
  .header-center img {
  width: 180px;
}
header a {
    width:auto;
}
.header-left {
	z-index:999;
}
}

/* MODAL MENU */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0; /* 👈 anchor left side */
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  z-index: 2000;

  /* slide-left effect */
  transform: translateX(-100%);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-overlay.active {
  transform: translateX(0);
}

.menu-close {
  font-size: 30px;
  cursor: pointer;
  align-self: flex-start;
}

.menu-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}

.menu-top a {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.menu-bottom {
  text-align: center;
  margin-bottom: 50px;
}

.menu-bottom a {
  display: block;
  margin: 15px 0;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateX(-50px); /* 👈 slide in from left */
  transition: all 0.6s ease;
}

/* staggered animation */
.menu-overlay.active .menu-bottom a:nth-child(1) {
  transition-delay: 0.2s;
}
.menu-overlay.active .menu-bottom a:nth-child(2) {
  transition-delay: 0.35s;
}
.menu-overlay.active .menu-bottom a:nth-child(3) {
  transition-delay: 0.5s;
}

.menu-overlay.active .menu-bottom a {
  opacity: 1;
  transform: translateX(0);
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0; /* 👈 anchor left side */
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  z-index: 2000;

  /* slide-left effect */
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-overlay.active {
  transform: translateX(0);
}

.menu-close {
  font-size: 30px;
  cursor: pointer;
  align-self: flex-start;
}

.menu-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}

.menu-top a {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.menu-bottom {
  text-align: center;
  margin-bottom: 50px;
}

.menu-bottom a {
  display: block;
  margin: 15px 0;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateX(-50px); /* 👈 slide in from left */
  transition: all 0.6s ease;
}

/* staggered animation */
.menu-overlay.active .menu-bottom a:nth-child(1) {
  transition-delay: 0.2s;
}
.menu-overlay.active .menu-bottom a:nth-child(2) {
  transition-delay: 0.35s;
}
.menu-overlay.active .menu-bottom a:nth-child(3) {
  transition-delay: 0.5s;
}

.menu-overlay.active .menu-bottom a {
  opacity: 1;
  transform: translateX(0);
}

/* --- Main Footer Styles --- */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 0 40px 0;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  /* padding: 0 40px; */
  display: flex;
  gap: 50px;
}

/* --- Top Section: Logo & Heading --- */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  /* margin-right: 100px; */
  width: 40%;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  width: 100%;
}
.footer-logo img {
  height: auto;
  width: 300px;
}

.logo-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  margin-right: 12px;
  position: relative;
}

.logo-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #000;
  transform: translate(-50%, -50%);
}

.footer-heading {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0px 0px 50px;
  /* max-width: 620px; */
}

/* --- Middle Section: Info & Socials --- */
.footer-middle-wrapper {
  margin-bottom: 50px;
  display: flex;
  justify-content: end;
  flex-direction: column;
  align-items: start;
}

.footer-info {
  /* margin-right: 120px; */
  display: flex;
  gap: 100px;
  margin-bottom: 10px;
  justify-content: space-between;
}

.info-column .info-title {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1.5px;
  margin-top: 0;
  /*margin-bottom: 20px;
  text-transform: uppercase;*/
}

.info-column p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: #e0e0e0;
}

.social-links {
  display: flex;
  justify-content: start;
  gap: 15px;
  width: 100%;
  margin: 0 0 30px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* --- Bottom Section: Copyright & Nav --- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright p {
  font-size: 14px;
  color: #8a8a8a;
  margin: 0;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 40px;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #aaaaaa;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .site-footer {
    padding: 0 0px;
  }
  .footer-container {
    flex-direction: column;
    padding: 0px;
    gap: 20px;
  }
  .footer-top {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    margin-right: 0;
  }
  .footer-heading {
    max-width: 100%;
    font-size: 24px;
    margin: 0px 0px 20px;
  }
  .footer-middle-wrapper {
    margin-bottom: 20px;
  }
  .footer-bottom{
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .footer-info {
    gap: 30px;
    margin-right: 0;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  .footer-nav{
    display: flex;
    justify-content: start;
    gap: 20px;
    >a{
      margin-left: 0;
    }
  }

  .social-links{
    margin: 0 0;
  }
}


