body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #bfbfbf;
  color: #1a1a1a;
  overflow-y: auto;
  min-height: 100vh;
}

.site-title, .nav-link-custom, .gallery-nav a {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

.nav-link-custom, .gallery-nav a, .site-title a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 1.1rem;
  line-height: 1;
  transition: opacity 0.3s ease;
}

header .site-title {
  font-size: 1.1rem;
  line-height: 1;
}

.nav-link-custom:hover, .gallery-nav a:hover {
  opacity: 0.5;
  color: #1a1a1a;
}

.waterfall-gallery {
  display: flex;
  gap: 0;
  padding-top: 130px;
  padding-bottom: 350px;
  background-color: #bfbfbf;
  min-height: 100vh;
}

.gallery-column-a, .gallery-column-b {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.waterfall-gallery a {
  display: block;
  line-height: 0;
}

.waterfall-gallery img {
  width: 100% !important;
  height: auto !important;
  display: block;
}

@media (min-width: 768px) {
  .waterfall-gallery {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 130px;
    padding-bottom: 350px;
  }
}

@media (max-width: 767px) {
  .waterfall-gallery {
    padding-top: 180px;
    padding-bottom: 350px;
  }
}

/* Full Screen Hero Styles */

.hero-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #bfbfbf;
  box-sizing: border-box;
}

.hero-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.hero-image {
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 300px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}

@media (max-width: 768px) {
  .hero-image {
    max-width: calc(100vw - 30px);
    max-height: calc(100vh - 370px);
  }
}

@media (orientation: landscape) and (max-height: 600px) {
  .hero-image {
    max-height: calc(100vh - 250px);
  }
}

/* Floating UI */

.floating-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #bfbfbf;
  pointer-events: none;
}

.floating-header * {
  pointer-events: auto;
}

.floating-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  background: #bfbfbf;
  pointer-events: none;
}

.floating-nav * {
  pointer-events: auto;
}

/* Header spacer - no longer needed, kept for backwards compatibility */

.header-spacer {
  display: none;
}

/* Auto-hide classes - disabled, header and footer always visible */

.auto-hide {
  opacity: 1;
}

.auto-hide.hidden {
  opacity: 1;
}

/* Remove all borders and shadows globally */

.border-bottom, .border-top, .shadow-sm, .btn {
  border: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

footer {
  border: none !important;
  box-shadow: none !important;
}

footer p {
  color: #1a1a1a !important;
  opacity: 0.3;
}

input, textarea {
  background-color: transparent !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 0 !important;
  color: #1a1a1a !important;
}

