/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

h1, h2 {
	font-weight: 100;
}

@font-face {
    font-family: 'Helvetica Neue LT Std';
    src: url('fonts/HelveticaNeueLTStd-LtEx.woff2') format('woff2'),
        url('fonts/HelveticaNeueLTStd-LtEx.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Helvetica Neue LT Std', Helvetica, georgia, Tahoma, sans-serif;
	/*background-image: linear-gradient(200deg, #002965 30%, black);*/
	/*background-image: linear-gradient(200deg, #cbadff 20%, #267893, #2b0139 70%);*/ /*Blue purple stuff*/
	/*background-image: linear-gradient(200deg, #c9f8a3, #fee5bc);*/ /*Mango*/
	background-image: linear-gradient(200deg, #54ca94 10%, #4b487d, #25042d 70%); /**/
	font-weight: 100;
	
	/*repeating gradients*/
	
    color: white;
}

.homepage_sara_logo {
	/*filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 1));*/
	width: 45vw;
	padding-top: 15vh;
}

.homepage-slogan {
	opacity: 0;
    transition: opacity 1s ease; /* Apply transition to opacity here */
	padding-bottom: 10vh;
	padding-top: 10vh;
	/*filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 1));*/
	font-size: 5vh;
}

header {
    background-color: #0074d9;
    color: white;
    text-align: center;
    padding: 10px;
}

nav {
    background-color: rgba(0, 0, 0, 0.5);
	/*background-image: linear-gradient(180deg, black, #39342e 40%, black);*/
    color: white;
    text-align: center;
	padding: 1%;
    padding-right: 2vh;
	padding-left: 2vh;
}

.navbar_link {
	color: white;
	opacity: 0.5;
}
.navbar_link:hover {
	opacity: 1;
}

.navbar_row {
	display: flex;
	flex-wrap: wrap;
	max-width: 100%;
	padding: 0;
	align-items: center; /* Align vertical */
}

.navbar_col {
	flex: 49%;
	max-width: 49%;
	padding: 0;
}

.navbar_logo {
	max-width: 20%;
	padding: 1%;
}

#navbar_col_right {
	text-align: right;
}
#navbar_col_left {
	text-align: left;
}

a {
	color: white;
	text-decoration: none;
}

.homepage_row {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	text-align: center;
	justify-content: center;
}

.homepage_col {
	flex: 35%;
	max-width: 35%;
	justify-content: center;
	padding: 4px;
	padding-right: 5%;
	padding-left: 5%;
	padding-top: 4%;
	padding-bottom: 2%;
	text-align: center;
}

#welcome-to-sara {
	color: white;
	padding-top:40%;
	padding-bottom: 5%;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    margin-right: 20px;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
	box-shadow: 0 0 10px white;
    border-radius: 5px;
}

h1 {
    color: #0074d9;
}

.section {
    margin-bottom: 40px;
}

.team_pic {
	max-width: 1500px;
	max-height: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

footer {
	background-color: rgba(0, 0, 0, 0.5);
	/*background-image: linear-gradient(180deg, black, #39342e 40%, black);*/
    color: white;
    padding: 5%;
}

.footer_row {
	/*background-image: linear-gradient(180deg, black, #39342e 40%, black);*/
    color: white;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	padding-left: 8%;
	
}

.footer_column {
            flex: 1;
            min-width: 250px;
            margin: 0 10px;
            padding-bottom: 30px;
			line-height: 1.6;
			padding-right: 10%;
			padding-left: 10%;
        }

.footer_logo {
	margin-top: auto;
}

.social-media-font-icon{
	font-size: 5vh;
	padding: 5vh;
	padding-left: 0;
}

.dropdown {
	position: relative;
	display: inline-block;
	padding: 3.5vh;
	padding-right: 0;
	cursor: pointer;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.5);
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	right: 0%; /* Position the menu to the left */
	text-align: left;
	top: 10vh;
}

.dropdown:hover .dropdown-content {
	display: block;
}

/* Style the dropdown links */
.dropdown-content a {
	color: rgba(255, 255, 255, 0.5);
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-content a:hover {
	background-color: rgba(0, 0, 0, 0.7);
	color: rgba(255, 255, 255, 1);
	
}

.page-title {
	width: 100%;
	font-size: 15vw;
	padding-top: 20vh;
	text-align: center;
	filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 1));
}

/*Homepage adaptations for phones*/
@media only screen and (max-width: 768px) {
	
	nav {
		padding-right: 4vh;
		top: 10vh; /* Add 5vh of distance from the viewport top */
	}
	
	.navbar_logo {
		height: 10vh;
		max-width: 50vw;
	}
	
	.homepage_col {
	flex: 100%;
	max-width: 100%;
	justify-content: center;
	padding: 4px;
	padding-right: 5%;
	padding-left: 5%;
	padding-top: 4%;
	padding-bottom: 2%;
	text-align: center;
	}
	
	#welcome-to-sara {
	padding-top: 0;
	}
	
	.homepage_sara_logo{
		width: 75vw;
	}
	
	.homepage-slogan{
		min-height: 30vh;
		padding-left: 5vw;
		padding-right: 5vw;
		font-size: 4vh;
	}
	
}

@media only screen and (max-width: 768px) {
	.footer_column {
		padding-left: 0;
		padding-right: 0;
	}
}

.text-container{
	padding: 5%;
	margin-bottom: 10vh;
	/*background-color: rgba(80, 80, 80, 0.5);*/
	background-color: rgba(40, 40, 40, 0.5);
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	line-height: 1.6;
}

/*THESE NEXT TAGS DON'T APPLY TO THE HOMEPAGE*/

#main1 {
    background-position: top center;
    background-attachment: scroll;
    background-size: cover;
    height: 90vh;
    width: 100%;
}
#placeholdersoyoucanscroll{
    /*height:300vh*/
}

@media only screen and (max-width: 768px) {
	#main1 {
		height: 50vh;
		background-position: center;
		background-size: cover;
	}
	.page-title{
		padding-top: 15vh;
	}
}

/*TEAM PAGE*/


/*
th:nth-child(2), td:nth-child(2) {
            max-width: 100px; Set the maximum width for the first column
        }*/