/*
Theme Name: NEKO
Theme URI:
Author: Digital Documents Solution
Author URI:
Description: Starter Theme with Font Awesome and Bootstrap 4
Version: 0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, sticky-post, translation-ready
Text Domain: neko

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/



body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.main-content{
  flex:1;
}

body, p, h1 {
    margin: 0;
}

/* Add this to the end of your existing CSS */

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.7);  
  color: #fff;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  z-index: 1002; /* Ensure it's above the video */
}


/* Add this to the end of your existing CSS */

#banner {
  position: relative;
  z-index: 0; /* Ensure banner is below the video modal */
}

#videoModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); 
  z-index: 1;
}

#plyr-container {
  position: relative;
  max-width: 800px; 
  width: 100%;
  margin: 0 auto; 
  top: 50%;
  transform: translateY(-50%);
}

.main-video {
  width: 100%;
  height: 100%;
}

.modal video {
  max-width: 100%;
  max-height: 90vh; 
}


.overlay-content {
  position: relative;
  z-index: 2; /* Ensure overlay content is above the video */
  text-align: center;
}

.heading {
  text-align: center;
}

#closePopup:hover {
    background-color: black !important;
    color: white;
}

/* Additional styles for mobile version */
@media screen and (max-width: 768px) {
  
  .open-video-btn {
      top: 10px;
      right: 10px;
      font-size: 14px;
      padding: 8px;
  }

  .close {
      top: 5px;
      right: 10px;
      font-size: 20px;
  }
}



