*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
a {
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 700;
  font-style: none;
  text-decoration: none;
  color: inherit;
}
ul,
ol,
dl {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  text-transform: capitalize;
}
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  /* background: #202020; */
  background: #fcbd98;
  padding: 60px 0px;
}
img {
  max-width: 100%;
  display: block;
}
/* start app */
.header .container .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.header .container .logo .image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  border: 2px solid black;
  border-bottom: 5px solid black;
}
.header .container .logo .image img {
  width: 100px;
  height: 100px;
}
.header .container .logo .name {
  font-size: 24px;
  color: #f3a172;
  color: #242424;
  margin-bottom: 12px;
}
.header .container .tagline {
  font-size: 14px;
  color: #ffffff;
  color: #242424;
  text-align: center;
  max-width: 300px;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
}
.header .container .socials {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.header .container .socials a {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  transition: all 0.3s ease;
  color: #242424;
  font-size: 16px;
  border: 2px solid black;
  border-bottom: 5px solid black;
  cursor: pointer;
}
.header .container .socials a:hover {
  background: #e88b4d;
  border-bottom: 2px solid black;
  border-top: 2px solid black;
  transform: translateY(3px);
}
.links {
  margin-top: 30px;
}
.links .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.links .container button {
  background: #f3a172;
  background: #ffffff;
  border-radius: 25px;
  border: 2px solid black;
  border-bottom: 5px solid black;
  text-align: center;
  transition: 0.1s;
  width: 100%;
  max-width: 350px;
  cursor: pointer;
}
.links .container button:hover {
  background: #e88b4d;
}
.links .container button:active {
  border-bottom: 2px solid black;
  border-top: 2px solid black;
  transform: translateY(3px);
}
.links .container button a {
  font-size: 14px;
  font-weight: 600;
  color: #242424;
  width: 100%;
  height: 100%;
  display: block;
  padding: 12px 24px;
  border-radius: 25px;
}
/* floating pumpkin */
#pumpkin-float {
  position: fixed;
  bottom: 12px;
  left: 12px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  animation: bounce 2s infinite ease-in-out;
  z-index: 9999;
  transition: transform 0.3s;
}

#pumpkin-float:hover {
  transform: scale(1.1);
}

/* ---------- Message Bubble ---------- */
#pumpkin-message {
  position: fixed;
  bottom: 75px;
  left: 36px;
  background: #fcbd98;
  color: #242424;
  border: 2px solid black;
  border-radius: 12px;
  padding: 16px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 260px;
  display: none;
  z-index: 9998;
  animation: fadeIn 0.4s ease forwards;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
}

/* ---------- Keyframes ---------- */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
