/* Reset & Base Styles */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden; /* Prevents scrolling */
}

/* Full-Screen Background Images */
body {
  background-image: url('desktop-bg.jpg'); /* Default (desktop) */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile Background (Shows on screens ≤ 768px) */
@media (max-width: 768px) {
  body {
    background-image: url('mobile-bg.jpg');
  }
}

/* Social Icons (Top-Right) */
.social-icons {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
}

.social-icons a {
  color: white; /* Change color as needed */
  font-size: 24px;
  margin-left: 15px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.social-icons a:hover {
  opacity: 0.7;
}