/* Logo styles */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
  }
  
  .site-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(59, 193, 199, 0.5));
    transition: transform 0.3s ease;
  }
  
  .site-logo:hover {
    transform: scale(1.05);
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Notification styles */
  .notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(15, 43, 63, 0.9);
    border: 1px solid rgba(59, 193, 199, 0.5);
    border-radius: 8px;
    padding: 15px 20px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transform: translateX(120%);
    transition: transform 0.3s ease-out;
  }
  
  .notification.show {
    transform: translateX(0);
  }
  
  .notification-content {
    display: flex;
    align-items: center;
  }
  
  .notification-content p {
    margin: 0;
    font-family: 'Cormorant', serif;
    letter-spacing: 0.05em;
  }
  
  /* Top Navigation Menu */
  .top-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
  }
  
  .nav-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Cormorant', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: rgba(15, 43, 63, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 193, 199, 0.2);
  }
  
  .nav-item:hover {
    color: #ffffff;
    background-color: rgba(59, 193, 199, 0.2);
    border-color: rgba(59, 193, 199, 0.5);
    transform: translateY(-2px);
  }
  
  .nav-item::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #3bc1c7;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .nav-item:hover::after {
    width: 80%;
  }