/* common css ******************************************************************************/

@font-face {
  font-family: "BAHNSCHRIFT";
  src: url("../fonts/BAHNSCHRIFT.TTF");
}

:root {
  --white: #fff;

  --black: #000;
}

.white {
  color: var(--white);
}

.black {
  color: var(--black);
}

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;

  -moz-box-sizing: border-box;

  -webkit-box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

.common::after {
  content: "";

  position: absolute;

  width: 100%;

  height: 100%;

  left: 0;

  top: 0;

  background: var(--black);
}

p {
  margin: 0;

  padding: 0;

  font-size: 20px;

  /* line-height: 25px; */

  /* margin-bottom: 25px; */

  color: var(--black_343436);
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;

  text-transform: capitalize;

  display: inline-block;

  line-height: 1.2;

  color: inherit;

  font-family: inherit;
}

span {
  display: inline-block;
}

img,
video {
  max-width: 100%;

  display: block;
}

/* **************************************************** */

body {
  max-width: 480px;
  margin: 0 auto;
  height: 100svh;
}

.container {
  background: url("../images/banner-bg.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 100%;
}

/* Logo Section */

.logo img {
  max-width: 220px;
}

.mid-part img {
  max-width: 90%;
  margin: 0 auto;
}

/* WhatsApp Button */

.btn-box a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;

  color: #fff;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform-origin: center;
  animation: zoom 2s ease-in-out infinite;
  animation-delay: 1s; /* zoom starts after slide+reveal */
}

/* WhatsApp Icon */
.btn-box a .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* padding: 5px; */
  /* margin-right: 10px; */
  opacity: 0;
  transform: translateX(80px); /* start offscreen right */
  animation: slideIn 0.8s ease-out forwards;
  position: relative;
  z-index: 9;
}
.btn-box a .icon img {
  width: 54px;
  height: 54px;
  filter: drop-shadow(-2px 0px 6px black);
}

/* Text */
.btn-box a .text {
  opacity: 0;
  transform: translateX(20px);
  animation: slideText 0.6s ease-out forwards;
  animation-delay: 0.6s;
  background: #32ca4d;
  padding: 5px 10px;
  border-radius: 0px 10px 10px 0;
  margin-left: -20px;
  padding-left: 30px;
  font-size: 23px;
  filter: drop-shadow(2px 4px 6px black);
}
/* Zoom infinite */
@keyframes zoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Slide animation for icon */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Reveal animation for text */
@keyframes textReveal {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes slideText {
  from {
    opacity: 0;
    transform: translateX(0px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
