@charset "utf-8";
/* CSS Document */


body {
	background-color: #000000;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: auto;
}

#contactModal {
    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);
}

.contact-modalContent {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical center */
    align-items: center;     /* Horizontal center */
    height: 100%;           /* Fill the whole screen */
    width: fit-content;
    max-width: 90%;
    margin: 0 auto;
}

.modal-close-contact {
    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) {


.contact-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 90vw;
	margin: 0 auto;
	margin-bottom: 2em; /* Optional: space between sections */
}
	

.contact-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;
}
	
.contact-image {
	width: 100%;
	padding: 1em;
	box-sizing: border-box;
}

.contact-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
}

}

/* LANDSCAPE MOBILE/TABLET (480px to 1099px wide) */
@media only screen and (min-width: 480px) and (orientation: landscape) and (max-width: 1099px) {

	
.contact-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 80vw;
	margin: 0 auto;
	margin-bottom: 2em; /* Optional: space between sections */
}
	

.contact-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;
}
	
.contact-image {
	width: 100%;
	padding: 1em;
	box-sizing: border-box;
}

.contact-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
}


}

/* DESKTOP (1100px and wider) */
@media only screen and (min-width: 1100px) {

	

	
.contact-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 60vw;
	max-width: 1200px;
	margin: 20 auto;
	margin-bottom: 2em; /* Optional: space between sections */
}
	
.modal-close-contact {
    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;
}

.contact-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;
}

.contact-image {
	width: 50%;
	padding: 1em;
	box-sizing: border-box;
}

.contact-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
}

}