
:root {
	/*   new */
	--color-shockingly-green: #0ae448;
	--color-just-black: #0e100f;
	--color-surface-white: #fffce1;
	--color-pink: #fec5fb;
	--color-shockingly-pink: #f100cb;
	--color-orangey: #ff8709;
	--color-lilac: #9d95ff;
	--color-lt-green: #abff84;
	--color-blue: #00bae2;
	--color-grey: gray;
	--color-surface75: #bbbaa6;
	--color-surface50: #7c7c6f;
	--color-surface25: #42433d;
		 
  
	--dark: var(--color-just-black);
	--grey-dark: var(--color-surface-25);
	--light: var(--color-surface-white);
	--mid: var(--color-surface-50);
	--grey: var(--color-grey);
	--gray: var(--color-grey);
	--green: var(--color-shockingly-green);
	--green-dark: var(--color-shockingly-green);
	--green-light: var(--color-lt-green);
	--blue: var(--color-blue);
	--purple: var(--color-lilac);
	--red: var(--color-pink);
	--orange: var(--color-orangey);
	accent-color: var(--color-shockingly-green);
}


html, body {
	margin: 0;
	height: 100%;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}

body {
	font-family: "Poppins", sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
	overflow-x: hidden;
	overflow-y: scroll;
}

h1, h2, p, li {
	max-width: 800px;
}
		
a {
	text-decoration: none;
}
		
.menu {
	background-color: #4aa8be;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}
		
.menu-items {
	display: flex;
	gap: 15px;
	flex-wrap:wrap;
				  
}

.menu-right {
	display: flex;
	gap: 15px;
	margin-left: auto;
	margin-right: 3%;
	align-items: center;
}
			  
.menu.sticky {
	background-color: #3a889a;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.menu a {
	color: white;
	text-decoration: none;
	padding: 10px 20px;
	transition: background 0.3s, color 0.3s;
	border-radius: 5px;
	font-size: 16px;
	position: relative;
	white-space: nowrap;
}

.menu a:hover {
	background-color: #357d8b;
	color: #f4f4f4;
}

.menu .icon {
	display: none;
	font-size: 24px;
	cursor: pointer;
}

.language-switch {
	display: flex;
	align-items: center;
	gap: 5px;
}

.language-switch span {
	color: white;
}
				
#centerlogo {
	margin: 70px auto 0 auto;
	text-align: center;
	max-width: 90%;
}

#centerlogo img {
	max-width: 100%;
	height: auto;
}

#uqamlab {
	color: #000;
	font-family: Helvetica, sans-serif;
	font-size: 50px;
	text-align: center;
	margin: 5px auto;
	padding: 10px;
}

#subtitle {
	color: #4aa8be;
	font-family: Helvetica, sans-serif;
	font-size: 30px;
	text-align: center;
	margin: -25px 0 0 0;
	padding: 10px;
}

#arrow-indicator {
    position: absolute;
    width: 50px; /* Adjust size as needed */
    top: 90%;
    left: 77.5%; /* Adjust position relative to the circle */
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: floatArrow 3s ease-in-out infinite;
}

@keyframes floatArrow {
    0% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
    100% { transform: translate(-50%, -50%) translateY(0px); }
}

.panel.align-top {
	align-items: flex-start;
}

.panel h1, .img-container h1 {
	font-size: 2em;
	color: var(--color-surface-white);
	font-weight: 600;
	margin: 0 auto;
}
.panel.description {
	padding-bottom: 60px;
}
.panel p, .panel li {
	color: var(--color-surface-white);
	font-weight: 300;
	text-align: left;
	font-size: 0.8em;
	line-height: 1.5em;
	margin: 0.3em 0 1em 0;
}
.panel p strong, .panel li strong {
	color: var(--color-just-black);
	font-weight: 300;
}
.panel p code, .panel li code {
	background-color: rgba(255,255,255,0.15);
	padding: 2px 4px;
	border-radius: 5px;
}
.panel li {
	margin: 0;
}
		
		

.about {
	background-image: url(https://uqamlab.ca/images/about.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
		
.quest {
	background-image: url(https://uqamlab.ca/images/who.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.video {
	background-image: url(https://uqamlab.ca/images/video.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

.conf {
	background-image: url(https://uqamlab.ca/images/conf.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

	
.panel, .img-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5em;
	text-align: center;
	position: relative;
	box-sizing: border-box;
	padding: 10px;
	color: var(--color-just-black);
}
		
		
@media screen and (max-width: 1024px) {
	.menu, .menu-right {
		align-items: start;
		padding: 10px;
	}
	.menu {
		flex-direction: column;
	}
	.menu-items, .menu-right {
		justify-content: center;
		flex-wrap: wrap;
		width: 100%;
	}
	
}
			   
@media screen and (max-width: 768px) {
	.menu {
		flex-direction: row;
	}
	.menu-items {
		display: none;
		flex-direction: column;
			
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background: #4aa8be;
		padding: 15px 0;
	}
	.menu.responsive .menu-items, .menu.responsive .menu-right  {
		display: flex;
	}
	.menu .icon {
		display: block;
	}
	#centerlogo {
		margin-top: 80px;
	}
	#subtitle {
		font-size: 24px;
		margin-top: -15px;
	}
    #arrow-indicator {
           width: 40px; /* Smaller size */
           left: 85%; /* Moved closer to the center */
       }
}

/* PAGE ABOUT */

