/* Video setup */
html {
	
    background: #010101;
}

.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-3xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6 {

    font-family: "Cinzel", serif;

}
.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
	
}
.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop: video sticks to right side */
@media (min-width: 960px) {
  .video-background video {
    object-fit: cover;
    object-position: right center;
    width: 50vw;      /* occupies right half */
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
  }

  .home-content {
	  
    font-family: "Cinzel", serif;
    font-family: "Quicksand", serif;
    position: relative;
    z-index: 2;
    width: 50vw;       /* left half */
    padding-left: 4rem;
	height: 100vh;
    color: #fff;
  }
#main-logo {
    margin: 0 auto 0 0;
}  
  
}

/* Mobile: video fills entire background */
@media (max-width: 959px) {
  .video-background video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
  }

  .home-content {
    text-align: center;
    padding: 2rem;
    color: #fff;
  }
  
main.pre-main {
    display: flex;
    align-items: end;
    justify-content: center;
}  

}

/* Common styling */
.scroll-menu {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.scroll-menu li{
  color: #aaa;
  margin: 5px 0;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
}
.scroll-menu a {
  color: #eee;
}
.logo {
  max-height: 120px;
}

.footer-links ul {
  list-style: none;
  gap: 15px;
  padding: 0;
}

.footer-links a {
  color: #eee;
}
/* Create a custom scale-down animation */
@keyframes custom-scale-down {
  0% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.uk-animation-custom-scale-down {
  animation-name: custom-scale-down;
  animation-duration: 1.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
.pre-main {
    background: #000;
}

/* Accessibility: visible skip link and focus styles */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 10000;
}

/* Improve focus visibility for interactive elements */
a:focus, button:focus, input:focus {
  outline: 3px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
}
.text-component {
    p {
        margin: 5px 0 0 0;
    }
	
}