* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

@font-face {
  font-family: "KronaOne";
  src: url("assets/fonts/KRONAONE-REGULAR.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins-Light.woff2") format("woff2");
}

.scroll-track {
  height: 400vh;
}

/* Desktop (same as before) */
.scroll-animation {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: black;
}

/* Images default (desktop) */
.scroll-animation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* 🔽 MOBILE FIX */
@media (max-width: 768px) {
  .scroll-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .scroll-animation img {
    width: 90%; /* smaller width */
    height: auto; /* maintain aspect ratio */
    object-fit: contain; /* no cropping */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* HEADER */

/* --- Header Styles --- */
.header {
  width: 100%;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  /* background: rgba(0, 0, 0, 0.8); */
  background-color: black;
  /* backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.logo {
  cursor: pointer;
}

.menu-icon {
  width: 28px;
  cursor: pointer;
}
.menu-icon span {
  display: block;
  height: 2px;
  background: #ffffff;
  margin: 6px 0;
  transition: 0.3s;
}

/* --- Side Menu Container --- */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%; /* Matches reference better */
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  padding: 30px;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.side-menu.open {
  transform: translateX(0);
}

/* --- Side Menu Content --- */
.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 40px; */
  /* border: 1px solid red; */
}

.menu-content {
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 15px 0;
  /* border: 2px solid red; */
}

.menu-logo {
  width: 120px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2.5rem;
  font-weight: 200;
  cursor: pointer;
  color: #333;
}

.description {
  /* font-size: 0.95rem; */
  line-height: 1.6;
  color: #666;
  font-style: italic;
}

.info-section h4,
.social-section h4,
.company-name {
  font-size: 20px;
  letter-spacing: 1px;
  color: #bb7558;
  font-weight: bold;
  margin-bottom: 20px;
}

.info-section a {
  text-decoration: none;
  color: #444;
}

.info-section p {
  /* font-size: 0.9rem; */
  color: #444;
  line-height: 1.4;
}

/* --- Social Icons --- */

.social-icons {
  display: flex;
  gap: 12px;
}

.icon-circle {
  width: 35px;
  height: 35px;
  background-color: #bb7558;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.icon-circle:hover {
  background-color: white;
  color: #bb7558;
  transform: translateY(-3px);
  border: 1px solid #bb7558;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* --- Backdrop --- */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

/* MEDIA */

@media (max-width: 768px) {
  .header {
    padding: 20px;
  }
  .side-menu {
    width: 60%; /* Matches reference better */
  }
}

@media (max-width: 520px) {
  .side-menu {
    height: 100%;
    width: 100%; /* Matches reference better */
  }
}

/* FOOTER */

.footer-dark {
  background-color: #000000;
  color: #ffffff;
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
  padding: 80px 60px 40px 60px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

/* TOP ROW */
.top-row {
  margin-bottom: 60px;
}

.footer-contact {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -1px;
}

/* MIDDLE ROW */
.middle-row {
  margin-bottom: 80px;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.middle-row .col {
  flex: 1;
}

.middle-row .label {
  color: #888;
  margin-bottom: 4px;
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

footer .bottom-row .credits a {
  color: white;
}

footer .middle-row a {
  color: #fff;
  text-decoration: underline;
  margin-left: 15px;
}

/* BOTTOM ROW */
.bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  font-size: 14px;

  color: #888;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icon,
.privacy-link {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.social-icon:hover,
.privacy-link:hover {
  opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .footer-contact {
    font-size: 2rem;
  }
  .footer-dark {
    padding: 40px 20px;
  }
  .footer-row {
    flex-direction: column;
    gap: 30px;
  }
  .text-center,
  .text-right {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .footer-contact {
    font-size: 1.5rem;
  }

  .footer-row {
    margin-bottom: 20px;
  }

  .footer-dark {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
