:root {
	--base-color: #0E0F12;
	--secondary: #2E3135;
	--primary-accent: #2C78FF;
	--secondary-accent: #97DDFF;
	--text: #FAFBFC;
}

@font-face {
    font-family: "sora";
    src: url("../fonts/Sora/Sora-VariableFont_wght.ttf");
}

@font-face {
	font-family: "IBM";
	src: url(../fonts/IBM_Plex_Sans/IBMPlexSans-VariableFont_wdth,wght.ttf);
}

body {
	margin: auto;
	background-color: var(--base-color);
	color: var(--text);
	display: flex;
	flex-wrap: wrap;
	font-family: "IBM";
	text-align: center;
	text-decoration: none;
	overflow-x: hidden;
	justify-content: center;
}

h1 {
	font-family: "sora";
}

h2 {
	font-family: "sora";
}

.menuBar {
	position: fixed;
	width: 100%;
	height: 6vh;
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: left;
	background-color: var(--secondary);
	z-index: 2;

}
.logoLink {
	height: 6vh;
}

#myLogo {
	align-content: center;
	height: 100%;

}

.menuItem {
	padding-left: 10px;
	padding-right: 10px;
}

.link {
	align-items: center;
	height: 100%;
	display: flex;
	text-decoration: none;
	color: var(--text);
}



.link:hover {
	background-color: var(--primary-accent);
}

.CTAlink {
	align-items: center;
	height: 100%;
	display: flex;
	text-decoration: none;
	color: var(--text);
}

.businessNum {
	padding-left: 10px;
	padding-right: 10px;
	margin-left: auto;
	justify-items: right;
}

.CTABtnContainer {
	padding-left: 10px;
	padding-right: 10px;
	align-items: center;
	justify-items: right;	
}

.CTABtn {
	align-items: center;
	background-color: var(--primary-accent);
	border-radius: 5px;
	border-color: var(--secondary-accent);
	font-family: "IBM";
	color: var(--text);
	height: 90%;
	font-size: 1.25em;
}

.CTABtnContainer1 {

	width: 100vw;
	justify-content: center;
	z-index: 1;
}

.CTABtnContainer,
.CTABtnContainer1 {
	display: flex;
	justify-content: center;
	align-items: center;
}


.CTABtnCenter {
	background-color: var(--primary-accent);
	border-radius: 5px;
	border-color: var(--secondary-accent);
	font-family: "IBM";
	color: var(--text);
	height: 100px;
	font-size: 1.25em;
	top: 0;

}

.gitBtnCenter {
	margin-top: auto;
	background-color: var(--primary-accent);
	border-radius: 5px;
	border-color: var(--secondary-accent);
	font-family: "IBM";
	color: var(--text);
	height: 100px;
	font-size: 1.25em;
	top: 0;

}



.homeCont {
	
	padding-top: 10vh;
	left: 0vw;



}

.homeText {
	font-size: 8em;
	font-family: "sora";
	width: 100vw;
	font-style: italic;
	z-index: -1;
}

#one {
	border-top-right-radius: 200px;
	border-top-left-radius: 100px;
	text-align: left;
	background-image: linear-gradient(to left, var(--primary-accent), var(--base-color));
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 20%;
	margin-left: 20%;
	padding-left: 10%;
}

#two {
	background-image: linear-gradient(to left, var(--primary-accent), var(--base-color));
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 20%;
	margin-left: 20%;
}

#three {
	text-align: right;
	background-image: linear-gradient(to left, var(--primary-accent), var(--base-color));
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 20%;
	margin-left: 20%;
	padding-right: 10%;
	border-bottom-left-radius: 200px;
	border-bottom-right-radius: 100px;
}



.WWD {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5vh 0;
	box-sizing: border-box;
}


.cardContainer {
	width: 100%;
	max-width: 1200px;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 30px;           /* consistent spacing */
	padding: 0 20px;
	box-sizing: border-box;
}

.attrlink {
	display: inline-block;
	text-decoration: none;
	color: var(--text);
	/*background-color: var(--primary-accent);*/
	padding: 8px 16px;       /* smaller, consistent size */
	border-radius: 5px;
	font-family: "IBM";
	font-size: .8em;
	margin-top: auto;        /* pushes CTA to bottom of card */
}


.card {
	background-color: oklch(0.6049 0.2146 260.96 / 100%);
	border-radius: 10px;
	box-shadow:
		8px 8px 0 var(--secondary-accent),
		-8px -8px 0 var(--secondary-accent);

	width: 100%;
	max-width: 350px;           /* fixed max width */
	min-height: 550px;          /* ensures uniform height */
	padding: 20px;

	display: flex;
	flex-direction: column;
	align-items: center;         /* horizontal centering */
	text-align: center;          /* text centered */
	box-sizing: border-box;
	justify-content: flex-start; /* push content top to bottom */
}

.cardContent {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	gap: 10px; /* spacing between image, text, CTA */
	box-sizing: border-box;
}


.aboutcard {
	background-color: oklch(0.6049 0.2146 260.96 / 100%);
	border-radius: 10px;
	box-shadow:
		8px 8px 0 var(--secondary-accent),
		-8px -8px 0 var(--secondary-accent);

	width: 90%;              /* ✅ mobile-safe */
	height: 100vh;
	padding: 20px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;           /* ✅ center content */
	text-align: center;            /* ✅ center text */
	box-sizing: border-box;
	margin: 5%;
}


.imgCont {
/*	width: 100%;*/
	width: 280px;     /* ensures mobile fit */
	height: 150px;         /* fixed height for all cards */
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}

.imgCont img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	border-radius: 6px;
}

#consultCard {
	width: 300px;
}

.cardDescription {
	font-size: 0.95em;
	line-height: 1.5;
	margin-top: 5px;

	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: wrap;
	text-overflow: ellipsis;
	text-align: center;
}


.aboutSection {

	align-content: center;

}


footer {
	margin-top: 5vh;
	width: 100vw;
	border-top: 2px solid var(--primary-accent);
	background-color: var(--secondary);
	text-decoration: none;
}

.portfolioCard {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.portfolioCard:hover {
	transform: translateY(-6px);
	box-shadow:
		12px 12px 0 var(--secondary-accent),
		-12px -12px 0 var(--secondary-accent);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
	transform: translateY(-6px);
	box-shadow:
		12px 12px 0 var(--secondary-accent),
		-12px -12px 0 var(--secondary-accent);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolioCard .CTABtn {
	margin-top: auto;
	pointer-events: none;
}

/* FORM CONTAINER */
#contact-form {
	max-width: 800px;
	margin: 10vh auto;
	padding: 20px;

	display: flex;
	flex-direction: column;
	gap: 24px;

	box-sizing: border-box;
	align-items: center; /* 🔥 centers all children */
}

/* Labels — stacked above, left aligned */
#contact-form label {
	align-self: flex-start;
	font-size: 0.9em;
	opacity: 0.85;
	margin-left: 8px; /* optional small padding from edge */
}

/* Small inputs — centered */
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[name="title"] {
	width: 300px;
	max-width: 90%; /* responsive */
	padding: 12px 14px;
	font-size: 1em;
	border-radius: 5px;
	border: none;
}

/* Message textarea — larger, centered */
#contact-form textarea {
	width: 100%;
	max-width: 700px;
	min-height: 220px;
	padding: 16px;
	font-size: 1.05em;
	line-height: 1.5;
	border-radius: 8px;
	border: none;
	resize: vertical;
}

/* Send button — centered and bigger */
#contact-form .CTABtn {
	width: 220px;
	height: 52px;
	font-size: 1.15em;
	align-self: center;
	cursor: pointer;
}

/* Status message */
#formStatus {
	text-align: center;
	font-size: 0.95em;
}

#contact-form input:focus,
#contact-form textarea:focus {
	outline: 2px solid var(--secondary-accent);
}

#contact-form .CTABtn:hover {
	filter: brightness(1.1);
}
