


/* Google Font  */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Mr+Dafoe&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

 /* Font Family  */
 /* font-family: "Josefin Sans", sans-serif; */


 @font-face {
    font-family: 'wasted_vindeyregular';
    src: url('../font/wasted-vindey-webfont.woff2') format('woff2'),
         url('../font/wasted-vindey-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* Default Css */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  overflow-x: hidden;
}
body{
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  color: #7e7e7e;
  font-display: swap;
  overflow: hidden;
}
ul,ol{
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,h2,h3,h4,h5,h6,p{
  padding: 0;
  margin: 0;
}
a{
  text-decoration: none;
  color: inherit;
}
img{
  width: 100%;
}
.container-fluid{
    padding: 0px 24px;
}
.container{
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0px 24px;
}
.heading1{
  font-family: "Playfair Display";
  color: rgb(255, 255, 255);
  line-height: 92px;
  letter-spacing: 0px;
  font-weight: 700;
  font-size: 92px;
}
.heading2{
  font-family: "Playfair Display";
  color: #333333;
  font-size: 56px;
  font-weight: 600;
}
.heading3{
  font-size: 24px;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s;
}
.font18px{
  text-transform: uppercase;
  font-weight: 500;
  font-style: italic;
  line-height: 35px;
  font-size: 18px;
  letter-spacing: 2px;
}

.btn1 {
    background-color: rgba(0, 0, 0, 0.75);
    cursor: pointer;
    outline: none;
    box-shadow: none;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    white-space: nowrap;
    line-height: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgb(255, 255, 255);
    padding: 16px 32px;
    transform-origin: 50% 50%;
    transform: translate(0px, 0px);
    transition: 0.3s;
}
.btn1:hover{
  background: #FFF;
  color: #000;
}

/* ===================================================================
                            Header Area CSS Start
====================================================================*/
/* Base header */
.isSticky {
  width: 100%;
  background: #FFF;
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
}

/* Sticky + animated class */
.fixedHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFF;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Animation (slide in from top) */
.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.slideInDown {
  animation-name: slideInDown;
}



.header_main{
  position: relative;
  padding: 20px 0px;
}
.header_menu{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-text{
  color: #000;
  font-size: 30px;
  font-weight: 600;
  font-family: 'wasted_vindeyregular';
}
.header_logo a img{
  height: 35px;
  max-width: 213px;
}
.header_nav nav ul{
  display: flex;
  align-items: center;
  gap: 30px 30px;
}
.header_nav nav{
  display: flex;
  align-items: center;
  gap: 0px 55px;
}
.header_nav nav ul li .menu_item{
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
  padding: 25px 0px;
}
.header_nav nav ul li .menu_item span{
  padding-left: 5px;
}
.header_nav nav ul li .menu_item:hover{
  color: #C1924A;
  transition: 0.3s;
}
.header_nav nav ul li .menu_item.active{
  color: #C1924A;
}

/*Start Mobile Menu icon*/
.mobile_menu {
	position: absolute;
	top: 50%;
  transform: translateY(-50%);
	right: 0px;
  display: none;
}
#nav-icon {
  width: 28px;
  height: 23px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}
#nav-icon span:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}
#nav-icon span:nth-child(3) {
  top: 16px;
  transform-origin: left center;
}
#nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -2px;
  left: 2px;
}
#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
  left: 2px;
}
/*End Mobile Menu icon*/

.overly{
  position: relative;
  z-index: 1;
}
.overly.active::after{
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100vh;
  width: 100%;
  background: #0000008e;
  z-index: 3;
}
.banner-slide{
  position: relative;
  z-index: 1;
}
.banner-slide::before{
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.4;
  z-index: -1;
}


/* ===================================================================
                            Banner Area CSS Start
====================================================================*/

.banner_area {
  position: relative;
  overflow: hidden;
  background: #000;
}
.banner-slide {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Background Flash Film text */
.banner-bg-text {
  position: absolute;
  top: 130px;
  left: 50%;
  z-index: 1;
  width: 100%;
  text-align: center;
  pointer-events: none; 
  z-index: 99999 !important;
}
.banner-bg-text h2 {
  font-size: 120px;
  font-weight: 600;
  line-height: 100px;
  color: #B09056; 
  text-transform: uppercase;
  letter-spacing: 10px;
  margin: 0;
  animation: fadeInUp 2s ease both;
  opacity: 1;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

/* Staggered effect */
.banner-bg-text h2:nth-child(1) {
   animation-delay: 0.2s; opacity: 1; 
}
.banner-bg-text h2:nth-child(2) { 
  animation-delay: 0.4s; 
  color: transparent;
   -webkit-text-stroke: 2px #B09056;
    opacity: 0.8 !important;
}
.banner-bg-text h2:nth-child(3) {
   animation-delay: 0.6s; 
   color: transparent; 
   -webkit-text-stroke: 2px #B09056;
   opacity: 0.6 !important;
}
.banner-bg-text h2:nth-child(4) { 
  animation-delay: 0.8s; 
  color: transparent; 
  -webkit-text-stroke: 2px #B09056; 
  opacity: 0.4 !important; 
}
.banner-bg-text h2:nth-child(5) { 
  animation-delay: 1s; 
  color: transparent; 
  -webkit-text-stroke: 2px #B09056; 
  opacity: 0.2 !important; 
}

/* Fade + Up animation */
@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateX(-50%) translateY(-30%); 
  }
  to { 
    opacity: 1; 
    transform: translateX(-50%) translateY(-50%);
  }
}



/* Actor Image */
.banner-img {
  position: absolute;
  bottom: 0;
  max-height: 100%;
  z-index: -2;
  width: 575px;
}
.banner-img img {
  max-height: 100%;
  max-width: 575px;
  object-fit: cover;
  width: 100%;
  margin: auto;
  transition: transform 0.3s ease;
}

/* smooth, GPU-accelerated transforms for images */
.banner-img img,
.banner-image,
.banner-image img {
  will-change: transform;
  transition: transform 300ms cubic-bezier(.2,.8,.2,1);
  transform-origin: center center;
  backface-visibility: hidden;
}

/* Make sure only active slide elements are visible */
.banner_area .swiper-slide {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.banner_area .swiper-slide-active {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure background text and images inside inactive slides are hidden */
.swiper-slide:not(.swiper-slide-active) .banner-bg-text,
.swiper-slide:not(.swiper-slide-active) .banner-img,
.swiper-slide:not(.swiper-slide-active) .banner-content {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.banner-content {
  margin-top: 260px;
  text-align: center;
  color: #fff;
  z-index: 10;
}

.banner-content p{
  color: rgb(255, 255, 255);
  line-height: 12px;
  letter-spacing: 6px;
  font-weight: 600;
  font-size: 12px;
}
.banner-content .heading1{
  padding-top: 20px;
  padding-bottom: 70px;
}
.banner-slider .swiper-button-next, .swiper-button-prev {
  color: #FFF;
}
.banner-slider .swiper-button-next, .swiper-button-prev {
  width: 48px;
}
.banner-slider .swiper-button-next:after, .swiper-button-prev:after {
  font-size: 30px;
}


/* ===================================================================
                            Counter Area CSS Start
====================================================================*/
.counter-area{
  padding: 80px 0px;
}
#counter{
  text-align: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
}
#counter .item{
  width: 270px;
  padding: 35px 40px;
  margin: 10px;
  text-align: center;
} 
#counter .heading2{
  padding-bottom: 30px;
  font-family: "Josefin Sans", sans-serif;
  white-space: nowrap;
}


/* ===================================================================
                            Bio Section CSS Start
====================================================================*/
/* Section */
.bio-section {
  position: relative;
  background: #fff;
  padding-bottom: 120px;
}

/* Layout */
.bio-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  max-width: 1140px;
  width: 100%;
  margin: auto;
}

/* Left image */
.bio-image {
  position: relative;
  flex: 0 0 50%;
  z-index: 9;
}
.bio-image img {
  width: 100%;
  max-width: 500px;
  display: block;
}

/* Circular Badge */
.circular-badge {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.circular-badge img{
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
/* Right content */
.bio-content {
  flex: 0 0 60%;
  position: relative;
  z-index: 2;
  margin-top: 200px;
}
.content-card {
  background: #fff;
  padding: 40px 50px;
  position: relative;
  max-width: 550px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* Outer border (extends left) */
.content-card::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -200px;   /* extend into left image */
  right: -20px;
  bottom: -20px;
  border: 2px solid #bebaba81;
  pointer-events: none;
  z-index: -1;
}

/* Inner border (tight around card) */
.content-card::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -185px;   /* extend into left image */
  right: -5px;
  bottom: -5px;
  border: 1px solid #bebabaa4;
  pointer-events: none;
  z-index: -1;
}

.bio-text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}
.bio-text .drop-cap {
  float: left;
  font-size: 50px;
  line-height: 1;
  font-weight: bold;
  margin-right: 10px;
  color: #333333;
 font-family: "Playfair Display";
}

/* Signature */
.signature {
  margin-top: 30px;
}
.signature img {
  max-width: 160px;
}
.signature p {
  font-family: 'Dancing Script', cursive; 
  font-size: 22px;
  font-style: italic;
  color: #555;
  margin-top: 20px;
}

/* ===================================================================
                            Have Fun Area CSS Start
====================================================================*/
.have-fun {
  position: relative;
  background: url('../images/home/have-fun.png') no-repeat scroll center center / cover;
  padding: 100px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
}
.have-fun::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.4;
  z-index: 9;
}
.have-fun h3{
  color: #D8B069;
  font-size: 100px;
  font-weight: 400;
  font-family: "Mr Dafoe";
}
.have-fun .heading2{
  font-size: 100px;
  color: #FFF;
  font-family: "Playfair Display";
  padding-bottom: 30px;
}
.have-fun .font18px{
  color: #D8B069;
  text-transform: uppercase;
  letter-spacing: 5px;
  padding-top: 20px;
}

.have-fun-content {
  position: relative;
  z-index: 99;
}
.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  transition: 0.3s;
}
.play-btn::before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
  transition: 0.3s;
}
.play-btn:hover {
  border-color: #d4a155;
}
.play-btn:hover.play-btn::before{
    border-color: transparent transparent transparent #d4a155;
}



/* ===================================================================
                        Featured Productions Area CSS Start
====================================================================*/
.featured-productions {
  padding: 100px 0px;
  text-align: center;
}
.featured-productions .font18px{
  color: #D8B069;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-style: normal;
}
.featured-productions .heading2{
  padding-top: 20px;
  padding-bottom: 50px;
}
.featured-productions .heading2 span {
  font-weight: normal;
  font-style: italic;
}
.filter-controls {
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.filter-controls li {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  color: #696969;
  transition: color 0.3s ease;
  padding: 5px 0;
}

.filter-controls li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #C1924A;
  transition: width 0.3s ease;
}

.filter-controls li:hover::after,
.filter-controls li.mixitup-control-active::after {
  width: 100%;
}


.mix-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  margin-bottom: 60px;
}
.mix {
  position: relative;
  overflow: hidden;
}
.mix .heading3{
  padding-top: 25px;
  padding-bottom: 10px;
  transition: all 0.3s;
}
.mix .heading3:hover{
  color: #C1924A;
}
.mix-links{
  display: flex;
  justify-content: center;
  gap: 5px;
}
.mix-links a {
  color: #7e7e7e;
  font-style: italic;
  line-height: 2;
  letter-spacing: 1px;
  font-family: "Playfair Display";
  transition: all 0.3s;
}
.mix-links a:hover{
  color: #C1924A;
}
.popup-youtube{
  position: relative;
  height: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.popup-youtube::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 2;
}
.popup-youtube .popup-icon{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.popup-youtube:hover.popup-youtube .popup-icon{
  visibility: visible;
  opacity: 1;
}
.popup-youtube img{
  height: 255px;
  object-fit: cover;
}
/* Play button */
.mix .play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.mix .play-btn::before {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}
.mix .play-btn:hover {
  border-color: #d4a155;
}
.mix .play-btn:hover::before {
  border-color: transparent transparent transparent #d4a155;
}


.featured-productions .btn1{
  background: transparent;
  color: #333;
  border: 1px solid #000;
  text-transform: uppercase;
  padding: 13px 32px;
}
.featured-productions .btn1:hover{
  background: #C1924A;
  color: #FFF;
   border: 1px solid #C1924A;
}




/* ===================================================================
                       Great Things Area CSS Start
====================================================================*/
.great-things {
  position: relative;
  background: url("../images/home/great-things-bg.png") center/cover no-repeat;
  padding: 100px 0px;
  text-align: center;
  color: #fff;
}
.great-things .overlay {
  position: absolute;
  top:0; 
  left:0; 
  right:0; 
  bottom:0;
  background: rgba(0,0,0,0.6);
}
.great-things .container {
  max-width: 900px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Headings */
.great-content .sub-heading {
  color: #D8B069;
  font-size: 100px;
  font-weight: 400;
  font-family: "Mr Dafoe";
}
.great-content .heading2 {
  color: #FFF;
  padding-bottom: 30px;
}
.great-content .description {
  font-family: "Playfair Display";
  font-size: 18px;
  color: #ababab;
  max-width: 680px;
  width: 100%;
  margin: auto;
}

/* Slider */
.partners-slider {
  margin: 100px 0px;
}
.partners-slider img {
  max-width: 200px;
  margin: 0 auto;
  opacity: 0.5;
  transition: 0.3s;
}
.partners-slider img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Arrows */
.partners-slider .swiper-button-next::after,
.partners-slider .swiper-button-prev::after {
  display: none;
}
.partners-slider .swiper-button-next{
  right: 0;
}
.partners-slider .swiper-button-prev{
  left: -10px;
}
.partners-slider .swiper-button-next i,
.partners-slider .swiper-button-prev i {
  font-size: 26px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.partners-slider:hover .swiper-button-next i,
.partners-slider:hover .swiper-button-prev i{
  visibility: visible;
  opacity: 1;
}

.subscribe-default {
  position: relative;
  margin: 0 auto;
  max-width: 360px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
}
.subscribe-input {
  flex: 1;
  padding: 12px 30px;
  padding-left: 10px;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
  text-transform: uppercase;
  color: #7e7e7e;
}
.subscribe-submit {
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  margin-left: 30px;
}
.subscribe-submit ion-icon {
  color: #fff;
  font-size: 22px;
  pointer-events: none;
}

/* ===================================================================
                       Footer Area CSS Start
====================================================================*/
.footer-area{
  padding: 100px 0px;
  background: #000;
}
.footer-content ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-content ul li a{
  color: #ababab;
  padding: 5px 13px;
  transition: 0.3s;
}
.footer-content ul li a:hover{
  opacity: 0.6;
}



#backToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: none; 
  background-color: #0000006b;
  color: white;
  border: none;
  padding: 12px 12px;
  cursor: pointer;
  font-size: 16px;
  z-index: 1000;
  transition: opacity 0.3s;
}

#backToTop:hover {
  background-color: #000;
}

.gallery-popup img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
  text-align: center;
}
.gallery .section-heading h2 {
	text-align: center;
	margin-bottom: 40px;
}
.gallery-content h3{
  text-align: center;
  margin-bottom: 15px;
}
.gallery-item {
	margin-bottom: 50px;
}

.content-card a {
	color: black;
	font-size: 18px;
	margin-top: 10px;
	display: inline-block;
}

.bio-image a {
	display: block;
	margin: 50px 0;
}














