
* {
    margin: 0;
    padding: 0;
    font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L";
}


.header {
    min-height: 120vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url("Images/NAU.png");
    background-position: center; /* Fixed typo: 'background-postion' to 'background-position' */
    background-size: cover;
    position: relative;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}


.navbar-nav {
    display: flex; /* Ensures nav items are displayed inline */
}

.nav-item {
    margin-left: 20px; /* Adds space between nav items */
}

.nav-link {
    color: #fff !important; /* Set text color to white */
    text-decoration: none;
    font-size: 16px;
    position: relative; /* Required for the pseudo-element */
}

.nav-link:hover {
    color: #FDEC00 !important /* Change text color on hover */
}

.nav-link::after {
    content: '';
    width: 0;
    height: 2px;
    background: #FDEC00;
    display: block;
    margin: auto;
    transition: width 0.5s;
}

.nav-link:hover::after {
    width: 100%; /* Expand the underline on hover */
}

/* Dropdown styles */
.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.9); /* Light background for dropdown */
    border: none; /* Remove border */
}

.dropdown-item {
    color: #000; /* Dark text color for dropdown items */
}

.dropdown-item:hover {
    background-color: #FDEC00; /* Highlight on hover */
}
nav.fa{
	display: none;
}

/* Adjustments for mobile */
@media (max-width: 700px)  {
	.text-box h1{
		font-size: 20px;
	}
	.nav-link ul li{
		display: block;
	}
	.nav-link{
		position: absolute;
		background: #FDEC00 !important;
		height:100vh;
		width: 200px;
		top:0;
		right: 0;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
}
.text-box{
	width: 90%;
	color: #fff;
	position:absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.text-box h1{
	font-size: 62px;
}
.text-box p {
	margin: 10px 0 40px;
	font-size: 15px;
	color: #fff;
}
.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 13px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.hero-btn:hover{
	border:1px solid #FDEC00;
	background: #FDEC00;
	transition: 1s;
}
/* .row: Ensure it uses Flexbox and centers its items */
.row {
    display: flex;
    justify-content: center !important; /* Center horizontally */
    align-items: center !important;     /* Center vertically if needed */
    flex-wrap: wrap;         /* Allow wrapping of columns */
}

/* Center the entire section */
.OurSponsors {
    text-align: center;         /* Center text inside the section */
    width: 100%;
    display: flex;
    justify-content: center;    /* Center content horizontally */
    flex-direction: column;
    align-items: center;        /* Ensure content is centered */
    padding: 20px;              /* Add padding for spacing */
}

/* Center the .row and its content */
.row {
    display: flex;
    justify-content: center;   /* Center the columns horizontally */
    align-items: center;       /* Align items vertically (if needed) */
    flex-wrap: wrap;           /* Allow the content to wrap in case of smaller screens */
    width: 100%;
}

/* Ensure the sponsor column is centered */
.sponsor-col {
    text-align: center;
    flex-basis: 32%;          /* Define the size of each sponsor-col */
    margin: 10px auto;        /* Center each column */
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;   /* Ensure image and text stack vertically */
    align-items: center;      /* Horizontally center content */
}

/* Center the image within the sponsor column */
.sponsor-col img {
    width: 70%;
    margin: 0 auto;           /* Ensure image is horizontally centered */
    padding-top: 20px;
}

/* Layer styling (unchanged) */
.layer {
    background: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.layer:hover {
    background: rgba(0, 0, 150, 0.7);
}

.layer h3 {
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0.5;
    transition: 0.5s;
}

.layer:hover h3 {
    bottom: 49%;
    opacity: 1;
}

video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/*----- about us------*/
.text-center strong {
	text-decoration-color: #002147
}

.OurSponsors p {
	text-decoration-color: #002147
}
	
.aboutus{
	width: 60%;
	margin: auto;
	padding-top: 100px;
	text-align: center;
}
.aboutus-col{
	flex-basis: 44%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: center;
	background: #002147;
	padding: 25px;
	cursor: pointer;
	display: flex;
}
.aboutus-col img {
    height: 150px; /* increase this to make the image bigger */
    width: auto; /* keeps the aspect ratio */
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.aboutus-col p {
	padding: 0;
	text-justify: auto;
	color: #fff;
}
.aboutus-col h3 {
	margin-top: 15px;
	text-align: center;
	color: #fff;
}
.aboutus-col {
    display: flex;
    align-items: center; /* Aligns everything vertically */
    gap: 20px; /* Space between image and text */
    width: 100%;
}

.content-container {
    display: flex;
    justify-content: space-between; /* Keeps left and right separated */
    align-items: center;
    flex-grow: 1;
    gap: 20px;
    flex-wrap: wrap; /* So it stacks nicely on small screens */
}

.text-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.links-section {
    display: flex;
    flex-direction: row; /* Resume & LinkedIn side by side */
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-link,
.linkedin-link {
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.profile-link {
    background-color: #555; /* Dark gray for Resume */
}

.linkedin-link {
    background-color: #0077b5; /* LinkedIn blue */
}

.profile-link:hover {
    background-color: #333;
}

.linkedin-link:hover {
    background-color: #005582;
}
