/******************* Global styles *******************/
body {
	font-family: 'Inter', sans-serif;
	font-size: 1.125rem;
	color: #737373;
	line-height: 110%;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	background-color: #fff;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
}

p,
ul {
	line-height: 1.7rem;
}


ul {
	list-style-type: disc;
	margin-left: 20px;
}


p {
	font-size: 1.1rem;
	margin: 0 0 20px;
}

strong {

	font-weight: 600;
}

a:hover {
	text-decoration: none;
}

a:visited {
	color: #000000;
}

.clearfix {
	clear: both;
}

.primary-cta {
	background-color: #000;
	color: #fff;
	padding: 5px 30px;
	text-decoration: none;
	border-radius: 2px;
	font-size: 0.9rem;
	display: inline-block;
}

.secondary-cta {
	background-color: #fff;
	color: #000;
	padding: 5px 30px;
	text-decoration: none;
	border-radius: 2px;
	display: inline-block;
	font-size: 0.9rem;
	border: 1px solid #e6e6e6
}




/******************* header *******************/
header {
	margin: 0 auto 0;
	background-color: #ffffffe6;
	border-bottom: 1px solid #f2f2f2;
	position: fixed;
	width: 100%;
	top: 0;

}

header .nav-container {
	display: flex;
	max-width: 1024px;
	margin: 0 auto;
	align-items: center;
	height: 4rem;
}

.back-home {
	line-height: 4rem;
	font-weight: 400;
	color: #000000;
	text-align: left;
	vertical-align: middle;
	width: 30px;
	margin: 0 0 0 20px;
}

.back-home a {
	display: block;
	height: 2em;
	color: #000;
}

.back-home a svg {
	/*background: url(../i/home.png) no-repeat left center;*/
	/*padding: 0 0 0 30px;*/
	text-decoration: none;
	transition: transform 0.3s;

}


/* Color: hsl(0 0% 45%) - muted gray */
.back-home a:hover svg {
	transform: scale(1.1);


}

/* Hover effects */



.back-home a span {
	display: none;
}

header .site-nav {
	width: 100%;
	list-style-type: none;
	text-align: right;

}

header .site-nav ul li {
	text-transform: uppercase;
	font-size: 0.9rem;
	margin: 0 0 0 10px;
	padding: 0 0 0 10px;
	display: inline-block;
	border-left: 1px solid #737373;
	line-height: 1em;
	text-align: center;
	vertical-align: middle;

}

header .site-nav ul li:first-child {
	border: none;
	margin-left: 0;
	padding-left: 0;
}

header .site-nav ul li a {
	color: #737373;
	display: inline-block;
	text-decoration: none;
	font-weight: 300;
	position: relative;
	letter-spacing: 0.025em;

}

header .site-nav ul li a.active {
	color: #000;
}

header .site-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: currentColor;
	transition: width 0.3s ease, left 0.3s ease;
}

header .site-nav ul li a:hover::after,
header .site-nav ul li a:focus::after {
	width: 100%;
	left: 0;
}

/* Visible focus styles for accessibility */
*:focus-visible {
	outline: 2px solid #000;
	outline-offset: 2px;
}

/* Skip link styling */
.skip-link {
	position: absolute;
	top: -40px;
	left: 10px;
	background: #000;
	color: #fff;
	padding: 8px 12px;
	border-radius: 2px;
	text-decoration: none;
}

.skip-link:focus {
	top: 10px;
}



header .available-now {
	position: absolute;
	top: -20px;
	right: -35px;
	font-size: 0.8rem;
	line-height: 0.8rem;
	background: linear-gradient(135deg, #00d4ff, #0099cc);
	color: white;
	padding: 4px 8px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
	transform: scale(0);
	opacity: 0;
	animation: badgeAppear 1s ease-out 1s forwards;
	z-index: 10;
	width: 90px;
	text-transform: none;
	text-align: center;
}

header .available-now::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, #00d4ff, #0099cc);
	border-radius: 14px;
	z-index: -1;
	opacity: 0;
	animation: pulseGlow 2s ease-in-out infinite;
}

/* Page load animation */
@keyframes badgeAppear {
	0% {
		transform: scale(0) rotate(-175deg);
		opacity: 0;
	}

	50% {
		transform: scale(1.1) rotate(-5deg);
		opacity: 1;
	}

	100% {
		transform: scale(1) rotate(5deg);
		opacity: 1;
	}
}

/* Subtle pulse animation */
@keyframes pulseGlow {

	0%,
	100% {
		opacity: 0;
		transform: scale(1);
	}

	50% {
		opacity: 0.3;
		transform: scale(1.05);
	}
}

/* Hover effect on parent */
header li:hover .available-now {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 212, 255, 0.5);
}

/* Stop animations after 5 seconds */
header .available-now.animations-ended::before {
	animation: none;
}



/******************** main content /********************/
.main-content {
	max-width: 53rem;
	margin: 0 auto;
	padding: 6rem 1rem 0;
}

.main-content li {
	margin: 3px 0;
}

.main-content a {
	color: #000000;
}

.marker-highlight {
	background: linear-gradient(120deg, #ffeb3b 0%, #fff176 100%);
	background-repeat: no-repeat;
	background-size: 0% 0.3em;
	background-position: left 95%;
	color: #000000;
	font-weight: 500;
	padding: 0 2px;
	text-decoration: none;
	animation: marker-draw 0.8s ease-out 1.5s forwards;
}

@keyframes marker-draw {
	from {
		background-size: 0% 0.3em;
	}

	to {
		background-size: 100% 0.3em;
	}
}


/* ===================== headline ===================== */
.main-content .title {
	font-size: 3.75rem;
	font-family: 'Playfair Display', 'serif';
	font-weight: 400;
	color: #000000;
	line-height: 4rem;
	margin: 0 0 30px;
	letter-spacing: -.025em;
}

.main-content .intro ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.main-content .intro li::before {
	content: "→ ";
}

.main-content .intro li {
	line-height: 1.8rem;
	margin: 0 0 10px;
	/* To create hanging indent */
	text-indent: -1.25em;
	padding-left: 1.2em;
}


/* ===================== content-container ===================== */
.content-container {
	margin: 0 0 3rem;
	padding: 20px;
	box-shadow: 0 1px 3px 0 hsl(0 0% 0% / .1), 0 1px 2px -1px hsl(0 0% 0% / .1);
}

.content-container p {
	font-size: 1rem;
}

.content-container .headline {
	font-size: 1.25rem;
	letter-spacing: -.025em;
	font-family: 'Playfair Display', 'serif';
	font-weight: 600;
	color: #000000;
	margin: 0 0 20px;
}

.content-container .sub-headline {
	font-size: 1.5rem;
	margin: 30px 0 10px;
	color: #000000;
	/* override margin for consistency */
	margin: 40px 0 15px;
}

/* ======= Highlights ======= */
.content-container .highlights {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.content-container .highlights li {
	border-left: 2px solid hsl(0, 0%, 6%);
	padding: 0.4rem 0 0.4rem 0.75rem;
	margin: 10px 0;
	color: hsl(0, 0%, 6%);
	font-size: 14px;
	line-height: 18px;
}

.content-container .highlights .impact {
	background-color: hsl(0, 0%, 95%, 0.5);

}


/* ======= Contact Me ======= */
.contact-me {
	margin: 3rem 0;
	border-style: solid;
	background-color: hsl(0, 0%, 92%, .3);
	box-shadow: 0 1px 3px 0 hsl(0 0% 0% / .1), 0 1px 2px -1px hsl(0 0% 0% / .1);
	padding: 2rem 4rem;
	text-align: center;
}

/* Subtle hover and focus states for CTAs */
.primary-cta:hover,
.primary-cta:focus-visible {
	filter: brightness(1.1);
}

.secondary-cta:hover,
.secondary-cta:focus-visible {
	border-color: #d0d0d0;
}

.contact-me h4 {
	font-size: 1.5rem;
	font-family: 'Playfair Display', 'serif';
	font-weight: 400;
	color: #000000;
	margin: 0 0 20px;
	letter-spacing: -.025em;

}

.contact-me p {
	font-size: 1rem;
}

/********************* Contact Me /********************* */
footer {
	max-width: 53rem;
	margin: 0 auto;
	padding: 20px 40px 20px;
	clear: both;
}

.colophon {
	text-align: right;
	color: #A6A6A6;
	margin-top: 20px;
}

.colophon a {
	color: #000;

}

.colophon p {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1rem;
}