:root {
	--font-body: "Albert Sans", sans-serif;
	--font-title: "Cormorant Garamond", serif;
	--font-quote: "Cormorant",serif;
	--color-primary: #826858;
	--color-secondary: #c8bc91;
	--color-steel: #71797e;
	--color-green: #2f4f4f;
	--color-dark: #1c1e23;
	--color-light: #faf9f6;
	--sidebar-width: 80px;
}

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

body {
	font-family: var(--font-body);
	line-height: 1.6;
	color: var(--color-dark);
	background: var(--color-light);
}

/* Hero Section Styles */
.hero {
	min-height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.7);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(28, 30, 35, 0.3);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	max-width: 800px;
	text-align: center;
	padding: 0 2rem;
}

.logo-container {
	margin-bottom: 3rem;
	animation: fadeInDown 1.2s ease-out;
}

.logo {
	width: 120px;
	height: 120px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.hero-title {
	font-family: var(--font-title);
	font-style: italic;
	font-weight: 600;
	color: var(--color-light);
	font-size: clamp(2.5rem, 6vw, 4rem);
	line-height: 1.2;
	margin-bottom: 1.5rem;
	letter-spacing: 0.02em;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards;
	animation-delay: 0.5s;
}

.hero-subtitle {
	font-family: var(--font-body);
	font-weight: 300;
	color: var(--color-light);
	font-size: clamp(1.1rem, 3vw, 1.5rem);
	max-width: 600px;
	margin: 0 auto 2rem;
	letter-spacing: 0.02em;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards;
	animation-delay: 1s;
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	color: var(--color-light);
	font-size: 2rem;
	opacity: 0;
	animation: bounce 2s infinite, fadeIn 1s ease-out forwards;
	animation-delay: 0s, 1.5s;
	z-index: 3;
}

/* Sidebar Styles */
.sidebar {
	width: var(--sidebar-width);
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(28, 30, 35, 0.05);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 0;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	border-radius: 0 2rem 2rem 0;
	backdrop-filter: blur(8px);
}

.sidebar.visible {
	opacity: 1;
	visibility: visible;
}

.nav-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
}

.nav-item {
	position: relative;
}

.nav-dot {
	width: 8px;
	height: 8px;
	background: var(--color-steel);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.nav-text {
	position: absolute;
	left: calc(100% + 1.5rem);
	top: 50%;
	transform: translateY(-50%);
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
}

.nav-number {
	font-family: var(--font-title);
	font-size: 0.85rem;
	color: var(--color-secondary);
	font-style: italic;
}

.nav-title {
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--color-steel);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.nav-item:hover .nav-text {
	opacity: 1;
	visibility: visible;
}

.nav-item.active .nav-text {
	opacity: 1;
	visibility: visible;
}

.nav-item.active .nav-title {
	color: var(--color-primary);
}

.nav-dot:hover,
.nav-dot.active {
	background: var(--color-primary);
	transform: scale(1.5);
}

/* Content Styles */
.main-content {
	width: 100%;
}

.section-title {
	font-family: var(--font-title);
	font-style: italic;
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--color-primary);
	text-align: center;
}

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

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0) translateX(-50%);
	}
	40% {
		transform: translateY(-30px) translateX(-50%);
	}
	60% {
		transform: translateY(-15px) translateX(-50%);
	}
}

/* Responsive Styles */
/* Footer Styles */
.footer {
	background: var(--color-dark);
	color: var(--color-light);
	padding: 6rem 0 0;
	margin-left: var(--sidebar-width);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 4rem;
}

.footer-section {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-logo {
	width: 120px;
	height: auto;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

.footer-title {
	font-family: var(--font-title);
	font-style: italic;
	color: var(--color-secondary);
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.footer-nav {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-nav a,
.social-link {
	color: var(--color-light);
	text-decoration: none;
	font-size: 0.9rem;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.footer-nav a:hover,
.social-link:hover {
	opacity: 1;
	color: var(--color-secondary);
}

.social-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-bottom {
	margin-top: 4rem;
	padding: 1.5rem 0;
	border-top: 1px solid rgba(250, 249, 246, 0.1);
}

.footer-bottom-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: rgba(250, 249, 246, 0.6);
}

.footer-legal {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.footer-legal a {
	color: rgba(250, 249, 246, 0.6);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-legal a:hover {
	color: var(--color-secondary);
}

.separator {
	color: rgba(250, 249, 246, 0.3);
}

@media (max-width: 768px) {
	.footer {
		margin-left: var(--sidebar-width);
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.footer-bottom-content {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}
