/* Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("/assets/fonts/ProximaNova/Proxima Nova Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  height: 100%;
  font-family: "Proxima Nova", sans-serif;
  background: #ffffff;
  overflow: hidden;
}

/* Banner Background */
.home-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
}

.ice-bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/front-office/temporarly-home/home-banner.jpg");
  background-size: cover;
  background-position: center;
  animation: bgMove 15s ease-in-out infinite alternate;
  filter: brightness(1.1);
}

@keyframes bgMove {
  from {
    transform: scale(1);
    background-position: center top;
  }
  to {
    transform: scale(1.05);
    background-position: center bottom;
  }
}

/* Logo */
.logo-box {
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 10;
}

.logo-box img {
  width: 160px;
}

/* Bottle */
.bottle-box {
  position: absolute;
  right: 23%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.bottle-div img {
  width: 340px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Sidebar logos */
.logo-div {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 8;
}

.logo-div img {
  width: 50px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-div img:hover {
  transform: scale(1.1);
}

/* Text */
.bannner-text-box {
  position: absolute;
  top: 30%;
  left: 17%;
  color: #000;
}

.bannner-text-box h1 {
  font-weight: 900;
  font-size: 72px;
  line-height: 1.1;
  color: #000;
  animation: fadeInUp 2s ease forwards;
}

.bannner-text-box-two {
  position: absolute;
  top: 53%;
  left: 17%;
}

.bannner-text-box-two p {
  font-weight: 700;
  font-size: 48px;
  color: #000;
  animation: fadeInUp 2.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Notify button + Socials */
.send-box {
  position: absolute;
  bottom: 25%;
  left: 17%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.send-buttom {
  border: 2px solid #000;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  padding: 12px 24px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.send-buttom:hover {
  background: #000;
  color: #fff;
}

.send-buttom img {
  width: 18px;
}

/* Social Profiles */
.social-profiles ul {
  display: flex;
  gap: 15px;
  list-style: none;
}

.social-profiles ul li a {
  border: 1px solid #60779c;
  border-radius: 100px;
  height: 40px;
  width: 40px;
  padding: 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.social-profiles ul li a:hover {
  background-color: #60779c;
}

.social-profiles ul li img {
  width: 20px;
}

/* Footer */
footer {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 14px;
  color: #555;
  letter-spacing: 0.3px;
  padding: 0 20px;
}

.mobile-media {
  display: none;
}

/* ======================
   TABLET FIXES (768–1024px)
====================== */
@media (max-width: 1024px) and (min-width: 769px) {
  .bottle-box {
    right: 15%;
  }

  .bottle-div img {
    width: 320px;
  }

  .bannner-text-box {
    left: 10%;
    top: 25%;
  }

  .bannner-text-box h1 {
    font-size: 60px;
  }

  .bannner-text-box-two {
    top: 47%;
    left: 10%;
  }

  .bannner-text-box-two p {
    font-size: 36px;
  }

  .send-box {
    left: 10%;
    bottom: 20%;
  }

  .logo-div img {
    width: 45px;
  }
}

/* ======================
   MOBILE FIXES (<768px)
====================== */
@media (max-width: 768px) {
  .home-banner {
    height: 100%;
  }
  .desktop-media {
    display: none;
  }

  .mobile-media {
    display: flex;
    justify-content: center;
    margin: 0 0 12px 0;
  }

  .logo-box {
    transform: translateX(0);
    text-align: center;
    margin: 30px 0 0 0;
    position: unset;
  }

  .bottle-box {
    position: unset;
    top: 0;
    right: 0;
    transform: none;
    margin: 68px auto 0;
    text-align: center;
  }

  .bottle-div img {
    width: 250px;
  }

  .bannner-text-box,
  .bannner-text-box-two,
  .send-box {
    position: unset;
    left: 0;
    top: 0;
    transform: none;
    text-align: center;
    margin: 15px auto;
  }

  .bannner-text-box h1 {
    font-size: 35px;
    text-align: center;
  }

  .bannner-text-box-two p {
    font-size: 23px;
  }

  .send-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 60px; /* keep space from footer */
  }

  .send-buttom {
    background: #fff;
    border: 2px solid #000;
    color: #000;
    padding: 10px 24px;
    width: fit-content;
    margin: 0 auto 20px auto;
  }

  .logo-div {
    display: none; /* hide side icons on mobile */
  }

  .logo-box img {
    width: 126px;
  }
}

@media (max-width: 376px) {
  .bottle-box {
    margin: 9px auto 0;
  }

  .bottle-div img {
    width: 150px;
  }

  .bannner-text-box h1 {
    font-size: 28px;
    text-align: center;
  }
}
