* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
.responsive-logo-view {
	display: none;
}

img {
	max-width: 100%;
	height: auto;
}

/* === Loader container === */
#page-loader {
	position: fixed;
	inset: 0;
	background: black;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10001;
	transition:
		opacity 0.6s ease,
		visibility 0.6s ease;
	opacity: 1;
	visibility: visible;
}

/* === Fade-out triggered by JS === */
#page-loader.fade-out {
	opacity: 0;
	visibility: hidden;
}

/* === Spinner === */
#page-loader::after {
	content: "";
	width: 50px;
	height: 50px;
	border: 4px solid #ddd;
	border-top-color: #333;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

:root {
	--footer-height: 200px;
}
html,
body {
	font-family: "Inter", sans-serif;
	overflow-x: hidden;
	height: 100%;
	margin: 0;
	padding: 0;
	background: #000;
}
body {
	padding-bottom: 200px;
	padding-bottom: var(--footer-height);
}
.hero-section {
	width: 100vw;
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.hero-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(10px);
	z-index: 1;
}
.hero-bg::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 2;
}
#container-fluid {
	position: relative;
	z-index: 10000;
}
.hero-content {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 0.5em;
}
.responsive-logo-footer-img {
	width: 120px;
	height: 120px;
}
.hero-text {
	color: rgb(242, 237, 237);
	text-align: center;
}
.hero-title {
	font-family: "Poppins", sans-serif;
	font-size: clamp(1rem, 0.9rem + 1vw, 2rem);
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
	font-size: clamp(1rem, 0.9rem + 1vw, 1.5rem);
	font-weight: 300;
	margin-bottom: 1rem;
	opacity: 0.9;
}
.portrait-gallery {
	position: fixed;
	/* right: -10%; */
	/* bottom: 40px; */
	/* transform: translateY(-50%); */
	z-index: 2;
	display: flex;
	gap: 30px;
	align-items: flex-end;
	justify-content: center;
	margin: 10px auto;
}
.portrait-card {
	margin-right: -10px;
	left: -60px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	position: relative;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}
.portrait-card.main {
	width: 280px;
	height: 300px;
	z-index: 5;
	margin-left: 5em;
}
.portrait-card.secondary {
	width: 250px;
	height: 260px;
	z-index: 3;
}
.portrait-card.tertiary {
	width: 200px;
	height: 220px;
	z-index: 1;
	opacity: 0.8;
}
.portrait-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.grow-effect {
	position: fixed;
	/* z-index: 9999; */
	pointer-events: none;
	opacity: 0;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.grow-effect img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.cta-section {
	position: absolute;
	bottom: 8%;
	left: 5%;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 30px;
}
.cta-buttons {
	display: flex;
	gap: 20px;
	align-items: center;
}
.contact-btn {
	background: transparent;
	border: 2px solid white;
	color: white;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	font-family: "Caveat", cursive;
}
.contact-btn:hover {
	background: white;
	color: #667eea;
}
.virtual-studio-btn {
	background: linear-gradient(45deg, #cc5533, #e67e22);
	border: none;
	color: white;
	padding: 8px;
	border-radius: 50px;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	text-align: center;
	transition: all 0.3s ease;
	font-family: "Caveat", cursive;
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
	line-height: 1.2;
}
.virtual-studio-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 6px rgba(77, 73, 71, 0.5);
	color: white;
}

.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 160px;
	background: rgba(0, 0, 0, 0.35);
	border-top: 1px solid rgba(255, 255, 255, 0.084);
	color: #fff;
	z-index: 10000;
	padding: 1em 1em 0;

	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1.5fr 0.5fr;
	align-items: center;
	justify-content: center;
}
.section-nav {
	grid-row: 1;
	grid-column: 1/-1;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	overflow: hidden;
	gap: 10px;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: clamp(0.8rem, 0.5rem + 2vw, 2.5rem);
	position: relative;
	padding: 10px 8px;
}
.nav-links::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("/images/vector.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	pointer-events: none;
	z-index: 0;
}

.nav-links a,
.nav-links button {
	position: relative;
	z-index: 1;
}
.footer a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-family: "Caveat", cursive;
	font-size: clamp(0.8rem, 0.5rem + 1.7vw, 2.5rem);
}

footer a:hover {
	text-decoration: underline;
}

.footer-logo {
	display: none;
}

.social-icons img {
	height: 40px;
	width: 40px;
}

.copy-right {
	grid-row: 2;
	grid-column: 1/-1;
	text-align: center;
	font-size: 12px;
	margin: 0;
}

.landscape-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	color: white;
	z-index: 10000;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: "Inter", sans-serif;
	text-align: center;
	padding: 20px;
}
.landscape-overlay .message {
	background: black;
	padding: 30px;
	border-radius: 16px;
	max-width: 90%;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.landscape-overlay .message p {
	margin: 0 0 15px;
	font-size: 1.4rem;
	font-weight: 500;
}
.landscape-overlay .message .icon {
	font-size: 3rem;
	margin-bottom: 15px;
	display: block;
}
/* @media screen and (max-width: 1024px) and (orientation: landscape) {
	.landscape-overlay {
		display: flex;
	}
}
@media screen and (max-width: 480px) and (orientation: landscape) {
	.landscape-overlay .message p {
		font-size: 1.2rem;
	}
	.landscape-overlay .message .icon {
		font-size: 2.5rem;
	}
} */

@media (min-width: 600px) {
	.portrait-card.main {
		width: 350px;
		height: 450px;
	}
	.portrait-card.secondary {
		width: 300px;
		height: 380px;
		z-index: 3;
	}
	.portrait-card.tertiary {
		width: 250px;
		height: 320px;
		z-index: 1;
		opacity: 0.8;
	}
}

@media (min-width: 1200px) {
	.responsive-logo-footer-img {
		width: 180px;
		height: 180px;
		margin-left: 2em;
	}
	.hero-content {
		position: fixed;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 100%;

		display: flex;
		flex-direction: column;
		justify-content: start;
		align-items: start;
		padding: 0 0.5em;
	}
	.hero-text {
		margin-inline: 0;
		margin-left: 20px;
		text-align: left;
		max-width: 600px;
	}
	.hero-title {
		font-size: 4rem;
	}
	.portrait-gallery {
		position: fixed;
		right: 0;
		margin: 10px 0;
		margin-left: auto;
	}
	.portrait-card.main {
		width: 350px;
		height: 450px;
	}
	.portrait-card.secondary {
		width: 300px;
		height: 380px;
		z-index: 3;
	}
	.portrait-card.tertiary {
		width: 250px;
		height: 320px;
		z-index: 1;
		opacity: 0.8;
	}
	.footer {
		height: 200px;
	}
	.section-nav {
		grid-row: 1;
		grid-column: 1;
		justify-content: start;
		align-items: start;
	}

	.social-icons {
		margin-left: 2em;
	}

	.footer-logo {
		width: 150px;
		height: 150px;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		display: block;
	}

	.copy-right {
		grid-row: 2;
		grid-column: 1/-1;
		text-align: center;
	}
}
