


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');


body {
  font-family: 'Inter', sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.container { max-width: 1200px; margin: auto; padding: 20px; background: white; border-radius: 8px; }
h1 { text-align: center; color: #0033a0;background-color: #fff1d4; }

.page-header {
	position: relative;
	width: 100%;
	height: 25vh;
	background-image: url('../images/default_banner.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}


.page-header-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 20px;
    z-index: 2;
}

.header-content {
    z-index: 2;
    position: relative;
    text-align: center;
    padding-bottom: 40px;
    color: white;
}

@keyframes bumpUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-image {
    position: absolute;
    top: 0;
    left: 20px;
    height: 100px;
    width: auto;
}
.header-text {
	color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); 
}


.carousel {
    height: calc(100vh - 64px); 
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #000;
    animation: bumpUp 0.8s ease-out forwards;
}

.carousel-small {
	position: relative;
	width: 100%;
	height: 25vh;
	overflow: hidden;
}



.carousel-medium {
	position: relative;
	width: 100%;
	height: 40vh;
	overflow: hidden;
}



.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 0;
    top: 0;
    left: 0;
}

.carousel-image.active {
	opacity: 1;
	z-index: 1;
}

.down-arrow {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 10px;
	border-radius: 50%;
	transition: transform 0.2s;
}

.down-arrow:hover {
	transform: translateX(-50%) scale(1.1);
}

.center-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 5em;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
	z-index: 10;
}

.season-buttons {
text-align: center;
margin-bottom: 20px;
display: flex;
justify-content: center;
}

.season-button {
padding: 12px 25px;
margin: 0 5px;
background-color: #004990;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
font-size: 16px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
min-width: 100px; /* Ensures all buttons are equal width */
}

.season-button:hover {
background-color: #91d6e6;
color: black;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.season-button.active {
background-color: #91d6e6;
color: black;
border: 2px solid #0033a0;
}

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.team-card { background-size: cover; height: 250px; border-radius: 8px; overflow: hidden; position: relative; transition: transform 0.3s; }
.team-card:hover { transform: scale(1.05); }
.team-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; transition: background-color 0.3s; }
.team-card:hover .team-overlay { background-color: rgba(0, 0, 0, 0.7); }
.team-name {
	color: white;
	font-size: 30px;
	text-align: center;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
	transition: color 0.3s, transform 0.3s;
}
.team-card:hover .team-name {
	color: #91d6e6;
	transform: scale(1.1);
}

.teams-section {
	padding: 50px;
	text-align: center;
    scroll-margin-top: calc(var(--nav-height, 0px) + 12px); /* tiny cushion */
}
.team-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	justify-content: center;
	margin-top: 30px;
}
.team-box {
	background: #004990;
	color: white;
	padding: 40px;
	text-align: center;
	font-size: 1.2em;
	cursor: pointer;
	transition: transform 0.3s, background-color 0.3s;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.team-box:hover {
	background: #91d6e6;
	transform: scale(1.05);
}
.team-box strong {
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.center-text {

	position: absolute;
	top: 75%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 5em;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
	z-index: 10;
	width:100%;
	text-align: center;
}

.banner-text {
	width:100%;
	text-align: center;
	color: #004990;
	font-size: 3em;
	z-index: 10;
}


.center-text-2 {
	position: absolute;
	top: 75%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 3em;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
	z-index: 10;
	width:100%;
	text-align: center;
}

.center-text-top {
    position: absolute;
    top: 0; /* Stick to the top */
    left: 0;
    width: 100%;
    padding: 20px 0; /* Adds space above/below the text */
    background: rgba(0, 0, 0, 0.5); /* Optional: semi-transparent banner */
    color: white;
    font-size: 2.5em;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    z-index: 10;
}

.mission-section {
	max-width: 800px;
	margin: 50px auto;
	padding: 40px;
	background-color: white;
	border-radius: 16px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.mission-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.mission-heading {
	font-size: 32px;
	font-weight: bold;
	color: #005398;
	text-align: center;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.mission-text {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	text-align: justify;
	position: relative;
	z-index: 1;
}

/* Wrap the content in a container */
.facility-section {
    padding: 0 40px; /* horizontal padding */
    max-width: 1200px;
    margin: 0 auto;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.facility-section {
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

/* More visible facility type headings */
.type-heading {
    font-size: 2rem;
    font-weight: 600;
    margin: 60px 0 20px;
    color: #2c3e50;
    border-bottom: 3px solid #0a0a0a;
    padding-bottom: 8px;
}

.ScoresTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 1.05em;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.ScoresTable thead {
    background-color: #004990;
    color: white;
    text-align: left;
}

.ScoresTable thead th {
    padding: 14px 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.95em;
    letter-spacing: 0.5px;
}

.ScoresTable tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.ScoresTable tbody tr:hover {
    background-color: #f1f7ff;
}

.ScoresTable tbody td {
    padding: 14px 20px;
    color: #333;
}

.ScoresTable tbody td:first-child {
    font-weight: 500;
    color: #002244;
}



.breadcrumb-link {
	margin: 20px 0;
	display: inline-block;
}

.college-logo {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.pro-logo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
}
 
@media (max-width: 600px) {
    .ScoresTable thead {
        display: none;
    }

    .ScoresTable, 
    .ScoresTable tbody, 
    .ScoresTable tr, 
    .ScoresTable td {
        display: block;
        width: 100%;
    }

    .ScoresTable tr {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
        padding: 10px;
        background: #fff;
    }

    .ScoresTable td {
        text-align: right;
        padding: 10px;
        position: relative;
    }

    .ScoresTable td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 10px;
        font-weight: bold;
        color: #004990;
        text-align: left;
    }
}





