
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('/assets/img/360_F_310004733_dxjpd9aniybFQMdweHFdljMhwJ6nfys9.jpg') no-repeat center center;*/
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.01); /* White overlay with 50% opacity */
    mix-blend-mode: lighten; /* Optional: blend the overlay with the image */
    z-index: -1;
    pointer-events: none; /* Ensure the background doesn’t block interactions */
    color: var(--text-col);
  }

/* This is added to modify the inital margins defined by the beautiful jekyll theme. container-md is identified through inspection of the site */
.home-container {
  width: 100%;           /* Takes up 100% of the available width */
  max-width: 4000px;     /* Maximum width, so it doesn’t grow too wide */
  margin: 0 auto;        /* Centers the container horizontally */
  padding: 0 15px;       /* Small padding inside (optional) */
  text-align: center;    /* Center the text inside the container */
}

/* Another container with the same settings */
.container-md {
  width: 100%;           /* Takes up 100% of the available width */
  max-width: 40000px;     /* Maximum width */
  margin: 0 auto;        /* Centers the container horizontally */
  padding: 0 15px;       /* Small padding inside (optional) */
  text-align: center;    /* Center the text inside the container */
}

/* _sass/custom.css.scss */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

.scroll-section {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.centered-video {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/*
.right-nav {
  position: fixed;
  right: 0;
  top: 20px;
  background-color: var(--navbar-col);
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-left: 1px solid var(--navbar-border-col);
}*/

#recommendation-form {
  display: flex;
  flex-direction: column;
  width: 300px;
}

#recommendation-form input {
  margin-bottom: 10px;
  padding: 5px;
}

#recommendation-form button {
  padding: 8px 12px;
  cursor: pointer;
}

/* Movie Recommendation Styles */
.movie-recommendation-container {
  max-width: 500px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 8px;
  text-align: center;
}

.recommendation-input {
  display: flex;
  margin-bottom: 15px;
}

#movie-input {
  flex-grow: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
}

#recommend-button {
  padding: 10px 15px;
  background-color: #fd97db;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#recommend-button:hover {
  background-color: #c94bff;
}

#recommendation-display {
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
}

ul, ol, li {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

table, th, td {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}