/* Galleria Page Styles */

.galleria-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #1c1d17;
  font-family: 'Montserrat', sans-serif;
}

.galleria-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background */
.galleria-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.galleria-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Content */
.galleria-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* Logo */
.galleria-logo {
  margin-bottom: 24px;
}

.galleria-logo-image {
  width: 401px;
  height: 90px;
  display: block;
}

/* Subtitle */
.galleria-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 540;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fafaf8;
  margin: 0;
  white-space: nowrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .galleria-logo-image {
    width: 280px;
    height: auto;
  }

  .galleria-subtitle {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  .galleria-logo-image {
    width: 200px;
    height: auto;
  }

  .galleria-subtitle {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
  }
}
