@import "../common.css";
@import "../fontawesome.min.css";

.container {
  background-color:#fff;
}	


/* Breadcrumbs */
#breadcrumbs ul {
  list-style-type:none;
  margin:0;
  padding:0;
}
#breadcrumbs ul li{
  display:inline;
  margin-right:10px;
}


img.articleImage{
  width:100%;  
  height:auto;
  max-width:500px;
  
}


header.all-pages {
  top:0; 
}

/* Работники */
.employerPhoto{
  max-width:250px;
  width:100%;
}



/* Квадраты-ссылки для списков статей/объектов */
div.square-wrapper{

}

div.square-wrapper a.square-link{
  display:block;
  font-weight: 600;
  text-decoration:none;
  font-size: 1.5rem;
  background-color:#e2e2e2;
}


div.square-wrapper a.square-link div.square-link-img{
  width:100%;
  aspect-ratio:16/9;
  background-size:cover;
}


div.square-wrapper a.square-link div.square-link-img-wrapper{
  border:none;
}

div.square-wrapper a.square-link div.square-link-img-wrapper img{
  height:10px;
}


/* */
img.article-image {
  border: 4px solid #FFF;
  border-top-color: rgb(255, 255, 255);
  border-right-color: rgb(255, 255, 255);
  border-bottom-color: rgb(255, 255, 255);
  border-left-color: rgb(255, 255, 255);
  -moz-box-shadow: rgba(43,90,106,0.7) 0px 1px 2px;
  -webkit-box-shadow: rgba(43,90,106,0.7) 0px 1px 2px;
  box-shadow: rgba(43,90,106,0.7) 0px 1px 2px;
  max-width:500px;
  width:100%;
}

/* CINEMA */

body {
  background-color: #0a0a0a!important;
  color: #f8f8f8;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  background-color:#0a0a0a; 
  color:#fff;
}

#breadcrumbs ul li a{
  color:#fff;
}



/* Контейнер для видео - экран кинотеатра */
.video-screen {
  width: 80%;
  max-width: 1200px;
  margin: 2rem auto;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 60px #fffadd42;
}

.video-screen::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 соотношение */
}

.video-screen video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Эффект "занавеса" по бокам */
.cinema-curtains {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background: 
    linear-gradient(90deg, 
      rgba(0,0,0,0.8) 0%, 
      rgba(0,0,0,0) 10%, 
      rgba(0,0,0,0) 90%, 
      rgba(0,0,0,0.8) 100%);
}


/* Эффект "прожектора" на видео */
.video-container {
  position: relative;
}

.video-container::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(ellipse at center, 
    rgba(212, 175, 55, 0.2) 0%, 
    rgba(212, 175, 55, 0) 70%);
  z-index: -1;
  border-radius: 10px;
}

/* Стили для списка видео */
.movie-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.movie-card {
  background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
  border: 1px solid #333;
}

.movie-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.movie-poster {
  width: 100%;
  height: 0;
  padding-bottom: 150%;
  background-size: cover;
  background-position: center;
}

.movie-title {
  padding: 1rem;
  font-size: 1.2rem;
  color: var(--cinema-gold);
  text-align: center;
}


        
