/* General Styling */
body {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Background Image Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0.6);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Navbar Styling */
.navbar-dark {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.navbar-text {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 15px;
  transition: color 0.3s ease-in-out;
}

.navbar-text:hover {
  color: #A3B18C; /* Light Olive Green */
}

/* Page Title */
.page-title {
  font-size: 64px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #A3B18C; /* Light Olive Green */
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 767px) {
  .page-title {
    font-size: 40px;
  }
}

/* Page Description */
.page-description {
  max-width: 600px;
  font-size: 18px;
  margin: 10px auto 20px;
  opacity: 0.85;
  line-height: 1.6;
}

/* Contact Links */
.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 0;
}

.contact-container a {
  color: #A3B18C; /* Light Olive Green */
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  margin: 8px 0;
  transition: color 0.3s ease-in-out;
}

.contact-container a:hover {
  color: #ffffff;
}

/* Social Media Icons */
.footer-social-links {
  margin-top: 20px;
}

.social-link {
  display: inline-block;
  text-align: center;
  line-height: 45px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: #A3B18C; /* Light Olive Green */
  font-size: 22px;
  margin: 0 8px;
  transition: all 0.3s ease-in-out;
}

.social-link:hover {
  background-color: #A3B18C; /* Light Olive Green */
  color: #ffffff;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .page-description {
    font-size: 16px;
  }

  .navbar-text {
    font-size: 16px;
  }
}
