/* Navbar Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #212529;
    color: #fff;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 50px; /* Increase gap between nav items */
    margin: 0 auto; /* Centers the links */
    padding: 0;
  }
  
  .nav-links li {
    display: inline-block;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
  }
  
  .logo-container {
    flex: 1;
  }
  
  .contact-btn {
    padding: 10px 20px;
    background: #551a1a;
    border-radius: 20px;
    color: white;
    text-align: center;
    font-size: 16px;
    margin-left: 40px;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      display: none;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    background: black;
    padding: 10px;
    list-style: none;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      background: black;
      width: 100%;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  
  /* Logo */
  .logo-container {
    flex: 1;
  }
  .logo {
    font-size: 18px;
    font-weight: bold;
  }
  
  .logo {
    width: 10%;
  }
  
  /* Navbar Links */
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin: 0 15px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    color: #72676f;
  }
  
  .contact-btn {
    background: #412227;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .contact-btn:hover {
    background: #391e22;
  }
/* Fade out effect */
.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
body {
  background-color: black; /* Set background to black */

}

.image-container {
  display: flex;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  height: 100vh; /* Full viewport height */
  margin: 0;
}

.image-container img {
  max-width: 100%; /* Ensures responsiveness */
  height: auto;
}


@media (max-width: 768px) {
  .calendar-image {
    width: 90%; /* Makes it smaller on mobile */
  }
}

/* Fade in effect */
body {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
