/* Global Styles */
header {
	background-color: #ffffff;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}

body {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	background-color: #f5f5f5;
	color: #444;
	margin: 0;
	padding: 0;
}

main {
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
}

iframe {
    display: block;
}

a {
	color: #007bff;
	text-decoration: none;
}

/* a:hover {
	text-decoration: underline;
} */

footer {
	position: fixed;
    bottom: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
	text-align: center;
	padding: 20px;
	margin-top: 10px;
}

/* Navigation */
nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

nav li {
	margin-right: 20px;
}

nav a {
	display: block;
	padding: 20px;
	color: #444;
	font-weight: bold;
	text-transform: uppercase;
	transition: all 0.2s ease-in-out;
}

nav a:hover {
	color: #fc9803;
}

/* Home Page */
.aboutme {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

/* Resume Page */
.resume-columns {
	display: flex;
	flex-wrap: wrap;
}

.contact-info {
	background-color: #fff;
	color: #444;
	flex: 0 0 25%;
	padding: 20px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
	margin-right: 20px;
}

.contact-info h2 {
	margin-top: 0;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

.resume-content {
	background-color: #fff;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
	flex: 1;
	padding: 20px;
}

.resume-content h2 {
	margin-top: 0;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

.resume-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.resume-content li {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

/* Projects Page */
.project {
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    background-color: #fff;
    position: relative;
	max-width: 100%;
	width: 1000px;
}

.project-header {
    display: flex;
    align-items: center;
	position: relative;
	border-bottom: 1px solid #ccc;
}

.project-date-container {
    text-align: right; /* Align the date content to the right */
    flex-grow: 1; /* Utilize remaining space for the date container */
	margin-right:50px;
}

.project-date {
    font-size: 14px; /* Adjust the date font size */
}

.project-header .arrow {
	content: '';
    position: absolute;
    top: 50%;
    right: 10px; /* Adjust the position of the arrow */
    transform: translateY(-50%) rotate(45deg);
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    width: 6px;
    height: 6px;
    transition: transform 0.3s ease; /* Add transition for smooth rotation */
}

.project-header .arrow.up {
    transform: translateY(-50%) rotate(45deg); /* Adjust rotation for the up arrow */
    border-width: 2px 0 0 2px; /* Adjust the border for the up arrow */
}

.project-header img {
    width: 100px; /* Adjust the width of the thumbnail */
    margin-right: 20px; /* Adjust spacing between thumbnail and title */
}

.project-header h2 {
    margin: 0;
}

.project-details {
    /* Update the margin-top to accommodate the expanded content */
    margin-top: 20px;
	margin-left: 20px;
}

.project-details p {
    margin-top: 10px;
}

.project-description-image {
	display: block;
    max-width: 70%; /* Ensure images don't exceed their container width */
    height: auto; /* Maintain aspect ratio */
	margin: 0 auto;
}

/* Blog Page */
/* .blog-post {
	background-color: #fff;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
	padding: 20px;
	margin-bottom: 20px;
}

.blog-post h2 {
	margin-top: 0;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

.blog-post p {
	margin: 0;
	line-height: 1.6;
}

.blog-post img {
	max-width: 100%;
	margin-bottom: 
} */

/* Home Page Layout */
.aboutme-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
}

.logo-column {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.text-column {
    flex: 1;
    min-width: 0;
    max-width: 700px;
    padding-right: 40px;
}

.rs-logo {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
	padding-left: 60px;
}

/* Social Buttons */
.logo-column .social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.logo-column .social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 2px solid #fc9803;
    border-radius: 8px;
    text-decoration: none;
    color: #fc9803;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.logo-column .social-button:hover {
    background-color: #fc9803;
    color: white;
}

.logo-column .social-button:hover img.social-icon {
    filter: brightness(0) invert(1);
}

.social-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;  /* Prevent icon from growing */
    max-width: 24px;  /* Prevent icon from growing */
    max-height: 24px; /* Prevent icon from growing */
    fill: #fc9803;
}

/* Make the SVG styles more specific */
img.social-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
}

.social-button img.social-icon {
    display: inline-block;
    vertical-align: middle;
}
