/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* page translate style start */

.notranslate {
    display: block;
} 
.gt-current-lang {
    display: none;
}

/* page translate style end */

.page-header {
    display: none;
}

@media(max-width: 767px) {
.custom-video .elementor-custom-embed-image-overlay img{
	height: 500px;
}
}

/* section 1 */
.grid-container {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    width: 100%;
    column-gap: 35px;
    overflow: hidden;
    height: 510px;
    margin: 20px 0px 0 -30px;
    padding: 0  75px 0 0;
}

.grid-item {
    width: 20%;
    height: 600px;
    transform: rotate(15deg);
    margin-top: -45px;
    position: relative;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    background: rgba(0, 0, 0, 0.35);
    transition: opacity 0.3s ease;
    text-align: center;
    padding-bottom: 60px;
}

.hover-content h3 {
    color: #0EB7B1;
    margin-bottom: 10px;
    font-size: 18px;
    font-family: "Syne", Sans-serif;
    transform: rotate(-15deg);
    display: none;
}

@keyframes moveToCenter {
    0% { bottom: 0; }
    100% { bottom: 40%; }
}

@keyframes moveBackDown {
    0% { bottom: 40%; }
    100% { bottom: 0; }
}

.grid-item:hover .hover-content {
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease;
}

.grid-item .hover-content h3,
.grid-item .play-button {
    position: relative;
    bottom: 0;
    transition: transform 1.5s ease, bottom 1.5s ease;
}

.grid-item:hover .hover-content h3 {
    display: block;
    animation: moveToCenter 1s forwards;
    transform: rotate(-15deg);
}

.grid-item:hover .play-button {
    animation: moveToCenter 1s forwards;
    transform: rotate(-15deg);
}

.grid-item:not(:hover) .hover-content h3,
.grid-item:not(:hover) .play-button {
    animation: moveBackDown 1.5s forwards;
    transform: rotate(-15deg);
}


.play-button {
    padding: 10px 20px;
    background-color: #0EB7B1;
    color: #fff;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    transform: rotate(-15deg);
    text-decoration: none;
}

a:active, a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .grid-container {
        justify-content: space-between;
        height: 579px;
        margin: 20px 0px 0 0px;
        padding: 0 0 0 0;
    }
    .grid-item {
        width: 45%;
        height: 250px;
        margin-top: 20px;
    }
    .play-button {
        padding: 5px 8px;
        font-size: 12px;
    }
   
}
@media (max-width: 1024px) {
    .grid-container {
        justify-content: space-between;
        height: 579px;
        margin: 20px 0px 0 0px;
        padding: 0 0 0 0;
    }
    .grid-item {
        width: 45%;
        height: 250px;
        margin-top: 20px;
    }
   
}

/* section 1 end */

/* book page */
.book-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    width: 100%;
    overflow: hidden;
    height: auto;
    justify-items: center;
}

.book-item {
    width: 100%;
    max-width: 400px;
    height: 500px;
    transform: rotate(15deg);
    position: relative;
    overflow: hidden;
    margin-top: 46px;
    margin-bottom: 43px;
}

.book-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.book-item:hover img {
    transform: scale(1.1);
}

.book-item:hover .hover-content {
    opacity: 1;
}

@media (max-width: 767px) {
    .book-container {
        justify-content: space-between;
        height: 579px;
    }
    .book-item {
        width: 80%;
        height: 228px;
        margin-top: 20px;
        margin-bottom: 0px;
    }
}


/* book page end */

/* section 2 */

.offers-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    margin: 20px 0;
}

.offer-item {
    background: #020716;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 10px;
}

.offer-thumbnail img {
    width: 20%;
    height: auto;
    margin-bottom: 15px;
    margin-top: 30px;
}

.offer-title {
    font-size: 1.25em;
    font-family: "Syne", Sans-serif;
    margin-bottom: 20px;
    color: #fff;
}

.offer-button .btn {
    background-color: #0EB7B1;
    color: #fff;
    font-family: "Syne", Sans-serif;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .offers-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .offers-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .offers-list {
        grid-template-columns: 1fr;
    }
}

/* section 2 end */




/* About page  */
.cstm_breadcrumbs {
	list-style: none;
    padding: 0 !important;
    margin: 0;
    display: flex;
}
ul.cstm_breadcrumbs {
    padding: 0px;
}
.cstm_breadcrumbs li, .cstm_breadcrumbs li a {
	display: inline;
    margin-right: 5px;
    text-decoration: none;
	font-family: "Archivo", Sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    color: #fff;
}
.cstm_breadcrumbs li a:hover {
    text-decoration: underline;
}



/* single page */
.post-categories {
    color: white !important;
    background-color: #0EB7B1;
    border-radius: 50px;
    width: 14%;
    text-align: center;
    padding: 2px;
    margin-top: 20px;
    font-size: 18px;
    font-family: "Syne", Sans-serif;
   
}
.post-categories a{
    color: #fff !important;
    
}
.full-post{
    background-color: #040e2c;
    margin: 0;
    padding-top: 40px;
}
.header-header{
    color: #0EB7B1;
    font-size: 56px;
    font-family: "Syne", Sans-serif;
   
}
.header-header h1{
    font-size: 56px;
    font-family: "Syne", Sans-serif;
    margin-bottom: 35px;
}

.content{
    color: #fff;
    font-size: 16px;
    font-family: "Syne", Sans-serif;
    margin-top: 35px;
   padding-bottom: 50px;
}

@media (max-width:767px) {
    .header-header h1{
        font-size: 25px;
    }
    .post-categories {
        width: 30%;
    }
}



.contact-info {
    list-style: unset;
    padding: 10px 5px;
}
.contact-info .phone, .contact-info .email, .contact-info .address,.contact-info .working-hours {
display: flex;
    gap: 10px;
}
/* .contact-info li img {
    color: #000;
    filter: brightness(0);
} */
.contact-info .directions, .contact-info .reservation-note {
list-style: none;
    color: #767676;
}



/* gallery page */

/* photo */
.photos-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; 
    width: 100%;
   
}

.photo-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.photo-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease; 
}

.photo-item:hover .photo-thumbnail img {
    transform: scale(1.1); 
    filter: grayscale(0%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-item:hover .overlay {
    opacity: 1;
    transform: scale(1.1);
    background-color: #000;
}

@media (max-width: 767px) {
    .photos-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* videos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; 
   
}

.video-item {
    overflow: hidden;
    position: relative;
    object-fit: cover;
}

.video-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
  
}

.video-item img:hover {
    transform: scale(1.1);
    filter: grayscale(0%); 
}

.video-item a {
    display: block;
    text-align: center;
    color: #333;
    text-decoration: none;
}
@media (max-width: 767px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* custom reapeter faq */
.accordion {
    margin-top: 10px;
}

.accordion-item {
    margin-bottom: 20px !important;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    width: 91%; 
    margin: 0 auto;
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s);
}

.accordion-item:hover {
    box-shadow: 0px 0px 10px 0px #5C81F1;
}
.accordion-button {
    width: 100%;
    background-color: transparent !important;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: background-color 0.3s ease;
}

.accordion-arrow {
    width: 25px;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    background-color: transparent !important;
    transition: max-height 0.3s ease-out;
    color: #fff;
}

.accordion-content p {
    margin: 10px 0;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.custom-repeater h3 {
    color: #0EB7B1;
    font-size: 50px;
    text-align: center;
    font-family:"Syne", Sans-serif;
}
.custom-repeater{
    padding-top: 50px;
    padding-bottom: 50px;
    width: 1300px;
    margin: 0 auto;
}
.game-post{
    background-color: #040e2c;
}
@media (max-width: 767px) {
    .custom-repeater{
        width: 100%;
        margin: 0 auto;
}
.accordion-item {
    width: 85%; 
}
}
@media (max-width: 1300px) {
    .custom-repeater{
        width: 100%;
        margin: 0 auto;
}
.accordion-item {
    width: 85%; 
}
}


/* testimonials */

.testimonials-carousel{
    width: 1300px;
    margin: 0 auto;
}
.shortcode-container h2{
    color: #0EB7B1;
    font-size: 50px;
    text-align: center;
    font-family:"Syne", Sans-serif;

}
.shortcode-container {
    background-color: #040e2c;
    padding: 10px;
}
.testimonial-image img {
    border-radius: 100%;
    width: 23%;
    border: 3px solid #fff;
    margin-top: -60px;
}
.testimonials-list{
    margin: 10px;
    padding: 20px;
}
.testimonial-item {
    background-color: #020716;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    margin-top: 50px;
    min-height: 250px;
}
.testimonial-content h3 {
    font-size: 30px;
    color: #0EB7B1;
    margin-top: 20px;
    font-family:"Syne", Sans-serif;
}
.testimonial-content p{
    font-size: 17px;
    font-family:"Syne", Sans-serif;
    color: #fff;
}

@media (max-width: 767px) {
    .testimonials-carousel{
        width: 100%;
        margin: 0 auto;
    }
    .testimonials-list {
        margin: 10px 10px 35px 10px;
        padding: 20px;
    }
    .testimonial-image img {
        width: 30%;
    }
}
@media (max-width: 1300px) {
    .testimonials-carousel{
        width: 100%;
        margin: 0 auto;
    }
    .testimonials-list {
        margin: 10px 10px 35px 10px;
        padding: 20px;
    }
    .testimonial-image img {
        width: 30%;
    }

}