/* HEADER */
header {
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  border-bottom: 2px solid red;
  animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 5px rgba(255,0,0,0.3); }
  50% { box-shadow: 0 0 20px rgba(255,0,0,0.8); }
  100% { box-shadow: 0 0 5px rgba(255,0,0,0.3); }
}

header img {
  height: 110px;
}

/* NAV */
.main-nav {
  margin-top: 15px;
}

.main-nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.main-nav a:hover {
  color: red;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: red;
  transition: 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-red {
  background: red;
  color: #fff;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

/* FOOTER */
footer {
  background: #000;
  text-align: center;
  padding: 25px 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #222;
}

footer span {
  color: red;
}

/* SOCIAL */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 22px;
  color: #fff;
}

.social-icons a.facebook:hover { color: #1877f2; }
.social-icons a.instagram:hover { color: #e1306c; }
.social-icons a.donedeal:hover { color: #ff6600; }

/* BACK TO TOP */
#topBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: red;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#topBtn.show {
  opacity: 1;
}

/* =========================
   MOBILE FIX (IMPORTANT)
========================= */
@media (max-width: 768px) {

  /* HERO FIX */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    background: #000; /* remove split image */
  }

  .hero-text {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  /* HOURS FIX */
  .hours-overlay {
    position: static;
    transform: none;
    margin-top: 20px;
    width: 100%;
    max-width: none;
	display:none;
  }

  /* SERVICES FIX */
  .services {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 95%;
    max-width: 400px;
  }

  /* BUTTON FIX */
  .btn {
    display: block;
    width: 90%;
    margin: 10px auto;
  }

  /* GALLERY FIX */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery img {
    height: 140px;
  }

  /* BACK TO TOP */
  #topBtn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;

  width: 60px;
  height: 60px;

  background: #25D366;
  color: white;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  box-shadow: 0 0 20px rgba(37,211,102,0.6);
  cursor: pointer;

  z-index: 999;

  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(37,211,102,0.9);
}
