/*
	Enjenious Labs — Custom Styles
	Extends the Dimension template with branded enhancements.
	Does NOT override core template layout or behavior.
*/

/* ===== Logo Image in Header ===== */

#header .logo {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 0;
}

#header .logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 100%;
	padding: 0.5rem;
}

/* ===== Service Cards ===== */

.service-card {
	text-align: center;
	padding: 1rem 0;
}

.service-icon {
	font-size: 2.5rem;
	display: block;
	margin-bottom: 1rem;
	opacity: 0.85;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon {
	opacity: 1;
	transform: scale(1.1);
}

.service-card h3 {
	margin-bottom: 0.75rem;
	letter-spacing: 0.15rem;
}

.service-card p {
	opacity: 0.85;
	line-height: 1.8;
}

/* ===== Project Cards ===== */

.project-card {
	padding: 0.5rem 0;
}

.project-card h3 {
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.project-card ul {
	list-style: none;
	padding-left: 0;
}

.project-card ul li {
	padding: 0.35rem 0 0.35rem 1.5rem;
	position: relative;
	opacity: 0.85;
}

.project-card ul li:before {
	content: '▸';
	position: absolute;
	left: 0;
	color: rgba(255, 255, 255, 0.6);
}

/* ===== Contact Info Section ===== */

.contact-info {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: solid 1px rgba(255, 255, 255, 0.25);
}

.contact-info h3 {
	margin-bottom: 1.25rem;
	font-size: 0.9rem;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
}

ul.contact-details {
	list-style: none;
	padding-left: 0;
	margin-bottom: 2rem;
}

ul.contact-details li {
	padding: 0.5rem 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.85rem;
	letter-spacing: 0.05rem;
}

ul.contact-details li .icon {
	width: 1.5rem;
	text-align: center;
	opacity: 0.6;
	flex-shrink: 0;
}

ul.contact-details li a {
	border-bottom: dotted 1px rgba(255, 255, 255, 0.35);
	transition: border-bottom-color 0.2s ease;
}

ul.contact-details li a:hover {
	border-bottom-color: #ffffff;
}

/* ===== Subtle Enhancements ===== */

/* Smooth image hover */
.image.main img {
	transition: transform 0.4s ease, filter 0.4s ease;
}

.image.main:hover img {
	transform: scale(1.02);
}

/* Primary button glow on hover */
input[type="submit"].primary:hover,
.button.primary:hover {
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* HR styling within articles */
#main article hr {
	border-bottom-color: rgba(255, 255, 255, 0.2);
	margin: 2rem 0;
}

/* About section logo background */
#about .image.main img {
	max-height: 200px;
}
