/* General Styles */
:root {
	--bg-color: #e3e3e3;
	--bg-color2: #f4f4f9;
	--text-color: #333;
	--red-tint: #2039ff;
	--header-text: #fff;
	--button-bg: rgba(0, 0, 0, 0.5);
	--button-bg-hover: rgba(0, 0, 0, 0.8);
}
[data-theme="dark"]
{
	--bg-color: #121212;
	--bg-color2: #1e1e1e;
	--text-color: #f0f0f0;
	--red-tint: #ff6f61;
	--header-text: #e0e0e0;
	--button-bg: rgba(255, 255, 255, 0.3);
	--button-bg-hover: rgba(255, 255, 255, 0.6);
}

body {
	margin: 0;
	font-family: 'Arial', sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.6;
}

header {
	background-color: var(--bg-color2);
	padding: 15px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logoTypo {
	display: flex;
	align-items: center;
}

.logoTypo img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 15px;
}

.logoTypo a {
	color: var(--red-tint);
	font-size: 1.5rem;
	text-decoration: none;
	font-weight: bold;
}

.logoTypo a:hover {
	color: var(--red-tint);
}

.underHeaderImage {
	height: 200px;
	background: url("../images/ima.png") center/cover no-repeat;
	/*width:100%;
	min-height: 380px;
	margin: 0;
	
	background-image: url("../images/ima.png");

	
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;*/
}

.lower-body {
	padding: 20px;
	max-width: 1200px;
	margin: auto;
}

/* Profile Section */
.profile-info {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.profile-image {
	width: 100px;
	height: 100px;
	background: url('../images/profileImage.jpg') center/cover no-repeat;
	border-radius: 50%;
	margin-right: 20px;
	border: 3px solid var(--red-tint);
}

.profilered-info h1 {
	margin: 0;
	font-size: 2rem;
	color: var(--red-tint);
}

.profilered-info p {
	margin: 5px 0;
}

/* About Me Section */
.about-me, .quick-acess {
	background-color: var(--bg-color2);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

h2 {
	margin-top: 0;
	color: var(--red-tint);
	border-bottom: 2px solid var(--red-tint);
	display: inline-block;
	padding-bottom: 5px;
}

.about-me p {
	margin: 10px 0;
}

.quick-acess p {
	margin: 10px 0;
}

.quick-acess a {
	color: var(--red-tint);
	text-decoration: none;
}

.quick-acess a:hover {
	text-decoration: underline;
}

/* Projects Section */
.projects {
	margin-top: 40px;
}

.projects h2 {
	text-align: center;
	margin-bottom: 20px;
}

.project-item:hover {
	transform: scale(1.05);
}


.project-item .info h3 {
	margin: 0;
	font-size: 1.25rem;
	color: var(--red-tint);
}

.project-item .info p {
	margin: 10px 0 0;
}

.project-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 1200px;
	margin: auto;
}

.slider-track {
	display: flex;
	transition: transform 0.4s ease-in-out;
}

.project-item {
	flex: 0 0 300px;
	margin: 0 10px;
	background-color:  var(--bg-color2);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	text-align: center;
}

.project-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.project-item .info {
	padding: 15px;
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	border: none;
	color: var(--text-color);
	font-size: 2rem;
	padding: 10px;
	cursor: pointer;
	z-index: 1000;
}

.slider-btn.prev {
	left: 10px;
}

.slider-btn.next {
	right: 10px;
}

.slider-btn:hover {
	background: var(--red-tint);
}

.toggle-theme {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--button-bg);
	color: var(--header-text);
	border: none;
	padding: 0.5rem 1rem;
	cursor: pointer;
	border-radius: 4px;
}

.toggle-theme:hover {
	background: var(--button-bg-hover);
}