.container {
  max-width: 960px;
}

/*
   * Custom translucent site header
   */

.site-header {
  background-color: rgba(0, 0, 0, .85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.site-header a {
  color: #999;
  transition: ease-in-out color .15s;
  font-size: 1.25rem;
}

.site-header a:hover {
  color: #fff;
  text-decoration: none;
}


/*
   * Extra utilities
   */

.border-top {
  border-top: 1px solid #e5e5e5;
}

.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

.flex-equal>* {
  -ms-flex: 1;
  -webkit-box-flex: 1;
  flex: 1;
}

@media (min-width: 768px) {
  .flex-md-equal>* {
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
  }
}

.overflow-hidden {
  overflow: hidden;
}


/* My CSS */

.wsite-background.wsite-custom-background {
  background-size: cover !important;
}

.wsite-background {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../imgs/bg/homepage_banner.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-marble {
  background-color: #1b1311;
}

.bg-accessories {
  background-color: #3b1a07;
}

.subtitle{
  opacity: 1;
  transition: opacity 2s ease-in-out;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

.content-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.main-content {
  max-width: 800px;
  margin: 0 auto;
}

.subtitle {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto;
  max-width: 600px;
}

.admin-panel {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.user-controls, .guest-controls {
  margin-top: 2rem;
}

.gap-3 {
  gap: 1rem;
}

/* Ensure toasts appear above other content */
.toast-container {
  z-index: 9999; 
}