/* Hair By Indie - Dark, Supermodern, Elegant Theme */
:root {
	--primary-color: #1a1a1a;
	--secondary-color: #2d2d2d;
	--accent-color: #c9a96e;
	--text-light: #ffffff;
	--text-muted: #b0b0b0;
	--gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--primary-color);
	color: var(--text-light);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

.loading-spinner {
	width: 60px;
	height: 60px;
	border: 3px solid var(--secondary-color);
	border-top: 3px solid var(--accent-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: var(--transition);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
}

.logo img {
	height: 40px;
	width: auto;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-link {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.nav-link:hover {
	color: var(--accent-color);
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent-color);
	transition: var(--transition);
}

.nav-link:hover::after {
	width: 100%;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--text-light);
	transition: var(--transition);
}

/* Hero Section */
.hero {
	height: 100vh;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("/assets/images/hero-bg.jpg") center/cover;
	opacity: 0.1;
	z-index: -1;
}

.hero-home {
	background-image: url("/assets/images/hero-bg.jpg");
	background-size: 110%;
	background-position: center;
	background-attachment: fixed;
	animation: zoomInOut 20s ease-in-out infinite;
}

@keyframes zoomInOut {
	0%,
	100% {
		background-size: 110%;
	}
	50% {
		background-size: 120%;
	}
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.hero-content h1 {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--text-light), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: fadeInUp 1s ease;
	line-height: 1.2;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.hero-content p {
	font-size: 1.2rem;
	color: var(--text-muted);
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: var(--accent-color);
	color: var(--primary-color);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: var(--transition);
	animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

/* Sections */
.section {
	padding: 5rem 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--text-light);
}

/* Cards */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.card {
	background: var(--secondary-color);
	border-radius: 15px;
	padding: 2rem;
	transition: var(--transition);
	border: 1px solid rgba(201, 169, 110, 0.6);
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow);
	border-color: var(--accent-color);
}

.card h3 {
	color: var(--accent-color);
	margin-bottom: 1rem;
	text-align: center;
}

.card p {
	color: var(--text-muted);
	flex-grow: 1;
	margin-bottom: 1.5rem;
	text-align: center;
}

.card-button {
	align-self: center;
	padding: 0.75rem 1.5rem;
	background: transparent;
	border: 2px solid var(--accent-color);
	color: var(--accent-color);
	text-decoration: none;
	border-radius: 25px;
	transition: var(--transition);
	margin-top: auto;
	text-align: center;
}

.card-button:hover {
	background: var(--accent-color);
	color: var(--primary-color);
}

/* Footer */
.footer {
	background: var(--secondary-color);
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	color: var(--accent-color);
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--accent-color);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(201, 169, 110, 0.1);
	color: var(--text-muted);
}

/* Go to Top Button */
.go-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	color: var(--text-light);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	z-index: 1000;
}

.go-top:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.go-top i {
	color: white !important;
}

/* DateTime Input Calendar Icon */
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
	filter: invert(1) !important;
	cursor: pointer;
}

input[type="datetime-local"]::-webkit-inner-spin-button {
	filter: invert(1) !important;
}

/* Contact Form Button */
#contactForm .btn-primary {
	font-size: 1.2rem !important;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	background: var(--secondary-color);
	padding: 1.5rem;
	border-radius: 15px;
	border: 1px solid var(--accent-color);
	z-index: 1001;
	display: none;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.cookie-btn {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	transition: var(--transition);
}

.cookie-accept {
	background: var(--accent-color);
	color: var(--primary-color);
}

.cookie-decline {
	background: transparent;
	color: var(--accent-color);
	border: 1px solid var(--accent-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #b8965f;
}

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

/* Extra Small Mobile */
@media (max-width: 480px) {
	.hero-content {
		padding: 0 1rem;
	}

	.section h3[style*="font-size: 2rem"] {
		font-size: 1.5rem !important;
	}

	.section h3[style*="font-size: 1.8rem"] {
		font-size: 1.4rem !important;
	}

	.section
		div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 1rem"]
		img {
		height: 120px !important;
	}

	.section div[style*="grid-template-columns: repeat(3, 1fr)"] {
		grid-template-columns: 1fr !important;
		gap: 1.5rem !important;
	}

	.section div[style*="grid-template-columns: repeat(3, 1fr)"] img {
		height: 200px !important;
	}

	.section div[style*="position: absolute"][style*="top: 20px"] {
		position: static !important;
		display: inline-block !important;
		margin-bottom: 1rem !important;
	}

	.section div[style*="height: 400px"] img {
		height: 250px !important;
	}

	.hero-content h1 {
		font-size: 1.6rem;
		line-height: 1.1;
		margin-bottom: 0.5rem;
	}

	.hero-content p {
		font-size: 1rem;
		line-height: 1.4;
	}

	.section-title {
		font-size: 1.5rem;
		padding: 0 1rem;
	}

	.container {
		padding: 0 1rem;
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.hero-content p br {
		display: none;
	}
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: var(--primary-color);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: var(--transition);
	}

	.nav-menu.active {
		left: 0;
	}

	.hero-content {
		padding: 0 1.5rem;
	}

	.hero-content h1 {
		font-size: 2rem;
		line-height: 1.2;
		word-wrap: break-word;
		hyphens: auto;
		overflow-wrap: break-word;
	}

	.section-title {
		font-size: 1.8rem;
		text-align: center;
		line-height: 1.3;
		word-wrap: break-word;
		hyphens: auto;
	}

	.cards-grid {
		grid-template-columns: 1fr;
		justify-items: center;
		place-items: center;
	}

	.card {
		text-align: center;
		width: 100%;
		max-width: 350px;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.card h3 {
		text-align: center;
	}

	.card p {
		text-align: center;
	}

	.card-button {
		align-self: center;
		text-align: center;
	}

	.section {
		text-align: center;
	}

	.container {
		text-align: center;
	}

	.section div[style*="grid-template-columns: 1fr 1fr"] {
		grid-template-columns: 1fr !important;
		gap: 2rem !important;
		text-align: center;
	}

	.section div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 1rem"] {
		grid-template-columns: 1fr 1fr !important;
		gap: 0.5rem !important;
	}

	.modal-content {
		text-align: center;
	}

	.modal-content div {
		text-align: center;
		justify-content: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.btn-primary {
		margin: 0 auto;
		text-align: center;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.cookie-popup {
		left: 1rem;
		right: 1rem;
		text-align: center;
	}

	.cookie-buttons {
		flex-direction: column;
		align-items: center;
	}

	.search-container {
		justify-content: center;
		gap: 1rem;
	}

	.search-input {
		width: 100%;
	}

	.filter-buttons {
		justify-content: center;
		gap: 0.5rem;
	}

	.filter-btn {
		padding: 0.6rem 1rem;
		font-size: 0.85rem;
		min-width: 80px;
		height: 45px;
	}
}

/* Form Styles */
.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-light);
	font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 1rem;
	background: var(--secondary-color);
	border: 1px solid rgba(201, 169, 110, 0.3);
	border-radius: 8px;
	color: var(--text-light);
	font-size: 1rem;
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.btn-primary {
	background: var(--accent-color);
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 2000;
	justify-content: center;
	align-items: center;
}

.modal-content {
	background: var(--secondary-color);
	padding: 2rem;
	border-radius: 15px;
	max-width: 500px;
	width: 90%;
	position: relative;
	text-align: center;
	max-height: 80vh;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	color: var(--text-light);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Accordion */
.accordion-item {
	border: 1px solid rgba(201, 169, 110, 0.1);
	border-radius: 8px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.accordion-header {
	background: var(--secondary-color);
	padding: 1rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--transition);
}

.accordion-header:hover {
	background: rgba(201, 169, 110, 0.1);
}

.accordion-content {
	padding: 0 1rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.accordion-content.active {
	padding: 1rem;
	max-height: 200px;
}

/* Search Bar */
.search-container {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 3rem;
	align-items: center;
}

.search-input {
	width: 100%;
	max-width: 500px;
}

.search-input input {
	height: 50px;
	font-size: 1rem;
	border-radius: 25px;
	padding: 0 1.5rem;
}

.filter-buttons {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: center;
}

.filter-btn {
	padding: 0.75rem 1.5rem;
	background: transparent;
	border: 2px solid var(--accent-color);
	color: var(--accent-color);
	border-radius: 25px;
	cursor: pointer;
	transition: var(--transition);
	font-weight: 500;
	font-size: 0.9rem;
	min-width: 100px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.filter-btn.active,
.filter-btn:hover {
	background: var(--accent-color);
	color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(201, 169, 110, 0.3);
}
