
/* Simple custom styles */
body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; }
.logo { height:32px; width:auto; margin-right:8px; }
.hero {
  min-height:60vh;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('assets/images/hero-bg.jpg') center/cover no-repeat;
  padding: 6rem 0;
}
.card { border: none; }


.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: pulse 2s infinite;
}
.youtube {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/b/b8/YouTube_Logo_2017.svg');
  background-color: white;
  border: 2px solid red;
}
.whatsapp {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg');
  background-color: white;
  border: 2px solid #25D366;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}


body {
  background-image: url('../img/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
