/* ================================
   JLANCE Solar Street Lights Page
   Color Palette:
   Dark Blue: #0d2c54
   Light Blue: #247ba0
   White: #ffffff
   ================================ */

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0d2c54;
  color: #ffffff;
  text-align: center;
}

.container {
  max-width: 400px;
  margin: auto;
  padding: 20px;
}

/* Logo */
.logo img {
  width: 100px;
  margin: 20px auto;
  display: block;
}

/* Title */
h1 {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0;
  line-height: 1.4;
}

/* Social Links */
.social-links {
  margin: 15px 0;
}

.social-links a {
  color: #ffffff;
  font-size: 22px;
  margin: 0 8px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #247ba0;
}

/* Buttons */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 25px 0;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 30px;
  background-color: #247ba0;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}


.btn:hover {
  background-color: #1a5d77;
  transform: translateY(-2px);
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 12px;
  color: #cccccc;
}

.logo img {
  transition: transform 0.3s ease; /* smooth animation */
  cursor: pointer; /* shows hand when hovering */
}

.logo img:hover {
  transform: scale(1.1); /* zooms in slightly */
}
