body {
    background-color: #1f1f1f;
    color: #fff;
    font-family: 'Georgia', serif;
    overflow-x: hidden;
  }
  
  .section-title {
    color: gold;
    font-weight: bold;
  }
  
  .navbar-brand img {
    max-height: 8vh;
    transform: scale(1.6);
    position: relative;
    z-index: 1001;
    padding-top: 1%;
    margin-top: 5%;
  }
  
  .gallery-item {
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  }
  
  .gallery-item:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  }
  
  .gallery-item img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .art-info {
    background-color: #0d161e;
    text-align: center;
    padding: 15px; 
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .gallery-item:hover .art-info {
    background-color: #d1bfa2;
  }
  
  .gallery-item:hover .art-title,
  .gallery-item:hover .art-price {
    color: #000;
  }
  
  .art-title {
    font-size: 1.3rem;
    color: gold;
    margin: 0;
    font-weight: bold;
  }
  
  .art-price {
    font-size: 1.1rem;
    color: gold;
    margin: 0;
  }
  
  nav.navbar {
    background: linear-gradient(to right, #17202C, #090a0f);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    overflow: visible;
  }
  
  nav a.nav-link {
    color: #fff !important;
    font-weight: bold;
  }
  
  nav a.nav-link:hover {
    color: gold !important;
  }
  
  .site-footer {
    background-color: #111;
    border-top: 2px solid #3b3b3b;
    color: #aaa;
  }
  
  .footer-link {
    color: #aaa;
  }
  
  .footer-link:hover {
    color: gold;
  }
  
  .divider {
    color: #666;
  }
  
  .basket-icon {
    height: 24px;
    width: auto;
    vertical-align: middle;
  }
  
  .basket-icon {
    height: 24px;
    width: auto;
    vertical-align: middle;
  }
  
  .privacy-container {
    background-color: #0d161e;
    color: #ddd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    line-height: 1.7;
  }
  
  .container h2 {
    font-style: italic;
    font-weight: 700;
    font-size: 2rem;
  }
  
  .privacy-container h3 {
    color: gold;
    margin-top: 25px;
    font-weight: bold;
  }
  
  .privacy-container h4 {
    color: #d1bfa2;
    margin-top: 20px;
    font-style: italic;
  }
  
  .privacy-container ul {
    list-style-type: disc;
    padding-left: 25px;
  }
  
  .privacy-container ul li {
    margin-bottom: 8px;
  }
  
  
  .doc-title {
    display: none;
  }
  
  :target {
    display: inline !important;
  }
  
  
  .basket-section {
    background-color: #1f1f1f;
  }
  
  .basket-box {
    background-color: #0d161e;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  }
  
  .basket-item {
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
  }
  
  .basket-item:last-child {
    border-bottom: none;
  }
  
  .basket-thumb {
    width: 6.3rem;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  }
  
  .text-gold {
    color: gold;
  }
  
  .btn-outline-danger {
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    background: transparent;
  }
  
  .btn-outline-danger:hover {
    background-color: #ff4d4d;
    color: #fff;
  }
  
  * {
    text-decoration: none !important;
  }
  
  
  .hero-section {
    background: url("images/hero-bg.webp") center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
  }
  
  .hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: gold;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    margin: 20px 0;
  }
  
  .btn-hero {
    font-size: 1.2rem;
    padding: 12px 35px;
    border-radius: 30px;
  }
  
  
  .info-card {
    background-color: #111;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
  }
  
  .info-card h5 {
    color: gold;
    font-weight: bold;
    margin-top: 15px;
  }
  
  .info-card p {
    color: #ccc;
  }
  
  .hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/index.webp');
  }
  
  
  .filter-bar {
    background-color: #0d161e;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  }
  
  .filter-bar .form-select,
  .filter-bar .form-control {
    background-color: #1f1f1f;
    border: 1px solid #444;
    color: #fff;
  }
  
  .filter-bar .form-select:focus,
  .filter-bar .form-control:focus {
    border-color: gold;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
  }
  
  .site-footer {
    width: 100vw !important;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  
  .gallery-item {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .art-info {
    flex-grow: 1;
  }
  .text-gold {
    color: gold;
  }
  
  .filter-bar .form-select {
    min-width: 120px;
  }
  
  .navbar-brand {
    margin-left: 1.5%;  
  }
  
  .filter-bar .form-control {
    min-width: 25vw;
  }
  
  .filter-bar {
    position: relative;
    z-index: 1002;
  }