/*
	Theme Name: Anaki Child Theme
	Theme URI: https://anaki.co.il
	Description: Netflix-style dark theme for Anaki video production website
	Author: Anaki Production
	Author URI: https://anaki.co.il
	Template: hello-elementor
	Version: 2.1.0
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: anaki-child
	Tags: rtl-language-support, hebrew, video-production, netflix-style
*/

/* Heebo Font */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&display=swap');

/* CSS Variables - Netflix Style */
:root {
	--netflix-red: #e5b209;
	--bg-dark: #141414;
	--bg-darker: #0a0a0a;
	--text-primary: #ffffff;
	--text-secondary: #b3b3b3;
	--text-muted: #808080;
}

/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Heebo', sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Container */
.container {
	max-width: 1800px;
	margin: 0 auto;
	padding: 0 4%;
}

/* Section Styling */
section {
	padding: 8rem 4%;
}

.section-header {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 4rem;
}

.section-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--netflix-red);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
	display: block;
}

h2.section-headline {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	letter-spacing: -1px;
	color: var(--text-primary);
}

.section-description {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.8;
}

/* Hero Section */
.hero-section {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 4%;
	background: var(--bg-dark);
	position: relative;
	overflow: hidden;
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.hero-badge {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: rgba(229, 9, 20, 0.1);
	border: 1px solid rgba(229, 9, 20, 0.3);
	border-radius: 50px;
	font-size: 0.9rem;
	color: var(--netflix-red);
	margin-bottom: 2rem;
	font-weight: 500;
}

h1.hero-title {
	font-size: clamp(3rem, 8vw, 7rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -3px;
	text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
}

.gradient-text {
	background: linear-gradient(135deg, #fff 0%, var(--netflix-red) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: clamp(1.2rem, 2.5vw, 2rem);
	font-weight: 300;
	color: var(--text-secondary);
	margin-bottom: 3rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 0.75rem 2rem;
	border-radius: 6px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	border: none;
	cursor: pointer;
}

.btn-large {
	padding: 18px 50px;
	font-size: 1.2rem;
}

.btn-primary {
	background: var(--netflix-red);
	color: white;
}

.btn-primary:hover {
	background: #f40612;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
}

.btn-secondary {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	color: white;
	border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
	background: rgba(255,255,255,0.2);
	border-color: rgba(255,255,255,0.6);
	transform: translateY(-3px);
}

/* Clients Carousel */
.clients-section {
	background: var(--bg-darker);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	overflow: hidden;
	padding: 8rem 4%;
}

.clients-section .section-headline {
	margin-bottom: 4rem;
	text-align: center;
}

.carousel-wrapper {
	position: relative;
	overflow: hidden;
	max-width: 1800px;
	margin: 0 auto;
}

.carousel-track {
	display: flex;
	gap: 2rem;
	animation: scroll-rtl 40s linear infinite;
	width: fit-content;
}

@keyframes scroll-rtl {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.carousel-track:hover {
	animation-play-state: paused;
}

.client-logo {
	min-width: 200px;
	height: 200px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	transition: all 0.3s;
	flex-shrink: 0;
	overflow: hidden;
}

.client-logo:hover {
	background: rgba(255,255,255,0.1);
	transform: scale(1.05);
}

.client-logo img {
	width: 90%;
	height: 90%;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.6;
	transition: all 0.3s;
}

.client-logo:hover img {
	filter: none;
	opacity: 1;
}

/* Portfolio Section */
.portfolio-section {
	background: var(--bg-dark);
	padding: 8rem 4%;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 1.5rem;
	max-width: 1800px;
	margin: 0 auto;
}

.video-card {
	position: relative;
	aspect-ratio: 16/9;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	background: #000;
	transition: all 0.3s;
}

.video-card:hover {
	transform: scale(1.05);
	z-index: 10;
	box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.video-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s;
}

.video-card:hover .video-thumbnail {
	filter: brightness(0.5);
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(255,255,255,0.2);
	backdrop-filter: blur(10px);
	border: 3px solid rgba(255,255,255,0.8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s;
}

.video-card:hover .play-button {
	opacity: 1;
}

.play-button::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 0 15px 25px;
	border-color: transparent transparent transparent white;
	margin-right: -5px;
}

/* Reviews Section */
.reviews-section {
	background: var(--bg-darker);
	position: relative;
	overflow: hidden;
	padding: 8rem 4%;
}

.reviews-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('https://anaki.co.il/wp-content/uploads/2025/06/land-picture-JPG2-scaled.jpg') center/cover;
	opacity: 0.1;
	filter: brightness(0.3);
}

.reviews-section .container {
	position: relative;
	z-index: 2;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	max-width: 1800px;
	margin: 4rem auto 0;
}

.review-card {
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 15px;
	padding: 0;
	overflow: hidden;
	transition: all 0.3s;
}

.review-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(229, 9, 20, 0.2);
	border-color: rgba(229, 9, 20, 0.3);
}

.review-card img {
	width: 100%;
	height: auto;
	display: block;
}

/* About Section */
.about-section {
	background: var(--bg-dark);
	padding: 0;
}

.about-container {
	max-width: 1800px;
	margin: 0 auto;
}

.about-image-section {
	position: relative;
	width: 100%;
	height: 60vh;
	overflow: hidden;
}

.about-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.about-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, var(--bg-dark) 0%, transparent 60%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	padding: 10% 2rem;
}

.about-overlay .about-name {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
}

.about-overlay .about-role {
	font-size: clamp(1rem, 2vw, 1.3rem);
	color: var(--netflix-red);
	margin-bottom: 1rem;
}

.about-overlay .about-bio {
	font-size: clamp(1rem, 2vw, 1.3rem);
	line-height: 1.8;
	color: var(--text-secondary);
	max-width: 800px;
	text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
}

.about-quote {
	max-width: 1200px;
	margin: 6rem auto;
	text-align: center;
	padding: 0 4%;
	background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
	padding: 6rem 4%;
}

.about-quote blockquote {
	font-size: clamp(1.3rem, 3vw, 2.2rem);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 3rem;
	font-style: italic;
	color: var(--text-secondary);
}

.quote-author {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--netflix-red);
}

/* Footer Section */
.footer-section {
	background: var(--bg-darker);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 6rem 4%;
}

.footer-content {
	max-width: 1800px;
	margin: 0 auto;
}

.footer-about h3 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: var(--text-primary);
}

.footer-about p {
	color: var(--text-secondary);
	line-height: 2;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	max-width: 1000px;
}

.footer-cta {
	text-align: center;
	padding: 4rem 0 0;
	margin-top: 4rem;
}

.footer-cta h3 {
	margin-bottom: 2rem;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-top: 3rem;
}

/* Fade In Animation */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Video Modal */
.video-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: none;
}

.video-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.95);
	cursor: pointer;
}

.video-modal-content {
	position: relative;
	width: 90%;
	max-width: 1200px;
	margin: 5% auto;
	z-index: 10000;
}

.video-modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: #fff;
	font-size: 40px;
	cursor: pointer;
	z-index: 10001;
	transition: transform 0.3s ease;
}

.video-modal-close:hover {
	transform: scale(1.2);
}

.video-modal-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.video-modal-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
	.portfolio-grid {
		grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 3rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.portfolio-grid {
		grid-template-columns: 1fr;
	}

	.reviews-grid {
		grid-template-columns: 1fr;
	}

	.client-logo {
		min-width: 150px;
		height: 150px;
	}

	.about-image-section {
		height: 80vh;
	}

	.about-overlay {
		padding: 5% 2rem;
	}

	section {
		padding: 4rem 0;
	}
}

@media (max-width: 480px) {
	.client-logo {
		min-width: 120px;
		height: 120px;
	}

	.play-button {
		width: 60px;
		height: 60px;
	}

	.play-button::after {
		border-width: 10px 0 10px 16px;
	}
}
