:root {
	--primary-font: Arial, Helvetica, sans-serif;
	--secondary-font:  "Roboto", sans-serif;
	--primary-color: #14281dff;
	--secondary-color: #355834ff;
	--tertiary-color: #6e633dff;
	--quartenary-color:  #c2a878ff;
    --background-color: #EDEDED;
	--text-color-light: #f1f5f2ff;
    --text-color-dark: #202623;
	--shadow-color: #000;
	--box-shadow: 0px 2px 15px 2px var(--shadow-color);

	--sm: 768px;

	--primary-color-1: #9E1B32;
	--primary-color-2: #000000;

	--secondary-color-1: #FFFFFF;
	--secondary-color-2: #2d2d2d;
	--secondary-color-3: #f4f4f4;

	--accent-color-1: #c0c0c0;
	--accent-color-2: #7a1e1f;
	--accent-color-3: #d1859d;



}

/*Clear the css*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background: var(--accent-color-1);
	color: var(--primary-color-2);
    font-family: var(--primary-font);
}

.main{
	text-align: center;
}

.photos{
	display: flex;
	justify-content: center;
	width: 100%;
}

/*Footer*/
footer img{
	max-width: 30px;
}

/* Fading Slideshow */
.fade-slideshow{
	max-width: 760px;
	border: red;
}

.fade-img-main img{
	width: 100%;
}

.fade-imgs img{
	display: none;
}

@keyframes fadeIn{
	to {
		opacity: 1;
	}
}

.fade-in {
	opacity: 0;
	animation: fadeIn 1s ease-in 1 forwards
}

.social:hover {
	transform: scale(1.2);
}

/*
.resume-item{
	background: var(--primary-color-1);
}
*/
/*
 /* Overlay for dimming background 
 .overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

/* Modal (Popup) 
.modal-content {
	background: white;
	padding: 20px;
	border-radius: 10px;
	width: 80%;
	max-width: 500px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
	text-align: center;
	position: relative;
}

/* Close button 
.close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	cursor: pointer;
}

/* Hide scroll when modal is open 
body.modal-open {
	overflow: hidden;
}
*/

/* Make sure the modal overlay covers the whole screen */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dim the background */
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
}

/* Modal content area */
.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    max-height: 90vh; /* Ensure modal height doesn't exceed 90% of viewport height */
    overflow: hidden; /* Hide content overflow */
}

/* Content inside the modal body */
#modalBody {
    flex-grow: 1; /* Allow the content to grow and take up available space */
    overflow-y: auto; /* Allow vertical scrolling if the content overflows */
    max-height: calc(80vh - 40px); /* Leave space for padding and close button */
    padding-right: 10px; /* Optional: avoid scrollbar overlap */
	padding-left: 10px; 
    padding-top: 20px; /* Ensure content doesn't overlap the close button */
}

/* Close button */
.close-modal {
    position: absolute;
    top: 10px;
    left: 100px;
    font-size: 1.5rem;
	padding: 10px;
    cursor: pointer;
	z-index: 10;
	display: none;
}

.see-more-btn{
	background: var(--primary-color-1);
	color: var(--secondary-color-1);
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 20px;
}

.see-more-btn:hover{
	background: var(--primary-color-2);
}

