
@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

/* =========================================================
   MODERN BLACK & WHITE CSS
   For Video Editing Los Angeles
   Includes hero/singer visibility fix
   ========================================================= */

/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i,
center, dl, dt, dd, ol, ul, li, fieldset, form,
label, legend, table, caption, tbody, tfoot, thead,
tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu,
nav, output, ruby, section, summary, time, mark,
audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

*, *:before, *:after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: #000;
	color: #d8d8d8;
	font-family: "Inter", Arial, sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.75;
	letter-spacing: 0.01em;
	-webkit-text-size-adjust: none;
}

body.is-preload *, 
body.is-preload *:before, 
body.is-preload *:after {
	animation: none !important;
	transition: none !important;
}

ol, ul {
	list-style: none;
}

p, ul, ol, dl, table {
	margin-bottom: 1.25rem;
}

p {
	text-align: left;
	color: #bdbdbd;
}

a {
	color: inherit;
	text-decoration: none;
	border-bottom: none;
	transition: all .25s ease;
}

strong, b {
	font-weight: 700;
	color: #fff;
}

em, i {
	font-style: italic;
}

/* Containers */
.container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.container.medium {
	width: min(860px, calc(100% - 40px));
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	color: #fff;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin: 0 0 1rem 0;
}

h1 {
	font-size: clamp(3rem, 8vw, 6.8rem);
	text-transform: uppercase;
	letter-spacing: -0.06em;
}

h2 {
	font-size: clamp(2rem, 5vw, 4rem);
	text-transform: uppercase;
}

h3 {
	font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.dark {
	color: #d8d8d8;
}

/* Buttons */
input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 34px;
	border: 1px solid #fff;
	border-radius: 0;
	background: transparent;
	color: #fff !important;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	cursor: pointer;
	text-align: center;
	transition: all .25s ease;
	box-shadow: none !important;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover,
.button:hover {
	background: #fff !important;
	color: #000 !important;
	transform: translateY(-2px);
}

.button.alt,
input[type="reset"].alt {
	background: #fff;
	color: #000 !important;
}

.button.alt:hover,
input[type="reset"].alt:hover {
	background: transparent !important;
	color: #fff !important;
}

/* =========================================================
   HERO SECTION — clearer singer / video background
   ========================================================= */
#header {
	position: relative;
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;

	background-image:
		linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.25) 45%, rgba(0,0,0,.82) 100%),
		url("../../images/gif test 3 1920X1080.gif");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;

	padding: 8rem 2rem 5rem;
	text-align: center;
	color: #fff;
	overflow: hidden;
}

/* Soft side vignette, not too dark */
#header:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at center, rgba(0,0,0,0) 0%, rgba(0,0,0,.16) 65%, rgba(0,0,0,.45) 100%);
	z-index: 1;
	pointer-events: none;
}

#header header,
#header footer {
	position: relative;
	z-index: 2;
	width: min(1100px, 100%);
}

/* Text stays lower so the singer is more visible */
#header header {
	margin-bottom: 1.5rem;
}

#header header h1 {
	margin-bottom: .6rem;
	font-size: clamp(2.7rem, 7.5vw, 7.2rem);
	font-weight: 800;
	line-height: .92;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0,0,0,.65);
}

#header header h2 {
	max-width: 780px;
	margin: 0 auto;
	font-size: clamp(.95rem, 1.6vw, 1.35rem);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255,255,255,.9);
	text-shadow: 0 2px 12px rgba(0,0,0,.65);
}

#header footer {
	padding-top: 1.2rem;
}

/* =========================================================
   MAIN SECTIONS
   ========================================================= */
.main {
	position: relative;
	margin: 0;
	background: #000;
}

.main > header {
	background: #000;
	text-align: center;
	padding: 6.5rem 1.25rem 4.5rem;
	margin: 0;
	border-top: 1px solid rgba(255,255,255,.08);
	border-bottom: 1px solid rgba(255,255,255,.08);
}

.main > header h2 {
	margin-bottom: .8rem;
	font-size: clamp(2.1rem, 5vw, 4.6rem);
	font-weight: 800;
	letter-spacing: -0.055em;
}

.main > header h3,
.main > header p {
	max-width: 760px;
	margin: 0 auto;
	color: #9d9d9d;
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	font-weight: 300;
	line-height: 1.7;
	text-align: center;
	text-transform: none;
	letter-spacing: 0;
}

.main > .content {
	padding: 6rem 0;
	background: #0a0a0a;
}

.main > .content.dark,
.main > .content.style1,
.main > .content.style2,
.main > .content.style3 {
	background:
		linear-gradient(180deg, #050505 0%, #101010 100%) !important;
	color: #d8d8d8;
}

.main > .content.style4,
.content.style4 {
	background: #000 !important;
	padding-top: 5rem;
	color: #d8d8d8;
}

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.service-tile {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 280px;
	aspect-ratio: 16 / 11;
	background-image: var(--bg);
	background-size: cover;
	background-position: center;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 0;
	color: #fff;
	text-decoration: none;
	isolation: isolate;
	transition: transform .35s ease, border-color .35s ease, filter .35s ease;
}

.service-tile:before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.25);
	z-index: 1;
	transition: background .35s ease;
}

.service-tile .overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: .55rem;
	padding: 1.5rem;
	background: linear-gradient(to top, rgba(0,0,0,.86), rgba(0,0,0,.1));
}

.service-tile .icon {
	font-size: 1.35rem;
	margin-bottom: .2rem;
	color: #fff;
}

.service-tile h3 {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #fff;
}

.service-tile p {
	margin: 0;
	font-size: .92rem;
	line-height: 1.55;
	color: rgba(255,255,255,.8);
}

.service-tile:hover {
	transform: translateY(-8px);
	border-color: #fff;
	filter: contrast(1.08);
}

.service-tile:hover:before {
	background: rgba(0,0,0,.05);
}

/* =========================================================
   FEATURE CARDS
   ========================================================= */
.features-grid,
.features-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	align-items: stretch;
}

.feature-card {
	height: 100%;
	padding: 2.2rem;
	background: #101010;
	border: 1px solid rgba(255,255,255,.1);
	text-align: left;
	transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.feature-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255,255,255,.45);
	background: #151515;
}

.feature-card .feature-icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	margin: 0 0 1.4rem 0;
	padding: 0;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 50%;
	background: transparent;
	color: #fff;
}

.feature-icon:before,
.feature-icon:after {
	display: none !important;
}

.feature-icon .icon {
	width: auto;
	height: auto;
	font-size: 1.25rem;
	line-height: 1;
	border: 0;
	box-shadow: none;
	color: #fff;
	background: none;
}

.feature-card h3 {
	margin-bottom: .8rem;
	font-size: 1.25rem;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.feature-card p {
	margin: 0;
	color: #aaa;
	font-size: .95rem;
	line-height: 1.7;
	text-align: left;
}

.features-footer {
	margin-top: 2rem;
	text-align: center;
}

/* =========================================================
   VIDEO GALLERY
   ========================================================= */
#video-gallery .container,
#third .container {
	max-width: 1040px;
}

.embed__container {
	position: relative;
	padding-bottom: 56.25%;
	background: #000;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 1.4rem;
	box-shadow: 0 22px 80px rgba(0,0,0,.5);
}

#player iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.video-thumb {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 0;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
}

.video-thumb img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	filter: grayscale(100%) contrast(1.1);
	transition: filter .25s ease, opacity .25s ease;
}

.video-thumb:before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.15);
	z-index: 1;
	transition: background .25s ease;
}

.video-thumb:after {
	content: "\f144";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2rem;
	color: #fff;
	opacity: 0;
	z-index: 2;
	transition: opacity .25s ease;
}

.video-thumb:hover img,
.video-thumb.active img {
	filter: grayscale(0%) contrast(1.08);
}

.video-thumb:hover:before,
.video-thumb.active:before {
	background: rgba(0,0,0,.02);
}

.video-thumb:hover:after,
.video-thumb.active:after {
	opacity: 1;
}

.video-carousel .owl-item {
	padding: 0 6px;
	box-sizing: border-box;
}

.video-carousel .owl-stage {
	display: flex;
}

.video-carousel:not(.owl-loaded) {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}

/* Owl nav */
.owl-nav button {
	width: 42px;
	height: 42px;
	margin: 14px 6px 0;
	border: 1px solid rgba(255,255,255,.25) !important;
	color: #fff !important;
	background: transparent !important;
}

.owl-nav button:hover {
	background: #fff !important;
	color: #000 !important;
}

/* =========================================================
   FORMS
   ========================================================= */
form input[type="text"],
form input[type="email"],
form input[type="password"],
form select,
form .select,
form textarea {
	display: block;
	width: 100%;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 0;
	background: #0d0d0d;
	color: #fff;
	font-family: inherit;
	font-size: 1rem;
	box-shadow: none;
	transition: all .25s ease;
}

form textarea {
	min-height: 13rem;
}

form input:focus,
form textarea:focus,
form select:focus {
	outline: none;
	border-color: #fff;
	background: #111;
}

form ::placeholder {
	color: rgba(255,255,255,.55) !important;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-top: -25px;
	margin-left: -25px;
}

.row > * {
	box-sizing: border-box;
	padding: 25px 0 0 25px;
}

.row > .col-6 {
	width: 50%;
}

.row > .col-12 {
	width: 100%;
}

.row > .col-4 {
	width: 33.333%;
}

ul.actions {
	display: flex;
	gap: 1rem;
	justify-content: flex-start;
	padding-left: 0;
	list-style: none;
}

ul.actions.special {
	justify-content: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
#footer {
	position: relative;
	margin: 0;
	padding: 4rem 1.25rem 5rem;
	background: #050505;
	border-top: 1px solid rgba(255,255,255,.1);
	text-align: center;
	color: #777;
}

ul.icons {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

ul.icons li {
	display: inline-block;
	padding: 0 .35rem;
}

ul.icons a {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 50%;
	color: #aaa;
	box-shadow: none;
	transition: all .25s ease;
}

ul.icons a:hover {
	background: #fff;
	color: #000;
	border-color: #fff;
}

#footer .copyright {
	margin-top: 2rem;
	font-size: .85rem;
	color: #777;
}

ul.menu {
	list-style: none;
	padding-left: 0;
}

ul.menu li {
	display: inline-block;
	border-left: 1px solid rgba(255,255,255,.12);
	padding-left: .6rem;
	margin-left: .6rem;
}

ul.menu li:first-child {
	border-left: 0;
	padding-left: 0;
	margin-left: 0;
}

/* Icons */
.icon {
	text-decoration: none;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
}

.icon.solid:before {
	font-weight: 900;
}

.icon.brands:before {
	font-family: "Font Awesome 5 Brands";
}

.icon > .label {
	display: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
	.services-grid,
	.features-grid,
	.features-row {
		grid-template-columns: repeat(2, 1fr);
	}

	#header {
		background-position: center center;
		padding-bottom: 4rem;
	}
}

@media (max-width: 768px) {
	body {
		font-size: 15px;
	}

	.container,
	.container.medium {
		width: calc(100% - 32px);
	}

	#header {
		min-height: 92vh;
		padding: 6rem 1rem 3rem;
		background-position: center top;
	}

	#header header h1 {
		font-size: clamp(2.3rem, 14vw, 4rem);
		line-height: .95;
	}

	#header header h2 {
		font-size: .82rem;
		letter-spacing: .08em;
	}

	.main > header {
		padding: 4rem 1rem 3rem;
	}

	.main > .content {
		padding: 4rem 0;
	}

	.services-grid,
	.features-grid,
	.features-row {
		grid-template-columns: 1fr;
	}

	.service-tile {
		min-height: 240px;
	}

	.row {
		margin-top: -18px;
		margin-left: -18px;
	}

	.row > * {
		padding: 18px 0 0 18px;
	}

	.row > .col-6,
	.row > .col-4,
	.row > .col-12,
	.row > .col-6-mobile,
	.row > .col-12-mobile {
		width: 100%;
	}

	.button,
	input[type="submit"],
	input[type="reset"] {
		width: 100%;
		max-width: 360px;
	}

	.video-carousel:not(.owl-loaded) {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	#header {
		background-position: center top;
	}

	.service-tile .overlay {
		padding: 1.2rem;
	}

	.feature-card {
		padding: 1.6rem;
	}

	ul.menu li {
		display: block;
		border-left: 0;
		margin: .7rem 0 0;
		padding-left: 0;
	}
}

/* Main section titles */
.main > header h2 {
    color: #ffffff !important;
    font-weight: 800;
}

/* Subtitles */
.main > header h3 {
    color: #f5f5f5 !important;
    font-weight: 400;
}

/* Specific titles */
#second h2,
#first h2,
#fourth h2 {
    color: #ffffff !important;
}

/* Editing Services */
#second h2 {
    text-shadow: 0 0 20px rgba(255,255,255,.15);
}

/* Simple Workflow */
#first h2 {
    text-shadow: 0 0 20px rgba(255,255,255,.15);
}

/* Start Your Video Project */
#fourth h2 {
    text-shadow: 0 0 20px rgba(255,255,255,.15);
}