body,
html {
	margin: 0;
	padding: 0;
	background-color: #fff;
	font-family: neue-haas-grotesk-display, sans-serif;
	scrollbar-width: thin;
	display: flex;
	flex-direction: column;
}

body {
	min-height: 100dvh;
	color: rgba(0, 0, 0, 0.87);
}

a {
	color: rgba(0, 0, 0, 0.87);
	text-decoration: none;
}

header {
	width: 100%;
	background-color: white;
}

.navbar {
	display: flex;
	justify-content: space-between; /* Maintains text on the left and right */
	align-items: center; /* Aligns content to the bottom */
	box-sizing: border-box;
	background-color: white;
	padding: 24px 96px;
}

.nav-logo {
	font-weight: 300;
	font-style: normal;
	font-size: 32px; /* Adjust size as needed */
	text-decoration: none;
}

.logo {
	width: 80px;
	height: 80px;
	/* margin: 0 32px; */
}

.nav-links {
	display: flex;
}

@media (max-width: 599px) {
	.navbar {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 24px;
		gap: 16px;
	}
}

.nav-item {
	font-family: neue-haas-grotesk-display, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 20px;
	text-decoration: none;
	border-radius: 20.5px;
	padding: 8px 20px;

	transition: background-color 0.2s ease-in-out;
}

.nav-item:hover {
	background-color: rgba(0, 0, 0, 0.08);
}

main {
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: center;
	align-items: center;
	padding: 24px 80px 80px 80px;
}

@media (max-width: 959px) {
	.navbar {
		padding: 24px 48px;
	}

	main {
		padding: 24px;
	}
}

.gallery {
	column-count: 3;
	column-gap: 1em;
	padding: 1em;
}

.gallery img {
	width: 100%;
	margin-bottom: 1em;
	display: block;
	pointer-events: none;
}

@media (max-width: 1280px) {
	.gallery {
		column-count: 2;
	}
}

@media (max-width: 720px) {
	.gallery {
		column-count: 1;
	}
}

.about-container {
	display: flex;
	align-items: center;
	gap: 80px;
	max-width: 960px;
}

.about-image {
	max-width: 360px;
}

.about-text p {
	text-align: justify;
	font-size: 18px;
}

@media (max-width: 959px) {
	.about-container {
		flex-direction: column; /* Stacks the flex items vertically */
		gap: 40px; /* Adds space between the image and text */
	}

	.about-text {
		max-width: 520px;
	}
}

.shop-announcement {
	text-align: center;
	font-size: 20px;
}

.shop-announcement p {
	margin: 20px 0;
	font-family: neue-haas-grotesk-display, sans-serif;
	font-style: normal;
	font-size: 20px;
	font-weight: 300;
}

.shop-announcement p.header {
	font-weight: 600;
}

footer {
	/*text-align: center;
	width: 100%;*/
	padding: 24px;
}

.social-links {
	display: flex;
	justify-content: center;
	align-items: center;
}

.social-links a {
	margin: 64px 10px;
}

.social-links img {
	width: 24px;
	height: auto;
}

.albums {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	grid-gap: 32px;
	max-width: 1440px;
	width: 100%;
}

.album {
	display: flex;
	flex-direction: column;
	/* align-items: center; */
}

.album {
	text-decoration: none;
	font-size: 14px;
}

.image-wrapper {
	display: flex;
	align-items: center;
	flex: 1;
}

.album img {
	width: 100%;
}

p {
	letter-spacing: 0.5px;
	max-width: 60ch;
}

.description {
	width: 100%;
	padding: 16px;
	box-sizing: border-box;
}
