/* General Reset */
body { 
  
  margin: 0;
  font-family: 'Inter', sans-serif; /* A clean, modern look */
 /* Your Background Image Settings */
  background-image: url('https://i.postimg.cc/g2PW1qVQ/IMG-4663.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh; 
}

/* Navbar Styling */
.navbar {
  /* This is a dark grey with 80% transparency */
  background-color: rgba(26,26,26, 0.9); 
  backdrop-filter: blur(10px); /* This creates a beautiful "frosted glass" effect */
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  height: 60px;
}

  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  height: 60px;
}

/* Logo Area */
.logo a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  padding: 0 15px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff; /* Brighten on hover */
}

/* Dropdown Logic */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none; /* Hidden by default */
  position: absolute;
  background-color: #222;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
  top: 100%;
  left: 0;
  padding: 10px 0;
  list-style: none;
  z-index: 1;
}

.dropdown-content li a {
  padding: 10px 20px;
  display: block;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.site-footer {
  background-color: black;
  color: white;
  padding: 40px 5%;
  margin-top: 50px; /* Pushes it away from the content above */
  font-family: 'Inter', sans-serif;
  border-top: 1px solid #333; /* Adds a subtle "luxe" divider line */
}







.site-footer { 
  /* This is your specific 80% transparent dark grey */
  background-color: rgba(26, 26, 26, 0.8); 
  
  /* This adds the high-end blur effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 

  color: white;
  padding: 40px 5%;
  margin-top: 50px;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* A softer divider for transparency */
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Helps it look good on mobile phones */
}

.footer-links li {
  margin: 0 15px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white; /* Brightens when you hover over it */
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}