:root {
	/* Colors */
	--bg-dark: #0e0e0e;     /* Almost black for the background */
	--bg-surface: #1e1e1e;  /* Slightly lighter for cards/sections */
	--text-main: #e0e0e0;   /* Soft white for readability */
	--text-muted: #a0a0a0;

	--pastel-pink: #ffb6c1;
	--pastel-purple: #cda4fc;
	--pastel-blue: #aee4ff;

	--font-heading: 'Crimson Text', serif;
	--font-body: 'Questrial', sans-serif;

}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


.bg-art-layer {
	position: fixed;
	top: 60px; /* TODO: Scale with size of navbar*/
	left: 0;
	width: 100%;
	height: 100%;

	background-image: url('images/decor.png');
	background-size: contain;
	background-position: top center;
	background-repeat: repeat-x;

	opacity: 0.7;
	z-index: -1;

	mix-blend-mode: screen;
	pointer-events: none;
}

.bg-star-layer {
	position: fixed !important;
	top: 60px;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.7;
	background-image: url('images/stars.png');
	background-size: contain;
	background-position: initial;
	background-repeat: repeat;
	filter: blur(2px);
}



html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg-dark) !important;
	color: var(--text-main);
	font-family: var(--font-body), serif;
	line-height: 1.6;
}

h1, h2, h3,.logo {
	font-family: var(--font-heading), serif;
	font-weight: normal;
}

a {
	text-decoration: none;
	color: var(--text-main);
	transition: color 0.3s ease;
}

a:hover {
	color: var(--pastel-pink);
}

.menu-toggle { display: none;}

@media (max-width: 900px) {
	.menu-toggle {
		display: flex;
		flex-direction: column;
		gap: 5px;
		background: none;
		border: none;
		cursor: pointer;
		z-index: 1001;
	}

	.bar {
		width: 30px;
		height: 3px;
		background-color: var(--pastel-pink);
		transition: all 0.3s ease;
		box-shadow: 0 0 5px var(--pastel-pink);
	}

	.nav-menu {
		position: fixed;
		top: 0;

		right: -100%; /* Start off-screen */
		width: 100%;
		height: 100vh;
		background-color: rgba(10, 10, 10, 1);
		backdrop-filter: blur(10px);
		display: flex;
		align-items: center;
		justify-content: center;
		transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
		z-index: 1000;
	}

	/* When the menu is open */
	.nav-menu.active {
		right: 0;
	}

	.nav-links {
		flex-direction: column;
		gap: 3rem;
		text-align: center;
		flex-shrink: 0;
	}

	.nav-links a {
		font-size: 2rem;
		font-family: var(--font-heading);
	}

	/* Hamburger to 'X' animation */
	.menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
	.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
	.menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

.site-header {
	background-color: rgba(18, 18, 18, 1);

	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 100;
	height: 70px;

	padding: 0.2rem 2rem 0.2rem 1rem;

	/*background: linear-gradient(to bottom, var(--bg-surface), var(--bg-dark));*/
}

@keyframes gradient_shift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.site-header::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;

	background:  linear-gradient(to right, var(--pastel-purple) 10%, var(--pastel-blue) 20%, var(--pastel-pink) 30%, transparent 40% );

	animation: gradient_shift 5s infinite linear;
}

.top-logo-container {
	align-content: center;
	display: flex;
	height: 100%;
	gap: 1rem;


}

.icon-img {
	max-width: 100px;
	max-height: 100px;
	height: 60px;
	width: 70px;
}
.logo-img {
	max-width: 1200px;
	width: 75%;
}

.logo-img-small {
	height: 60px;
	width: 250px;
	max-width: 500px;

}

.nav-links {
	list-style: none;
	display: flex;
	gap: 2rem;
	align-items: center;
	white-space: nowrap;
	flex-shrink: 0;
}

.btn-contact {
	border: 1px solid var(--pastel-pink);
	padding: 0.5rem 1rem;
	border-radius: 4px;
	font-size: 1.1rem;
	font-weight: bold;
	background-color: var(--pastel-purple);
	color: var(--bg-dark);
	transition: transform 0.2s ease, box-shadow 0.2s ease;

	white-space: nowrap;
	flex-shrink: 0;
}

.btn-contact:hover {
	transform: translateY(-2px);
	background-color: var(--pastel-purple);
	color: var(--bg-dark);

	box-shadow: 0 4px 15px rgba(179, 158, 181, 0.3);

}


.gallery-button-section {
	display: flex;
	gap: 1rem;
	margin: 0.5rem 3rem;
	box-sizing: border-box;

	background-color: var(--bg-surface);
	padding: 0.5rem;
}

.sort-button {
	flex: 1 0 auto;
	padding: 0.5rem 0.5rem;
	text-align: center;
	white-space: nowrap;

	font-size: 0.9rem;
	font-family: var(--font-heading), serif;
	line-height: 1;
	background-color: var(--pastel-purple);
	border-radius: 8px;
	border-width: 0px;
}

.sort-button:hover {

}

.sort-button:active {

}

.hero {
	min-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;

}

.hero::after {
	content: "";
	z-index:-2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background: linear-gradient(to bottom, #0c1d2b 0%, var(--bg-dark) 100%);
}


.goth-separator {
	width: 80%;
	height: 2px;
	margin: 3rem auto;
	border: none;
	background: radial-gradient(circle, var(--pastel-purple) 40%, var(--pastel-blue) 60%, var(--pastel-pink) 80%, transparent 100% );
	box-shadow:  0 0 0px var(--pastel-purple);
	border-radius: 2px;
}

@media (max-width: 600px) {
	.goth-separator {
		width: 90%;
	}
}

.hero h1 {
	font-size: 4rem;
	line-height: 1.1;
	margin-bottom: 1rem;
}

.accent-text {
	color: var(--pastel-purple);
	font-style: italic;
}


.hero p {
	font-size: 1.3rem;
	max-width: 600px;
	margin: 0 auto 2rem auto;
	color: var(--text-muted);
}

.btn-primary {
	display: inline-block;
	background-color: var(--pastel-purple);
	color: var(--bg-dark);
	padding: 0.8rem 2rem;
	font-size: 1.2rem;
	font-weight: bold;
	border-radius: 4px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(179, 158, 181, 0.3);
	color: var(--bg-dark);
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	width: fit-content;
	height: fit-content;
	margin: auto auto 2rem;
	/*color: var(--pastel-pink);*/
	background: var(--pastel-pink);
	background: linear-gradient(to bottom, var(--pastel-pink) 30%, var(--pastel-blue) 60%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
	padding: 0 5%;
	max-width: 1400px;
	margin: 0 auto;
}

.art-card {
	background-color: var(--bg-surface);
	border: 1px solid #333;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.art-card:hover {
	transform: translateY(-5px);
	border-color: var(--pastel-purple);
	box-shadow: 0 0 20px var(--pastel-pink);
}

.art-card img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	display: block;
	border-bottom: 2px solid #333;
	transition:
			border-color 0.3s ease,
			filter 0.3s ease;
	filter: brightness(1.1) contrast(1.1);
}

.art-card:hover img {
	border-color: var(--pastel-purple);
}

.art-info { padding: 1.2rem; }

.art-info h3 {
	margin-bottom: 0.3rem;
	color: var(--pastel-pink);
	font-size: 1.1rem;
	line-height: 1.6;
}

.services-section {
	padding: 1.25rem;
	padding-top: 0;
	min-height:70vh;
	scroll-margin-top: 100px;
}
.services-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	padding: 0;

}

.service-card {
	background: var(--bg-surface);
	padding: 2rem;
	border-radius: 6px;
	border-top: 3px solid var(--pastel-blue);
	max-width: 400px;
	text-align: center;
}

.gallery-section {
	min-height: 50vh;
	scroll-margin-top: 100px;
}

.reviews-section {
	padding: 2rem 5%;
	padding-top: 0;
}

.reviews-container {
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	display: flex;
	padding: 0;
}

.review-card {
	background: var(--bg-surface);
	padding: 2rem;
	border-radius: 6px;
	border-top: 3px solid var(--pastel-blue);
	max-width: 400px;
	text-align: center;
}

.faq-section {
	padding: 4rem 5%;
	padding-top: 0;
	max-width: 1200px;
	margin: 0 auto;
	min-height: 100vh;
	scroll-margin-top: 100px;
}

.faq-grid {

	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2.5rem;
}

@media (max-width: 500px) {
	.faq-grid { grid-template-columns: 1fr; }
}

.faq-item {
	background: var(--bg-surface);
	padding: 2rem;
	margin-bottom: 12px;
	border-radius: 0 16px 16px 0;
	transition: transform 0.3s ease;
	border-left-style: double;
	border-left-width: 4px;
	border-left-color: var(--pastel-purple);
}

.faq-item:hover {
	transform: translateX(10px) skewY(-2.5deg);
	background: #1a1a1a;
}


.faq-item h3 {
	color: var(--pastel-pink);
	margin-bottom: 0.75rem;
	font-size: 1.4rem;
}

.faq-item p {
	color: var(--text-main);
	font-size: 1.1rem;
	line-height: 1.6;
}




.service-card h3 {
		color: var(--pastel-pink);
		margin-bottom: 0.75rem;
		font-size: 1.4rem;
}

.service-card p {
	color: var(--text-main);
	font-size: 1.1rem;
	line-height: 1.6;
}

@keyframes fade_in {
	from {opacity: 0; }
	to { opacity: 1; }
}

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

.modal {
	display: none;
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(5,5,5, 0.75);
	backdrop-filter: blur(8px);
	align-items: center;
	justify-content: center;
	flex-direction: column;

	/* This triggers the background fade */
	animation: fadeIn 0.3s ease-out forwards;
}

.modal-content {
	margin: auto;
	display: block;
	max-width: 90%;
	max-height: 80vh;
	margin-top: 5vh;
	border: 3px double var(--bg-surface);
	box-shadow: 0 0 30px rgba(255, 182, 193, 0.3);
	border-radius: 4px;
	object-fit: contain;

	/* This triggers the image zoom */
	animation: zoomIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

#caption {
	font-size: 1.1rem;
	text-align: center;
	margin: 1rem;
	color: var(--text-muted);
}

.close-modal { 
	position: absolute;
	top: 20px;
	right: 40px;
	color: var(--pastel-purple);
	font-size: 50px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s ease;
}

.close-modal:hover {
	color: var(--pastel-pink);
	text-shadow: 0 0 10px var(--pastel-pink);
}


.contact-section {
	padding: 0 5rem;
	margin: auto;
	scroll-margin-top: 60px;
	min-height: 85vh;
	max-width: 1200px;

}

.quote-basics-section {
	background: var(--bg-surface);
	padding: 2rem;
	margin-bottom: 12px;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	transition: transform 0.3s ease;
	border-top-style: solid;
	border-top-width: 4px;
	border-color: var(--pastel-blue);
	text-align: center;
}

.quote-basics-section:hover {

}
.contact-subtitle {
	color: var(--text-muted);
	margin-bottom: 1rem;
	font-style: italic;
}

.quote-basics-section {
	margin: 2rem;
}

.quote-basics-section h3 {
	margin: 1rem;
}

.quote-basics-section p {

	margin-left: 2rem;
	font-size: 1.1rem;
}

.social-grid {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;

	margin: 0 auto;
	font-size: 1.2rem;
	max-width: 85%;
}

.social-tile {
	background: var(--bg-surface);
	border: 1px solid #333;
	padding: 2rem;
	min-width: 250px;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	border-radius: 16px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	text-align: left;
}

.social-tile .icon {
	font-size: 3rem;
	color: var(--pastel-pink);
	text-shadow: 0 0 10px var(--pastel-pink);
}

.social-info h3 {
	margin: 0;
	font-size: 1.2rem;
	color: var(--text-main);
}

.social-info p {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.9rem;
}


.social-tile:hover {
	transform: translateY(-10px);
	border-color: var(--pastel-purple);
	box-shadow: 0 10px 30px rgba(205, 164, 252, 0.15), 0 0 15px rgba(205, 164, 252, 0.1);
}

.social-tile:hover .icon {
	color: var(--pastel-purple);
	text-shadow: 0 0 15px var(--pastel-purple);
}

.site-footer {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	text-align: center;
	padding: 2rem;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	border-top: 1px solid #333;
	color: var(--text-muted);
}


.e404-star-layer {
	position: fixed;
	background-image: url('images/404_stars.png');
	background-size: contain;

	background-position: center center;
	background-repeat: repeat;
	z-index: -3;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100vh;

	pointer-events: none;
}

.e404-glass-layer {
	position: fixed;
	background-image: url('images/404_glass.png');

	background-size: contain;

	background-position: center center;
	background-repeat: no-repeat;
	z-index: -2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	-webkit-mask-image: radial-gradient(circle, black 90%, transparent 100%);
	mask-image: radial-gradient(circle, black 90%, transparent 100%);
	-webkit-mask-size: contain;
	-webkit-mask-position: center center;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	scale: 1.5;
}



.e404-text-layer {
	position: fixed;
	background-image: url('images/404_text.png');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;

	width: 100%;
	height: 100%;
	top: 0;
	left: 0;

	pointer-events: none;
}


.e404-page {
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 100vh;
}

.e404-container {
	width: 100%;
	height: 100vh;
	padding-top: 70vh;
}