:root {
    --primary-color: #d4af37; /* Gold color for luxury */
    --secondary-color: #2c3e50; /* Requested background color */
    --text-color: #f5f5f5;
    --accent-color: #e5e5e5;
    --card-bg: #ffffff;
  }

  .header {
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(44, 62, 80, 0.9));
    color: var(--text-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    height: 90px;
    position: sticky;
    top: 0;
    z-index: 50;
  }
  
  .header-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .brand-name {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  
  
  .logo {
        width: 120px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: transform 0.3s ease;
        filter: drop-shadow(0 0 5px var(--primary-color));
    }
  
    .logo:hover {
        transform: translateX(-50%) scale(1.1);
    }
  
  .nav-menu {
    display: none;
  }
  
  .nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    margin-left: 32px;
    padding-bottom: 4px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .nav-menu a:hover {
    color: var(--primary-color);
  }
  
  .nav-menu a:hover:after {
    width: 100%;
  }
  
  .mobile-menu-btn {
    display: block;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
  }
  
  @media (min-width: 768px) {
    .nav-menu {
      display: flex;
      align-items: center;
    }
    .mobile-menu-btn {
      display: none;
    }
  }


  /* Footer Styles */
  footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
    padding: 50px 0 20px;
  }
  
  .footer-heading {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .footer-link {
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 10px;
  }
  
  .footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
  }
  
  .social-icons {
    display: flex;
    margin-top: 20px;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: var(--primary-color);
    color: #2c3e50;
    transform: translateY(-3px);
  }
  
  /* Pagination Styles */
  .pagination-btn {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .pagination-btn:hover:not(:disabled) {
    background-color: var(--primary-color);
    color: #2c3e50;
  }
  
  .pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .page-info {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    min-width: 100px;
    text-align: center;
  }