.header {
    background-color: #1b1b1b;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100px;
    font-family: "Days One";
    position: fixed;
    top:0;
    z-index: 10000; 
    width: 100%;
    
}

.header-left img {
    width: 150px;

}

.header-left {
    margin-left: 5%;
}

.header-right {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 1.5%;
    width: 700px;
    margin-right: 5%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "WDXL Lubrifont JP N", sans-serif;
    background-color: rgb(34, 34, 34);
}

.menu {
    color: aliceblue;
    text-decoration: none;
    font-size: 25px;
    margin-right: 2%;
}

.menu:hover {
    text-decoration: underline;
}

.photo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.photo-grid img {
    width: calc(33.33%);
    height: auto;
    object-fit: cover;
}

.banner {
    background-image: url("фон1.png");
    background-repeat: no-repeat;
    height: 900px;
    width: 100%;
    z-index: 40;
}

.russia {
    z-index: 50;
    margin-left: 2%;
    margin-top: 13%;
    color: aliceblue;
    text-align: center;
    opacity: 0;   
    animation: fadeIn 7s forwards; 
    font-family: "Days One";
}

@keyframes fadeIn {
    from {             
        opacity: 0;
    }
    to {               
        opacity: 1;
    }
}

.second-block {
    text-align: center;
    margin-top: 25%;
}

.text-grid {
    display: flex;
    flex-direction: column;
    justify-items: center;
    max-width: 100%; 
    margin: 0 auto; 
    font-size: 30px;
}

.text-grid-up {
    display: flex;
    flex-direction: row;
    margin-top: 1%

}

.text-grid-down {
    display: flex;
    flex-direction: row;
}

.red-square {
    background-color: #911612;
    color: white;
    padding: 20px;
    width: calc(33.33%);
    height: 447px;
}



.gray-square {
    background-color: #efefef00;
    color: aliceblue;
    padding: 20px;
    width: calc(33.33%);
    height: 447px;
}

.text-grid p {
    font-size: 20px; 
    line-height: 1.5; 
    font-weight: normal; 
    font-size: 30px;
}

@media screen and (max-width: 768px) {
    .text-grid {
        grid-template-columns: 1fr;
    }
}



.phone img {
    position: absolute;
    width: 1000px;
    z-index: -2;
    transition: transform 0.5s ease;
}

.phone {
    margin-left: 15%;
    z-index: -1;
    margin-top: -15%;
    top: 10%; 
    left: 15%; 
    z-index: -1; 
}


.text-one {
    color: aliceblue;
    z-index: 3;
    margin-left: 6%;
    font-family: "Days One";
}

.text-two {
    color: aliceblue;
    z-index: 3;
    margin-left: 50%;
    text-align: center;
    margin-top: -10%;
    font-family: "Days One";
}

.qr {
    margin-left: 65%;
}

.footer {
    background-color: #1b1b1b;
    height: 160px;
    color: aliceblue;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2%;
    
}

.footer-right {
    padding-top: 2%;

}

.footer img {
    margin-left: 2%;
    width: 150px;
    height: 120px;
}

.gallery {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 0%;
}

.gallery-only {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2%;
}

.gallery-up {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.gallery-down {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 0%;
}

.gallery-food {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 3%; 
}

.block {
    width: calc(33.33%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    text-decoration: none;
}

.pic img {
    width: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter 0.3s ease-in-out;
}

.pic:hover img {
    filter: brightness(40%);
}

.pic:hover .content {
    opacity: 1; 
}

.pic:hover {
    transform: scale(1.05); 
}

.film img {
    width: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter 0.3s ease-in-out;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    text-align: center;
}

.film:hover img {
    filter: brightness(40%);
}

.film:hover .content {
    opacity: 1; 
}

.film:hover {
    transform: scale(1.05); 
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: "Days One";
}

p {
    font-size: 25px;
    line-height: 1.5;
}

.pushkin-first {
    position: relative;
    overflow: hidden;
    margin-left: 5%;
    margin-top: 7%;
}

.pushkin-first img {
    object-fit: cover;
}

.text-right {
    position: absolute;
    top: 45%;
    left: 65%;
    transform: translate(-50%, -50%);
    padding: 20px;
    color: white;
    text-align: left;
    font-size: 25px;
    z-index: 1;
}

.text-right p {
    font-size: 30px;
}

.text-right img {
    height: auto;
    margin-bottom: 10px;
}

.text-right button {
    background-color: rgb(34, 34, 34);
    border: none;
    color: aliceblue;
    font-size: 80px;
    margin-left: 65%;
    margin-top: 5%;
}

.text-right button:hover {
    background-color: rgb(34, 34, 34);
    border: none;
    color: aliceblue;
    transform: scale(1.5);
}

.second-pushkin {
    padding: 20px;
    color: aliceblue;
    width: 70%;
    font-size: 50px;
    margin-left: 15%;
    margin-top: 5%;
    margin-bottom: 5%;
    height: 700px;
    padding-top: 7%;
}

.second-pushkin p{
    font-size: 25px;
}

.hidden-text {
    opacity: 0;
    transition: opacity 5s ease;
}

.hidden-text.visible {
    opacity: 1;
}

.footer{
    height: 500px;
    font-size: 30px;
}

.map {
    margin-left: 30%;
    margin-top: 2%;
}

.footer-right {
    margin-top: 5%;
    margin-right: 5%;
    width: 50%;
}


.footer-right a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    cursor: pointer;

}

.footer-right a:hover {
    text-decoration: underline;
}

.animated-image {
    animation: fadeIn 2s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


.sale {
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    text-decoration: none;
    margin-bottom: -3%;
}

.sale p{
    font-size: 25px;
}

.sale img {
    width: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter 0.3s ease-in-out;
}


.sale:hover img {
    filter: brightness(40%);
}

.sale:hover .content {
    opacity: 1; 
}

.sale:hover {
    transform: scale(1.05); 
}

.carousel-item img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
}

.carousel-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    width: 100%;
}

.carousel-caption {
    color: white;
    font-size: 1.5em;
    text-shadow: 2px 2px 4px #000000; 
    z-index: 2;
    position: absolute;
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%); 
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    filter: brightness(0) invert(1);
}

.activities h1{
    color: aliceblue;
    text-align: center;
    font-size: 50px;
    font-family: "Days One";
}

.game-zone h2{
    color: aliceblue;
    font-size: 40px;
    text-align: left;
    font-family: "Days One";
}

.bar h2 {
    color: aliceblue;
    font-size: 40px;
    text-align: left;
    font-family: "Days One";
}

.bar {
    margin-left: 5%;
    margin-top: 5%;
}

.game-zone {
    margin-top: 5%;
}


.game-zone h3 {
    color: aliceblue;
    font-size: 35px;
    text-align: center;
    width: 1200px;
    font-family: "Days One";
    margin-left: 20%;
}

.game-zone h4{
    color: aliceblue;
    font-family: "Days One";
    font-size: 25px;
    text-align: left;
    margin-top: 5%;
}

.info {
    margin-left: 5%;
    width: 1400px;
    z-index: 20;
    position: absolute;
    font-size: 25px;
    margin-top: 2%;
}


.inform {
    margin-left: 30%;
    width: 1200px;
    z-index: 20;
    position: absolute;
    font-size: 25px;
    margin-top: 10%;
}

.game-zone img {
    width: 500px;
    z-index: -1;
    position: relative;
    margin-top: 5%;
     opacity: 0;          
    transform: scale(0.8);
    animation: appearAndGrow 1s forwards; 
}

@keyframes appearAndGrow {
    from {
            opacity: 0;
            transform: scale(0.8);
        }
    to {
            opacity: 1;
            transform: scale(1);
        }
}

.carousel {
    width: 60%; 
    margin-bottom: 5%;
    margin-left: 20%;

}

.carousel-item img {
    height: 600px; 
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px; 
    height: 50px; 
    margin-top: 30%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px; 
    height: 40px; 
}


.container {
    margin: 20px auto;
    width: 400px;
    margin-left: 25%;
}

.screen {
    background-color: #9c9c9c;
    height: 10px;
    width: 100%;
    margin-bottom: 15px;
    box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.1);
    margin-left: 25%
}

.row {
    display: flex;
    justify-content: center;
    width: 600px;
}

.seat {
    background-color: brown;
    height: 30px;
    width: 30px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 3px 3px 5px#000000;
}

.seat.selected {
    background-color: #490606;
}

.seat.occupied {
    background-color: #fff;
    cursor: not-allowed;
}

.movie-container {
    margin: 20px auto;
    text-align: center;
    border-radius: 20px;
 }

.text {
    margin-top: 30px;
    font-size: 25px;
    color: aliceblue;
    margin-left: 50%;
    }

.pay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.times button:focus {
background-color: #5e0b0bad;
}

.date button {
    background-color: #911010ad;
    border-radius: 5px;
    border: none;
    color: aliceblue;
    cursor: pointer;
    margin-top: 1%;
    height: 30px;
    box-shadow: 3px 3px 5px#000000;
}

.date button:focus {
    background-color: #5e0b0bad;
}

.pay button {
    width: 300px;
}

.pay button:hover{
    transform: scale(1.1);
}

.left-container{
    display: flex;
    flex-direction: column;
    margin-left: 5%;
    color: aliceblue;
    font-size: 30px;
}

.big-cont {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 10%;
}

.food p {
    font-size: 30px;
    color: aliceblue;
}

.food-menu {
    margin-left: -10%
}

.pay button {
    background-color: #911010ad;
    border-radius: 5px;
    border: none;
    color: aliceblue;
    cursor: pointer;
    margin-top: 3%;
    height: 30px;
    box-shadow: 3px 3px 5px#000000;
}


.pay button:focus {
    background-color: #5e0b0bad;
}

.days-one-regular {
  font-family: "Days One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.time button {
    background-color: #911010ad;
    border-radius: 5px;
    border: none;
    color: aliceblue;
    cursor: pointer;
    margin-top: 1%;
    height: 30px;
    box-shadow: 3px 3px 5px#000000;
}

.about-film {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: aliceblue;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 5%;
}

.info-film {
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    text-shadow: #000000 5px 5px 5px;
}

.photo-film {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.photo-film img {
    width: 250px;
    margin-top: 2%;
    cursor: pointer;
}


.background-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: -1;
    position: absolute;
    margin-top: -17%;
    left: 0;
}

.cafe {
    margin-bottom: 3%;
}

.video {
    z-index: -2;
    position: absolute;
    width: 900px;
}

.photo-film img:hover {
    width: 250px;
    margin-top: 2%;
    transform: scale(1.1);
    cursor: pointer;
}

.cafe h2{
    color: aliceblue;
    font-family: "Days One";
    font-size: 40px;
    text-align: left;
    margin-left: 5%;
    margin-top: 5%;
}

.inform h4 {
    font-family: "WDXL Lubrifont JP N", sans-serif;
    font-size: 30px;
    margin-left: 5%;
}

.cafe h3 {
    color: aliceblue;
    font-family: "Days One";
    font-size: 35px;
    text-align: center;
    margin-left: 5%;
    margin-top: 5%;
}

.cafe p{
    color: aliceblue;
    font-size: 30px;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 3%;
}

.wdxl-lubrifont-jp-n-regular {
  font-family: "WDXL Lubrifont JP N", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bannerr {
    position: relative;
    z-index: 1; 
}

.background-vid {
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: -1;
    position: absolute;
    margin-top: -35%;
    left: 0;
}

.about-film {
        z-index: 1;
}

.video {
    z-index: -2;
    position: absolute;
    width: 900px;
}

.activities {
    margin-top: 10%;
}

