/* ===== RESET & BASE STYLES ===== */
* {
	font-family: "Josefin Sans", sans-serif;
	letter-spacing: 0.48px;
	font-weight: normal;
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
	vertical-align: baseline;
	outline: none;
}

body {
	font-weight: 300;
}

strong {
	font-weight: 700;
	color: #000;
}

img {
	vertical-align: top;
	max-width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
	font-family: "Italiana", sans-serif;
	font-weight: 400;
}

h2 {
	color: #000;
	font-size: 3.5rem;
	line-height: 1.2;
	letter-spacing: 0.07rem;
	margin-bottom: 30px;
}

p {
	font-weight: 300;
	color: #000;
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 25px;
}

/* ===== LAYOUT ===== */
section {
	padding: 80px 0;
}

/* ===== NAVIGATION ===== */
.navbar {
	background-color: rgba(0, 0, 0, 0.8) !important;
	backdrop-filter: blur(10px);
}

.navbar-brand {
	color: #fff !important;
	font-weight: bold;
	font-size: 1.2rem;
}

.navbar-brand img {
	height: 57px;
	width: auto;
}

.navbar-nav .nav-link {
	color: #fff !important;
	margin: 0 10px;
	transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: #ffd700 !important;
}

.navbar-nav .nav-link.active {
	color: #ffd700 !important;
	font-weight: 600;
}

.logo-container {
	display: flex;
	align-items: center;
}

/* ===== HERO SECTION ===== */
.hero-section {
	height: 800px;
	display: flex;
	align-items: flex-end;
	position: relative;
	padding: 0;
	overflow: hidden; /* Добавляем overflow: hidden для эффекта скольжения */
}

.hero-content {
	text-align: center;
	display: grid;
	gap: 1.5rem;
}

.hero-section h1 {
	color: #FFD700;
	text-shadow: 0 4px 34px rgba(0, 0, 0, 0.25);
	font-size: 4.875rem;
	line-height: 2.3125rem;
}

.hero-tagline {
	color: #FFF;
	font-size: 2.0625rem;
	line-height: 2.3125rem;
	letter-spacing: 0.02063rem;
	margin: 0;
}

.hero-description {
	font-size: 1.1rem;
	color: #fff;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.5;
}

.hero-awards {
	align-items: center;
	gap: 3rem;
	border-top: 1px solid #666666;
	border-bottom: 1px solid #666666;
	margin: 40px 0;
}

.hero-awards img {
	margin: 0;
}

#hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: translateY(0) translateX(0) scale(1); /* Начальная позиция для эффекта скольжения */
	transition: transform 0.05s ease-out; /* Более быстрый переход для более отзывчивого эффекта */
	will-change: transform; /* Оптимизация производительности */
}

#hero-image .img-obj {
	position: absolute;
	z-index: 1;
	object-position: left center;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.img-obj {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.hero-section .container {
	position: relative;
	z-index: 2;
}

/* ===== MEET PRODUCER SECTION ===== */
.meet-producer-section {
	background-image: url('images/meet-bg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	animation: sectionGlow 5s ease-in-out infinite;
}

.meet-producer-divider {
	width: 60px;
	height: 3px;
	background-color: #000;
	margin: 0 0 40px 0;
}

.meet-producer-image {
	position: relative;
	padding: 0 0 15px 5px;
}

.meet-producer-image::before {
	content: '';
	position: absolute;
	top: 30px;
	left: 0px;
	right: 0;
	bottom: 0;
	z-index: 1;
	border: 2px solid #D9D9D9;
	display: block;
}

.meet-producer-image img {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
	right: -10px;
}

/* ===== SVG BACKGROUND ===== */
.svg-background {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}

.animated-svg {
	position: absolute;
	top: 50%;
	left: -50px;
	transform: translateY(-50%);
	width: 400px;
	height: auto;
	opacity: 0.6;
	animation: svgFloat 4s ease-in-out infinite;
}

.svg-path {
	stroke: white;
	stroke-width: 8;
	stroke-opacity: 0.6;
	fill: none;
	animation: pathGlow 3s ease-in-out infinite;
}

/* ===== OUR FILMS SECTION ===== */
.our-films-section {
	position: relative;
	overflow: hidden;
	margin: 40px 0;
	padding: 120px 0;
}

.film-perforation-line {
	position: absolute;
	left: 0;
	width: 200%;
	height: 64px;
	display: flex;
	gap: 4rem;
	animation: slideFilmBlocks 60s linear infinite;
	z-index: 1;
}

.film-perforation-line.top {
	top: 0;
}

.film-perforation-line.bottom {
	bottom: 0;
}

.film-block {
	width: 4.125rem;
	height: 4rem;
	flex-shrink: 0;
	border-radius: 0.625rem;
	background: rgba(179, 179, 179, 0.50);
}

.our-films-section .container {
	position: relative;
	z-index: 2;
}

.film-poster-link {
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.film-poster {
	position: relative;
	margin-bottom: 30px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.film-poster::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 5;
}

.film-poster:hover::before {
	opacity: 1;
	visibility: visible;
}

.film-poster img {
	width: 100%;
	height: auto;
	display: block;
}

.play-button {
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 59px;
	height: 59px;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.film-poster:hover .play-button {
	opacity: 1;
	visibility: visible;
}

.play-button svg {
	width: 100%;
	height: 100%;
}

.watch-trailer {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 0.9rem;
	font-weight: bold;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10;
	text-align: center;
}

.film-poster:hover .watch-trailer {
	opacity: 1;
	visibility: visible;
}

.film-details {
	padding: 20px 0;
}

.film-details h3 {
	font-family: "Josefin Sans", sans-serif;
	color: #333;
	font-size: 1.6875rem;
	line-height: normal;
}

.film-genres {
	margin-bottom: 10px;
}

.genre-tag {
	display: inline-block;
	color: #333;
	padding: 4px 12px;
	font-size: 0.8rem;
	font-weight: bold;
	margin-right: 8px;
	margin-bottom: 5px;
	border-radius: 0.3125rem;
	background: #DAC247;
}

.film-rating {
	color: #333;
	font-weight: 400;
}

.film-rating::before {
	content: '★';
	color: #F8CB2B;
	margin-right: 5px;
}

/* ===== HOME MEDIA SECTION ===== */
.home_media {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://i.ytimg.com/vi_webp/95EeI4wtkb4/maxresdefault.webp');
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 4rem 0;
}

.home_media_main h2 {
	color: #FFF;
	font-size: 4.75rem;
	line-height: 4.6875rem;
	letter-spacing: 0.095rem;
}

.home_media_main .container-fluid {
	background: rgba(30, 27, 27, 0.50);
	padding: 40px 0;
}

.home_media_main .trailers-title {
	color: #FFF;
	font-family: "Italiana", sans-serif;
	font-size: 3.5rem;
	letter-spacing: 0.07rem;
}

.home_media_main .splide__slide,
.home_media_main .video-container {
	position: relative;
	transition: all 0.3s ease;
	background-color: #000;
}

.home_media_main .play-button-show {
	display: flex;
	align-items: flex-end;
	position: absolute;
	bottom: 10px;
	left: 10px;
}

.home_media_main .play-button-show svg {
	width: 2.5rem;
	height: 2.5rem;
	margin-right: 10px;
}

.home_media_main .splide__slide img {
	opacity: 0.8;
}

.home_media_main .splide__slide .video-container:hover img {
	opacity: 1;
}

.home_media_main #home-media-slider .splide__arrow--prev {
	display: none;
}

.home_media_main #home-media-slider .splide__arrow--next,
.home_media_main #home-media-slider .splide__arrow--prev {
	right: -50px;
	background: none;
}

.home_media_main #home-media-slider .splide__arrow--next svg,
.home_media_main #home-media-slider .splide__arrow--prev svg {
	fill: #fff;
	height: 2.2em;
	width: 2.2em;
}

.vid_box {
	position: relative;
	cursor: pointer;
	border-radius: 8px;
	overflow: hidden;
}

.vid_box .play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 2;
}

.vid_box .play:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

.btn {
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn:hover {
	transform: scale(1.05);
}

.btn img {
	transition: all 0.3s ease;
}

.btn:hover img {
	filter: brightness(1.2);
}

/* ===== MODAL ===== */
.modalbox {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
}

.modal-content {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.close {
	color: #fff;
	font-size: 40px;
	font-weight: 300;
	cursor: pointer;
	position: absolute;
	right: 30px;
	top: 30px;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.5);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.close:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.8);
	transform: scale(1.1);
}

.video-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 1400px;
	max-height: 800px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.modalbox.show {
	animation: modalFadeIn 0.3s ease-out;
}

/* ===== CRITICAL ACCLAIM SECTION ===== */
.critical-acclaim-section {
	background-color: #F5F5F5;
}

.critical-acclaim-section .text-element p {
    color: #2C2C2C;
    font-size: 1.4375rem;
    font-style: normal;
    font-weight: 300;
    line-height: 2.3125rem;
}

.critical-acclaim-section .review-content .quote-img {
	width: 65px;
	margin-bottom: 10px;
}

.critical-acclaim-section .splide__slide img {
	border-radius: 0;
}

.critical-acclaim-section .splide__pagination {
	bottom: -40px;
}

.critical-acclaim-section .splide__pagination__page {
	background: none;
	border: 1px solid #8B8B8B;
	height: 14px;
	margin: 4px;
	width: 14px;
}

.critical-acclaim-section .splide__pagination__page.is-active {
	background: #8B8B8B;
	transform: scale(1);
	z-index: 1;
}

.btn_ {
	border-radius: 0.5rem;
	background: #DAC247;
	color: #111010;
	font-size: 1.25rem;
	font-weight: 300;
	display: inline-block;
	padding: 10px 25px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid #DAC247;
}

.btn_:hover {
	background: none;
}

.review-carousel-item {
	position: relative;
	max-width: 560px;
}

.reviews-slider {
	position: relative;
}

.reviews-slider .splide__track {
	overflow: visible;
}

.reviews-slider .splide__slide {
	opacity: 1;
	transition: all 0.3s ease;
}

.reviews-slider .splide__slide.is-active {
	opacity: 1;
}

.reviews-slider .splide__arrow {
	display: none;
}

.review-card {
	background: #fff;
	border-radius: 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: row;
	height: auto;
	margin: 0;
}

.review-poster {
	flex: 0 0 250px;
	position: relative;
	overflow: hidden;
}

.movie-poster-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.review-content {
	padding: 1.5rem;
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: left;
}

.review-content h3 {
	    font-family: "Josefin Sans", sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
	color: #333;
	margin-bottom: 0;
	position: relative;
	z-index: 2;
}

.review-stars {
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}

.review-stars .stars-img {
	width: 80px;
}

.critical-acclaim-section .review-quote {
	margin-bottom: 1rem;
	flex: 1;
	position: relative;
	z-index: 2;
}

.critical-acclaim-section .review-quote p {
	line-height: 1.4;
	color: #333;
	font-style: italic;
	margin: 0;
	font-size: 16px;
}

.critical-acclaim-section .review-author {
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
}

.critical-acclaim-section .review-author p {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
}

.read-full-article {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #333;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
	margin-top: auto;
	position: relative;
	z-index: 2;
	font-size: 1.1875rem;
}

.read-full-article:hover {
	color: #FFD700;
}

.read-full-article:hover .article-arrow {
	transform: translateX(4px);
}

.article-arrow {
	transition: transform 0.3s ease;
}

/* ===== OUR COLLABORATORS SECTION ===== */
.our-collaborators h3 {
	font-size: 1.375rem;
	font-weight: 400;
	margin-bottom: 0;
	font-family: "Josefin Sans", sans-serif;
}

.our-collaborators p {
	font-size: 1.125rem;
	font-weight: 400;
	margin-bottom: 0;
}

.our-collaborators .font-light {
	font-weight: 300;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
	background-color: #8A7C31;
	padding: 60px 0;
	color: white;
}

.newsletter-title {
	font-family: "Italiana", sans-serif;
	font-size: 39px;
	font-weight: 400;
	line-height: 41px;
	margin-bottom: 20px;
	color: #fff;
}

.newsletter-subtitle {
	font-size: 28px;
	font-weight: 300;
	line-height: 41px;
	margin-bottom: 30px;
	color: #fff;
}

.newsletter-form {
	max-width: 700px;
	margin: 0 auto;
}
.check_box input {
    margin-right: 10px;
    position: relative;
    top: 4px;
    width: 13px;
    height: 13px;
}
.check_box {
	margin-top: 20px;
	align-items: flex-start;
}
.check_box span {
	font-size: 14px;
}
.newsletter-form .form-group {
	display: flex;
}
.newsletter-input {
	flex: 1;
	background: transparent;
	border: 1px solid white;
	border-radius: 8px 0 0 8px;
	padding: 20px;
	color: white;
	font-size: 20px;
	font-weight: 300;
}

.newsletter-input::placeholder {
	color: white;
	opacity: 0.8;
}

.newsletter-input:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
	background-color: #564E21;
	border: 1px solid #564E21;
	border-radius: 0 8px 8px 0;
	padding: 20px 30px;
	color: white;
	font-size: 28px;
	font-weight: 300;
	transition: all 0.3s ease;
}

.newsletter-btn:hover {
	background-color: #6B5F2A;
	border-color: #6B5F2A;
	color: white;
}

/* ===== FOOTER SECTION ===== */
.footer-section {
	background-color: #252525;
	padding: 80px 0 40px;
	color: white;
}

.footer-logo-container {
	width: 57px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo {
	width: 100%;
	height: auto;
	max-width: 57px;
	max-height: 65px;
}

.footer-company-name {
	font-size: 27px;
	font-weight: 400;
	margin-bottom: 5px;
}

.footer-company-subtitle {
	font-size: 27px;
	font-weight: 300;
	margin-bottom: 30px;
}

.footer-disclaimer {
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	color: #CCCCCC;
}

.footer-heading {
	font-family: "Josefin Sans", sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 37px;
	margin-bottom: 30px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #8A7C31;
}

.footer-contact-info {
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	margin-bottom: 20px;
}

.footer-social-icons {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}

.footer-social-icons a {
	color: white;
	font-size: 24px;
	transition: color 0.3s ease;
	text-decoration: none;
}

.footer-social-icons a:hover {
	color: #8A7C31;
}

/* ===== SPLIDE SLIDER STYLES ===== */
.splide__slide {
	text-align: center;
}

.splide__slide img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.splide__slide:hover img {
	transform: scale(1.05);
}

.splide__slide p {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: #fff;
	line-height: 1.4;
}

.splide__arrow {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: #fff;
	transition: background 0.3s ease;
}

.splide__arrow:hover {
	background: rgba(255, 255, 255, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes svgFloat {
	0% {
		transform: translateY(-50%) translateX(0px) scale(1);
	}
	50% {
		transform: translateY(-50%) translateX(30px) scale(1.1);
	}
	100% {
		transform: translateY(-50%) translateX(0px) scale(1);
	}
}

@keyframes pathGlow {
	0%, 100% {
		stroke-opacity: 0.2;
		filter: blur(0px);
	}
	50% {
		stroke-opacity: 0.8;
		filter: blur(1px);
	}
}

@keyframes sectionGlow {
	0%, 100% {
		box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.1);
	}
	50% {
		box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.3);
	}
}

@keyframes slideFilmBlocks {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 580px) {
	.home_media {
		background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/trailers-sld-big.webp');
		background-size: cover;
		background-position: bottom;
	}
	.vid_box_mobile {
		display: none;
	}
}
@media (max-width: 1400px) {
.navbar-nav .nav-link {
	margin: 0 7px;
}
}
@media (max-width: 1200px) {
.navbar-brand img {
    height: 40px;
}
.navbar-nav .nav-link {
	padding: 0 !important;
}
}
@media (max-width: 991px) {
	.critical-acclaim-content {
		padding-right: 0;
		margin-bottom: 3rem;
		text-align: center;
	}

	.critical-acclaim-title {
		font-size: 2.5rem;
	}

	.critical-acclaim-description {
		max-width: 100%;
	}

	.review-card {
		max-width: 500px;
		margin: 0 auto;
	}
	.navbar-nav .nav-link {
		padding: 15px !important;
	}
}

@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 3rem;
		line-height: 1;
	}
	
	.hero-tagline {
		font-size: 1.2rem;
	}
	
	.hero-description {
		font-size: 1rem;
	}

	h2 {
		font-size: 2.25rem;
	}
	
	.film-poster {
		margin-bottom: 20px;
	}

	.critical-acclaim-section {
		padding: 60px 0;
	}

	.critical-acclaim-title {
		font-size: 2rem;
	}

	.critical-acclaim-description {
		font-size: 1rem;
	}

	.review-content {
		padding: 1.5rem;
	}

	.review-card {
		flex-direction: column;
	}

	.review-poster {
		flex: 0 0 200px;
	}

	.film-perforation-line {
		height: 48px;
		gap: 1.5rem;
	}
	
	.film-block {
		width: 3.5rem;
		height: 3.5rem;
	}

	.modal-content {
		padding: 10px;
	}
	
	.close {
		right: 15px;
		top: 15px;
		width: 40px;
		height: 40px;
		font-size: 30px;
	}
	
	.video-wrapper {
		border-radius: 8px;
 		margin-top: 70px;
	}

	.newsletter-title {
		font-size: 2rem;
		line-height: 1.2;
	}
	
	.newsletter-subtitle {
		font-size: 1.5rem;
		line-height: 1.3;
	}
	
	/* Mobile navigation improvements */
	.navbar-nav .nav-link {
		padding: 12px 15px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		margin: 0;
	}
	
	.navbar-nav .nav-link:last-child {
		border-bottom: none;
	}
	
	.navbar-nav .nav-link.active {
		background-color: rgba(255, 215, 0, 0.1);
		border-left: 3px solid #ffd700;
	}
	
	.navbar-collapse {
		background-color: rgba(0, 0, 0, 0.95);
		border-radius: 0 0 10px 10px;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}
	
	.navbar-toggler {
		border: none;
		padding: 4px 8px;
	}
	
	.navbar-toggler:focus {
		box-shadow: none;
	}
	
	.navbar-toggler-icon {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	}
	
	.newsletter-form {
		flex-direction: column;
		gap: 15px;
	}
	
	.newsletter-input,
	.newsletter-btn {
		border-radius: 8px;
		text-align: center;
	}
	
	.footer-section {
		padding: 60px 0 30px;
	}
	
	.footer-heading {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
	
	.footer-company-name,
	.footer-company-subtitle {
		font-size: 1.8rem;
	}
}

@media (max-width: 576px) {
	.critical-acclaim-title {
		font-size: 1.8rem;
	}
	
	.review-card {
		margin: 0 10px;
	}
	
	.review-poster {
		flex: 100%;
	}
	
	.hero-awards img {
		height: 55px;
		width: auto;
	}
	
	.home_media_main #home-media-slider .splide__arrow--next {
		right: -10px;
	}
	
	.film-perforation-line {
		height: 40px;
		gap: 1rem;
	}
	
	.film-block {
		width: 3rem;
		height: 3rem;
	}
	
	/* Mobile navigation improvements for very small screens */
	.navbar-nav .nav-link {
		padding: 15px 20px;
		font-size: 1.1rem;
	}
	
	.navbar-brand img {
		height: 40px;
	}
	
	.navbar-toggler {
		padding: 6px 10px;
	}
	section {
    padding: 50px 0;
	}
	/* Touch effects for mobile */
	.navbar-nav .nav-link {
		transition: all 0.2s ease;
		-webkit-tap-highlight-color: transparent;
	}
	
	.navbar-nav .nav-link:active {
		transform: scale(0.95);
		background-color: rgba(255, 215, 0, 0.2);
	}
	.hero-section {
		height: 100vh;
	}
	.hero-awards {
    gap: 2rem;
    margin: 20px 0;
	}
	.our-films-section {
    padding: 70px 0;
	}
	.film-perforation-line.bottom {
    bottom: 10px;
	}
	.film-details {
			margin-bottom: 50px;
	}
	.home_media_main .trailers-title {
    font-size: 2.25rem;
}
.home_media_main h2 {
    font-size: 3.25rem;
    line-height: 1;
}
.home_media_main .play-btn {
       margin: auto;
    display: block;
}
.home_media_main .splide__arrows {
	position: relative;
	top: -50px;
	max-width: 120px;
	margin: auto;
}
.home_media_main #home-media-slider .splide__arrow--prev {
	display: block;
}
.critical-acclaim-section .text-element p {
    font-size: 1.1rem;
    line-height: 1.8;
}
.btn_ {
	font-size: 1.1rem;
	display: block;
	padding: 10px 5px;
	letter-spacing: 0;
	text-align: center;
}
	.review-card {
			margin: 0;
	}
.review-content,
.our-collaborators .justify-content-center,
.footer-section {
			text-align: center;
	}
	.critical-acclaim-section .review-content .quote-img {
    margin: 0 auto 10px;
	}
	.read-full-article,
	.footer-section img {
		display: block;
		margin: auto;
	}
	.footer-social-icons {
    justify-content: center;
}
.footer-contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
}
@media (max-width: 360px) {
	.hero-awards img {
	height: 50px;
	}
	.hero-content {
	gap: 1rem;
	}
	.hero-awards {
	margin: 0 0 20px 0;
	}
	h2 {
	font-size: 2rem;
	}
	.btn_ {
	font-size: 1rem;
	}
}

/* ===== ANIMATIONS & EFFECTS ===== */

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Apply animations to elements */
.hero-content h1 {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content .hero-tagline {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-content .hero-description {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-awards {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-awards img {
    animation: float 3s ease-in-out infinite;
}

.hero-awards img:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-awards img:nth-child(3) {
    animation-delay: 1s;
}

/* Meet Producer Section Animations */
.meet-producer-section h2 {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.meet-producer-section p {
    animation: fadeInLeft 1s ease-out 0.6s both;
}

.meet-producer-image {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.meet-producer-image img {
    transition: transform 0.3s ease;
}

.meet-producer-image:hover img {
    transform: scale(1.05);
}

/* Film Posters Animations */
.film-poster {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInScale 0.8s ease-out both;
}

.film-poster:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.film-poster:nth-child(1) {
    animation-delay: 0.2s;
}

.film-poster:nth-child(2) {
    animation-delay: 0.4s;
}

.film-poster:nth-child(3) {
    animation-delay: 0.6s;
}

/* Play Button Animation */
.play-button {
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.play-button svg {
    transition: all 0.3s ease;
}

.play-button:hover svg {
    animation: pulse 1s infinite;
}

/* Film Details Animation */
.film-details {
    animation: slideInFromBottom 0.8s ease-out 0.8s both;
}

.film-details h3 {
    transition: color 0.3s ease;
}

.film-poster:hover + .film-details h3 {
    color: #ffd700;
}

/* Genre Tags Animation */
.genre-tag {
    transition: all 0.3s ease;
    animation: fadeInScale 0.6s ease-out 1s both;
}

.genre-tag:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Navigation Animations */
.navbar-nav .nav-link {
    transition: color 0.3s ease;
}

/* .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
} */

/* Section Headers Animation */
section h2 {
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
}


@keyframes expandWidth {
    to {
        width: 100px;
    }
}

/* Review Cards Animation */
.review-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInScale 0.8s ease-out both;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.review-poster img {
    transition: transform 0.3s ease;
}

.review-card:hover .review-poster img {
    transform: scale(1.05);
}

/* Newsletter Section Animation */


.newsletter-title {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.newsletter-subtitle {
    animation: fadeInLeft 1s ease-out 0.6s both;
}

.newsletter-form {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.newsletter-input {
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.newsletter-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Footer Animations */
.footer-section {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.footer-links a {
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-social-icons a {
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.2);
}

/* SVG Background Animation */
.animated-svg {
    animation: float 6s ease-in-out infinite;
}

.svg-path {
    animation: pathGlow 3s ease-in-out infinite alternate;
}

/* Film Perforation Animation */
.film-block {
    animation: slideFilmBlocks 2s linear infinite;
}

.film-block:nth-child(even) {
    animation-delay: 1s;
}

/* Modal Animation Enhancement */
.modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

/* Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ffd700;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

/* Hover Effects for Images */
.img-hover-zoom {
    overflow: hidden;
    transition: all 0.3s ease;
}

.img-hover-zoom img {
    transition: transform 0.3s ease;
}

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

/* Text Glow Effect */
/* .text-glow {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: text-shadow 0.3s ease;
}

.text-glow:hover {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
} */

/* Button Hover Effects */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-enhanced:hover::before {
    left: 100%;
}

.btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Animations */
@media (max-width: 768px) {
    .hero-content h1,
    .hero-content .hero-tagline,
    .hero-content .hero-description,
    .hero-awards {
        animation-duration: 0.8s;
    }
    
    .film-poster {
        animation-delay: 0.1s !important;
    }
    
    .film-poster:nth-child(2) {
        animation-delay: 0.2s !important;
    }
    
    .film-poster:nth-child(3) {
        animation-delay: 0.3s !important;
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Additional Animation Styles */
.particle {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.loaded {
    opacity: 1;
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Enhanced section transitions */
section {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced film poster animations */
.film-poster {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.film-poster::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.film-poster:hover::after {
    left: 100%;
}

/* Enhanced navigation effects */
.navbar-nav .nav-link {
    transition: color 0.3s ease;
}

/* .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
} */

/* Enhanced button animations */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-enhanced::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-enhanced:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced modal animations */
.modal-content {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

/* Enhanced text animations */
/* .text-glow {
    transition: text-shadow 0.3s ease;
}

.text-glow:hover {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
} */

/* Enhanced image hover effects */
.img-hover-zoom {
    overflow: hidden;
    border-radius: 8px;
}

.img-hover-zoom img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-hover-zoom:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Enhanced film details reveal */
.film-details {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.film-details.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced navigation - removed all effects */

/* Enhanced hero section */
.hero-content {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-content h1 {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-content .hero-tagline {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

.hero-content .hero-description {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
}

.hero-awards {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s both;
}

/* Enhanced film posters */
.film-poster {
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.film-poster:nth-child(1) {
    animation-delay: 0.2s;
}

.film-poster:nth-child(2) {
    animation-delay: 0.4s;
}

.film-poster:nth-child(3) {
    animation-delay: 0.6s;
}

/* Enhanced review cards */
.review-card {
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.review-card:nth-child(1) {
    animation-delay: 0.2s;
}

.review-card:nth-child(2) {
    animation-delay: 0.4s;
}

.review-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Enhanced newsletter section */
.newsletter-section {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.newsletter-title {
    animation: fadeInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.newsletter-subtitle {
    animation: fadeInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

.newsletter-form {
    animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

/* Enhanced footer */
.footer-section {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

/* Enhanced mobile animations */
@media (max-width: 768px) {
    .hero-content h1,
    .hero-content .hero-tagline,
    .hero-content .hero-description,
    .hero-awards {
        animation-duration: 0.8s;
    }
    
    .film-poster {
        animation-delay: 0.1s !important;
    }
    
    .film-poster:nth-child(2) {
        animation-delay: 0.2s !important;
    }
    
    .film-poster:nth-child(3) {
        animation-delay: 0.3s !important;
    }
    
    .review-card {
        animation-delay: 0.1s !important;
    }
    
    .review-card:nth-child(2) {
        animation-delay: 0.2s !important;
    }
    
    .review-card:nth-child(3) {
        animation-delay: 0.3s !important;
    }
}
