:root {
	--accent: #1b1b32;
	--accent-hover: #0a0a23;
	--background: #f5f6fa;
	--sidebar-bg: #f5f6fa;
	--sidebar-link-bg: #d1d5db;
	--sidebar-link-hover-bg: #c2c7cf;
	--sidebar-link: #242424;
	--sidebar-link-active: #fff;
	--sidebar-social: #242424;
	--author-card-bg: #b5c7e3
}

html,
body {
	background: var(--background);
	color: var(--sidebar-link);
	font-family: 'Inter', sans-serif;
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.6;
	width: 100vw;
	min-height: 100vh;
	box-sizing: border-box
}

body {
	min-height: 100vh;
	width: 100vw;
	overflow-x: hidden
}

.nav a {
	border-radius: 25px !important;
	padding: 10px 20px;
	background: var(--sidebar-link-bg);
	transition: background-color 0.3s ease
}

.nav a:hover {
	border-radius: 25px !important;
	background: var(--sidebar-link-hover-bg)
}

.nav a.active {
	border-radius: 25px !important;
	background: var(--accent);
	color: var(--sidebar-link-active)
}

.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	width: 268px;
	background: var(--sidebar-bg);
	padding: 1.3rem 1.28rem 1.05rem 1.28rem;
	display: flex;
	flex-direction: column;
	z-index: 20;
	justify-content: space-between;
	box-sizing: border-box;
	overflow-y: auto;
	max-height: 100vh
}

.twitter-blue-card {
	max-width: 500px;
	background: #1da1f2;
	padding: 1.5rem 2rem;
	box-shadow: 0 8px 36px rgb(29 161 242 / .2)
}

.twitter-blue-card h1 {
	color: #000 !important;
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: .7rem;
	letter-spacing: .01em
}

.twitter-blue-card p {
	color: #000 !important;
	font-size: 1.14rem;
	line-height: 1.7;
	margin: 0
}

.twitter-blue-card :not(.nav) a {
	color: #e0245e !important;
	text-decoration: underline;
	transition: color 0.2s ease
}

.twitter-blue-card :not(.nav) a:hover {
	color: #d01e4a !important;
	text-decoration: none
}

.author-card {
	display: flex;
	align-items: center;
	background: #1da1f2;
	border-radius: 25px;
	padding: .9rem .7rem;
	margin-bottom: 2.5rem;
	width: 100%;
	box-sizing: border-box;
	flex-wrap: nowrap
}

.author-card img {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #e0245e !important
}

.author-info {
	padding-left: .45rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.author-info h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: #e0245e
}

.author-info p {
	margin: 0;
	font-size: .89rem;
	color: #fff;
	font-weight: 400
}

.nav {
	display: flex;
	flex-direction: column;
	gap: .7rem;
	width: 100%;
	margin-bottom: 1rem
}

.nav a {
	display: flex;
	align-items: center;
	width: 100%;
	padding: .92rem 1.3rem;
	background: var(--sidebar-link-bg);
	color: var(--sidebar-link);
	border: 2px solid var(--sidebar-border, transparent);
	border-radius: 25px !important;
	font-size: 1.08rem;
	font-weight: 600;
	text-decoration: none;
	box-sizing: border-box;
	cursor: pointer;
	margin: 0;
	box-shadow: none;
	transition: background 0.13s, color 0.13s, border 0.13s;
	border-left: 2px solid var(--sidebar-border, transparent)
}

.nav a:hover,
.nav a:focus {
	background: var(--sidebar-link-hover-bg);
	color: var(--accent);
	border-color: var(--sidebar-link-bg);
	outline: none
}

.nav a.active {
	background: #1da1f2;
	color: #fff;
	border-color: #187ec9;
	font-weight: 800;
	box-shadow: 0 2px 18px #1da1f235;
	border-radius: 25px
}

.nav a.active:hover,
.nav a.active:focus {
	background: #187ec9;
	color: #fff;
	border-color: #187ec9
}

.social {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 1.15rem;
	padding: .6rem 0 1.2rem 0
}

.social-icon {
	position: relative;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: box-shadow 0.17s cubic-bezier(.68, -.55, .265, 1.55), background 0.18s;
	box-shadow: 0 3px 14px rgb(0 0 0 / .09);
	cursor: pointer;
	z-index: 1
}

.social-icon svg {
	width: 32px;
	height: 32px;
	display: block;
	color: #242424;
	filter: none;
	transition: color 0.18s, filter 0.18s
}

.social-icon .tooltip {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%) scale(.9);
	opacity: 0;
	pointer-events: none;
	background: #232b35;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	border-radius: 6px;
	padding: 4px 13px;
	box-shadow: 0 2px 14px rgb(0 0 0 / .14);
	white-space: nowrap;
	letter-spacing: .01em;
	transition: all 0.25s cubic-bezier(.68, -.55, .265, 1.55);
	z-index: 10
}

.social-icon .tooltip::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	bottom: -4px;
	width: 8px;
	height: 8px;
	background: #232b35;
	z-index: 10
}

.social-icon:hover .tooltip {
	top: -32px;
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0) scale(1)
}

.social-icon.twitter:hover,
.social-icon.twitter:focus,
.social-icon.twitter:hover .tooltip,
.social-icon.twitter:hover .tooltip::before {
	background: #1da1f2
}

.social-icon.twitter:hover svg {
	filter: drop-shadow(0 0 6px #1da1f2)
}

.social-icon.twitter:hover .tooltip,
.social-icon.twitter:hover .tooltip::before {
	background: #1da1f2;
	color: #fff
}

.social-icon.spotify:hover,
.social-icon.spotify:focus,
.social-icon.spotify:hover .tooltip,
.social-icon.spotify:hover .tooltip::before {
	background: #1ed760
}

.social-icon.spotify:hover svg {
	filter: drop-shadow(0 0 6px #1ed760)
}

.social-icon.spotify:hover .tooltip,
.social-icon.spotify:hover .tooltip::before {
	background: #1ed760;
	color: #fff
}
.contact-card a[aria-label="TikTok"] svg {
  width: 28px;
  height: 28px;
}
/* TikTok hover: black pill + white glyph */
.social-icon.tiktok:hover,
.social-icon.tiktok:focus,
.social-icon.tiktok:hover .tooltip,
.social-icon.tiktok:hover .tooltip::before {
  background: #010101;
}

.social-icon.tiktok:hover svg {
  color: #fff;                       /* turn the icon white */
  filter: drop-shadow(0 0 6px #010101);
}

.social-icon.tiktok:hover .tooltip,
.social-icon.tiktok:hover .tooltip::before {
  background: #010101;               /* tooltip matches background */
  color: #fff;                       /* tooltip text stays readable */
}

.social-icon.linktree:hover,
.social-icon.linktree:focus,
.social-icon.linktree:hover .tooltip,
.social-icon.linktree:hover .tooltip::before {
	background: #30D158
}

.social-icon.linktree:hover svg {
	filter: drop-shadow(0 0 6px #30D158)
}

.social-icon.linktree:hover .tooltip,
.social-icon.linktree:hover .tooltip::before {
	background: #30D158;
	color: #fff
}

.main-content {
	margin-left: 300px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	min-height: 100vh;
	background: #f5f6fa !important;
	transition: margin-left 0.18s;
	padding-top: 1.3rem;
	width: auto
}

.portfolio-center {
	width: 100%;
	max-width: 510px;
	margin-left: 0;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	gap: .7rem
}

.main-card {
	background: var(--sidebar-link-bg);
	border-radius: 0;
	padding: 2.6rem 2.1rem 2.3rem 2.1rem;
	box-shadow: 0 2px 12px rgb(44 62 80 / .09);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	max-width: 520px;
	margin: 0
}

@media (max-width:750px) {
	.sidebar {
		display: none !important
	}

	.main-content {
		margin-top: 54px;
		margin-left: 0 !important;
		padding-top: 0 !important;
		width: 100vw;
		display: block
	}

	.portfolio-center {
		max-width: 99vw;
		width: 100vw;
		margin: 0 auto;
		padding: 0
	}

	.hamburger {
		display: flex
	}

	body.no-scroll {
		overflow: hidden
	}
}

.sidebar-mobile-modal {
	display: none;
	position: fixed;
	z-index: 998;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgb(245 246 250 / .98);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	animation: fadeInMenu 0.18s;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden
}

.sidebar-mobile-modal.open {
	display: flex
}

.sidebar-mobile-content {
	display: flex;
	flex-direction: column;
	width: 100vw;
	max-width: 480px;
	box-sizing: border-box;
	padding-left: 3vw;
	padding-right: 3vw;
	gap: 1.7rem;
	min-height: 0;
	max-height: 100vh;
	flex: 1 1 auto;
	padding-top: 6rem
}

.sidebar-mobile-author-card {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.2rem;
	margin-top: 1.6rem;
	width: 100%
}

.sidebar-mobile-author-card img {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: #e4e7eb;
	object-fit: cover;
	border: 2px solid #e0245e;
	box-shadow: none
}

.sidebar-mobile-nav {
	flex: 1 1 auto;
	overflow-y: auto;
	min-height: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: .7rem;
	align-items: center;
	justify-content: flex-start;
	-webkit-overflow-scrolling: touch
}

.sidebar-mobile-nav a {
	--c1: #fff;
	--c2: #1da1f2;
	font-size: 1.05rem;
	font-weight: 700;
	padding: .69em 1em;
	background: #fff0;
	border: 2.5px solid var(--c2);
	border-radius: .23em;
	color: var(--c2);
	margin-bottom: .09rem;
	margin-top: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	transition: border-color 0.22s cubic-bezier(.83, 0, .17, 1), box-shadow 0.24s cubic-bezier(.83, 0, .17, 1);
	box-shadow: none;
	outline: none;
	min-width: 0;
	min-height: 0;
	text-align: left;
	box-sizing: border-box
}

.sidebar-mobile-nav a .text {
	color: var(--c2);
	font-weight: 700;
	letter-spacing: .01em;
	width: 100%;
	font-size: inherit
}

.sidebar-mobile-nav a.active {
	color: #fff !important;
	background: #1da1f2 !important;
	border-color: #187ec9 !important;
	box-shadow: 0 2px 18px #1da1f235
}

.sidebar-mobile-nav a.active .text {
	color: #fff !important
}

.sidebar-mobile-nav a:active {
	filter: brightness(.95);
	transform: scale(.98)
}

.sidebar-mobile-nav a,
.sidebar-mobile-nav a:visited,
.sidebar-mobile-nav a:active,
.sidebar-mobile-nav a:focus {
	text-decoration: none !important
}

.mobile-profile-photo {
	display: none
}

@media (max-width:768px) {
	.mobile-profile-photo {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 90px;
		z-index: 1200;
		background: #f5f6fa;
		border-bottom: 1px solid #e5e7eb;
		box-shadow: 0 1px 7px #0001
	}

	.mobile-profile-photo img {
		width: 48px;
		height: 48px;
		border-radius: 50%;
		object-fit: cover;
		border: 4px solid #e0245e;
		margin-top: 18px;
		margin-left: .5rem;
		margin-right: .5rem
	}

	.main-content {
		margin-top: 90px !important
	}
}

.photo-gallery {
	display: flex;
	flex-direction: column;
	gap: 1.7rem;
	width: 100%;
	margin-left: 0;
	margin-right: auto
}

.contact-card {
	background: #D1D5DB;
	padding: 1.6rem 1.4rem;
	max-width: 430px;
	display: flex;
	flex-direction: column
}

.gallery-photo {
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: cover;
	border-radius: 0;
	box-shadow: 0 2px 14px rgb(33 34 46 / .08);
	background: #d1d5db;
	transition: box-shadow 0.18s;
	display: block
}

.photo-gallery {
	width: 100%;
	max-width: 100%;
	margin: 0 auto
}

.gallery-photo {
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: cover;
	display: block
}

@media (max-width:600px) {
	.portfolio-center {
		padding: 0 1vw;
		max-width: 99vw;
		width: 100vw
	}

	.main-card {
		padding: 1.1rem .7rem 1.1rem .7rem;
		max-width: 99vw
	}

	.main-btn-row {
		flex-direction: column;
		gap: 1rem;
		align-items: center
	}

	.contact-card {
		max-width: 100vw;
		padding: 1.1rem .4rem;
		border-width: 1px
	}

	.contact-card svg {
		width: 26px;
		height: 26px
	}

	.sidebar-mobile-author-card img {
		width: 52px;
		height: 52px
	}

	.sidebar-mobile-content {
		max-width: 96vw
	}
}

.about-author,
.about-author * {
	font-size: 0.89rem !important;
	font-family: 'Inter', 'Segoe UI', Arial, sans-serif !important;
	color: #d3d8e8 !important;
	font-weight: 400 !important;
	line-height: 1.6 !important;
	letter-spacing: 0.01em !important
}

.about-author h1 {
	font-size: 1.08rem !important;
	font-weight: 700 !important;
	color: #b5c7e3 !important;
	margin-bottom: 0.5rem !important;
	letter-spacing: 0.01em !important
}

.about-author a {
	color: #55c2ff !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	border: none !important;
	background: none !important;
	box-shadow: none !important;
	padding-bottom: 0 !important;
	font-size: 0.89rem !important;
	transition: color 0.13s !important
}

.about-author a:hover,
.about-author a:focus {
	color: #fff !important;
	background: none !important;
	border: none !important;
	text-shadow: none !important;
	outline: none !important
}

.about-author h1 {
	text-align: center !important
}

.sidebar .slice {
	--c1: #fff;
	--c2: #1da1f2;
	--size-letter: 1.05rem;
	padding: .69em 1em;
	font-size: var(--size-letter);
	background-color: #fff0;
	border: 2.5px solid var(--c2);
	border-radius: .23em;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	transition: border-color 0.22s cubic-bezier(.83, 0, .17, 1), box-shadow 0.24s cubic-bezier(.83, 0, .17, 1);
	margin-bottom: .09rem;
	margin-top: 0;
	box-shadow: none;
	outline: none;
	min-width: 0;
	min-height: 0;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: flex-start
}

.sidebar .slice>.text {
	font-weight: 700;
	color: var(--c2);
	position: relative;
	z-index: 1;
	letter-spacing: .01em;
	transition: color 420ms cubic-bezier(.83, 0, .17, 1);
	width: 100%;
	text-align: left;
	font-size: inherit
}

.sidebar .slice::after {
	content: "";
	width: 0;
	height: 300%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(30deg);
	background: var(--c2);
	opacity: .96;
	transition: width 0.7s cubic-bezier(.83, 0, .17, 1);
	z-index: 0
}

.sidebar .slice:hover>.text,
.sidebar .slice:focus>.text {
	color: var(--c1)
}

.sidebar .slice:hover::after,
.sidebar .slice:focus::after {
	width: 150%
}

.sidebar .slice:active {
	transform: scale(.98);
	filter: brightness(.95)
}

.sidebar .slice.active,
.sidebar .slice.active>.text {
	color: #fff;
	text-shadow: 0 1px 4px #187ec9bb;
	border-color: #1da1f2 !important
}

.sidebar .slice.active::after {
	width: 180%;
	background: #1da1f2 !important
}

.sidebar .slice.active {
	box-shadow: 0 2px 18px #1da1f235
}

.sidebar-mobile-nav .slice {
	--c1: #fff;
	--c2: #1da1f2;
	--size-letter: 1.05rem;
	padding: .69em 1em;
	font-size: var(--size-letter);
	background-color: #fff0;
	border: 2.5px solid var(--c2);
	border-radius: 25px;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	transition: border-color 0.22s cubic-bezier(.83, 0, .17, 1), box-shadow 0.24s cubic-bezier(.83, 0, .17, 1);
	margin-bottom: .09rem;
	margin-top: 0;
	box-shadow: none;
	outline: none;
	min-width: 0;
	min-height: 0;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: flex-start
}

.sidebar-mobile-nav .slice>.text {
	font-weight: 700;
	color: var(--c2);
	position: relative;
	z-index: 1;
	letter-spacing: .01em;
	width: 100%;
	font-size: inherit
}

.sidebar-mobile-nav .slice::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--c2);
	z-index: -1;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease
}

.sidebar-mobile-nav .slice:hover::after,
.sidebar-mobile-nav .slice:active::after {
	transform: scaleX(1)
}

.sidebar-mobile-nav .slice:hover>.text,
.sidebar-mobile-nav .slice:active>.text {
	color: #fff !important
}

.sidebar-mobile-nav .slice.active {
	color: #fff;
	text-shadow: 0 1px 4px #187ec9bb;
	border-color: #1da1f2 !important
}

.sidebar-mobile-nav .slice.active::after {
	width: 180%;
	background: #1da1f2 !important
}

.sidebar-mobile-nav .slice.active {
	box-shadow: 0 2px 18px #1da1f235
}

.sidebar-mobile-nav a .text {
	color: var(--c2);
	font-weight: 700;
	letter-spacing: .01em;
	width: 100%;
	font-size: inherit
}

.sidebar-mobile-nav a.active {
	color: #000 !important;
	background: #1da1f2 !important;
	border-color: #1da1f2 !important;
	box-shadow: 0 2px 18px #1da1f235;
	border-radius: 25px !important
}

.sidebar-mobile-nav a.active .text {
	color: #fff !important
}

.sidebar-mobile-nav a:active {
	filter: brightness(.95);
	transform: scale(.98)
}

.sidebar-mobile-nav a,
.sidebar-mobile-nav a:visited,
.sidebar-mobile-nav a:active,
.sidebar-mobile-nav a:focus {
	text-decoration: none !important
}

.sidebar .nav a:not(.slice) {
	background: none !important;
	border: none !important;
	color: inherit !important;
	box-shadow: none !important;
	padding: 0 !important
}

.menuButton {
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 13%;
	color: #090909;
	width: 3.5em;
	height: 3.5em;
	border-radius: .5em;
	background: #e8e8e8;
	border: 1px solid #e8e8e8;
	transition: all .3s;
	box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #fff;
	cursor: pointer;
	position: fixed;
	top: 10px;
	left: 18px;
	z-index: 1300
}

.menuButton:hover {
	border: 1px solid #fff
}

.menuButton:active {
	color: #666;
	box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #fff
}

.menuButton input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	display: none;
	visibility: hidden;
	position: absolute
}

.menuButton span {
	width: 30px;
	height: 4px;
	background: #131313;
	border-radius: 100px;
	transition: 0.3s cubic-bezier(.68, -.55, .27, 1.55);
	display: block
}

.menuButton input[type="checkbox"]:checked~.top {
	transform: translateY(290%) rotate(45deg);
	width: 40px
}

.menuButton input[type="checkbox"]:checked~.mid {
	transform: translateX(-20px);
	opacity: 0
}

.menuButton input[type="checkbox"]:checked~.bot {
	transform: translateY(-270%) rotate(-45deg);
	width: 40px;
	box-shadow: 0 0 10px #495057
}

@media (max-width:750px) {
	.menuButton {
		display: flex
	}
}

.photography-swiper {
	width: 100%;
	max-width: 880px;
	margin: 0 auto 3rem auto;
	border-radius: 16px;
	box-shadow: none;
	background: #fff0
}

.photography-swiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff0;
	padding: 0;
	min-height: 64vh;
	height: auto
}

.photography-swiper img {
	max-width: 100%;
	max-height: 64vh;
	width: auto;
	height: auto;
	border-radius: 14px;
	box-shadow: none;
	object-fit: contain;
	background: #fff0;
	display: block;
	margin: auto
}

.swiper-button-next,
.swiper-button-prev {
	color: #fff;
	background: none;
	border: none;
	border-radius: 0;
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: none;
	top: 50%;
	transform: translateY(-50%);
	transition: color 0.13s;
	font-size: 2rem
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	color: #f5c843;
	background: none
}

.swiper-pagination-bullet {
	background: #bbb;
	opacity: .68
}

.swiper-pagination-bullet-active {
	background: #f5c843;
	opacity: 1
}

@media (max-width:640px) {
	.photography-swiper img {
		max-height: 42vh
	}

	.photography-swiper {
		max-width: 97vw;
		border-radius: 8px
	}

	.swiper-button-next,
	.swiper-button-prev {
		width: 36px;
		height: 36px
	}
}