/* Global Styles */
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}
/* Nested Dropdown Styling */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  right: 100%;
  margin-top: -1px;
  display: none;
  position: absolute;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.hero {
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 6px 4px 4px black;
  padding: 100px 0;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.25rem;
}

.card-img-top {
  height: 400px;
  object-fit: cover;
}

.footer {
  background-color: #0d1a26;
  text-align: center;
  color: #ffffff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3 {
  margin-bottom: 10px;
}

.footer p, 
.footer a {
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  transition: transform 0.2s, color 0.2s;
}

.social-links a:hover {
  transform: scale(1.05);
  color: #1db954; /* optional accent on hover */
}

.social-links img {
  width: 24px;
  height: 24px;
  filter: invert(1); /* make icons white if they are solid black */
}

.social-links-get img {
  width: 24px;
  height: 24px;
  filter: invert(0);
}

.footer-bottom {
  margin-top: 30px;
  font-size: 14px;
  text-align: center;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .social-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-links a {
    gap: 8px;
  }
}
