/* Xmas Image Styling */
.xmas img {
  width: auto;
  height: 100px;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Setup for Sticky Footer */
body {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  min-height: 100vh; /* Full viewport height */
  background-color: #f8f9fa; /* Light background */
  font-family: Arial, sans-serif; /* Clean font */
  padding: 3%;
}

/* Main Content Placeholder */
.main-content {
  flex: 1; /* Pushes the footer to the bottom */
}

/* Footer Styling */
footer {
  text-align: center;
  background-color: #fff;
  padding: 20px 30px;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1); /* Shadow at the top of the footer */
  border-radius: 10px 10px 0 0; /* Rounded top corners */
  max-width: 100%; /* Full-width footer */
  width: 100%;
  margin-top: auto; /* Push footer to the bottom */
}

/* Footer Text */
.rights {
  padding: 10px 0;
  font-size: 14px;
}

/* Links Styling */
footer a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
  padding: 0 5px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #00509e;
  text-decoration: underline;
}

/* Social Icons List */
.social-icons {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin: 10px 0;
}

/* Social Icons */
.social-icon {
  font-size: 24px;
  color: #333;
  transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
  color: #0077cc;
  transform: scale(1.2);
}
