@charset "utf-8";
/* CSS Document */


body {
	background-color: #000000;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: auto;
}

#aboutModal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark overlay */
    overflow: auto; /* Enable scroll if needed */
	backdrop-filter: blur(5px);
}

.about-modalContent {
    position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    margin: 0vh auto;
    width: fit-content;
    max-width: 90%;
	background: transparent;
}

.modal-close-about {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 35px;
    font-weight: bold;
    color: #D5FF4F;
    cursor: pointer;
    z-index: 1001;
	/*circle*/
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}


/* PORTRAIT MOBILE (up to 1099px wide) */
@media only screen and (orientation: portrait) and (max-width: 1099px) {


.about-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 90vw;
	margin: 0 auto;
	margin-bottom: 2em; /* Optional: space between sections */
}
	

.about-text {
	width: 100%;
	font-family: "Imprima", sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: white;
	box-sizing: border-box;
	padding: 1em;
	text-align: center;
}
	
.about-image {
	width: 100%;
	padding: 1em;
	box-sizing: border-box;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
}
	
.about-container:nth-child(odd),
.about-container:nth-child(even) {
	flex-direction: column; /* Reset to normal stacking order */
}

}

/* LANDSCAPE MOBILE/TABLET (480px to 1099px wide) */
@media only screen and (min-width: 480px) and (orientation: landscape) and (max-width: 1099px) {

	
.about-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 80vw;
	margin: 0 auto;
	margin-bottom: 2em; /* Optional: space between sections */
}
	

.about-text {
	width: 100%;
	font-family: "Imprima", sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: white;
	box-sizing: border-box;
	padding: 1em;
	text-align: center;
}
	
.about-image {
	width: 100%;
	padding: 1em;
	box-sizing: border-box;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
}
	
.about-container:nth-child(odd),
.about-container:nth-child(even) {
	flex-direction: column; /* Reset to normal stacking order */
}	

}

/* DESKTOP (1100px and wider) */
@media only screen and (min-width: 1100px) {

	
.about-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 60vw;
	max-width: 1200px;
	margin: 0 auto;
	margin-bottom: 2em; /* Optional: space between sections */
}

/* Reverse: image on left, text on right (for even sections) */
.about-container:nth-child(even) {
	flex-direction: row;
}	
	
/* Default: text on left, image on right (for odd sections) */
.about-container:nth-child(odd) {
	flex-direction: row-reverse;
}
	
.modal-close-about {
    position: fixed;
    top: 5vh;
    right: 5vw;
    font-size: 35px;
    font-weight: bold;
    color: #D5FF4F;
    cursor: pointer;
    z-index: 1001;
	/*circle*/
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.about-text {
	width: 50%;
	font-family: "Imprima", sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: white;
	box-sizing: border-box;
	padding: 1em;
	text-align: left;
}

.about-image {
	width: 50%;
	padding: 1em;
	box-sizing: border-box;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
}

}