@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
}
:root {
    --moon-blue: #071f60;
    --moon-red: #D2042D;
}

/* General Styles */
body {
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
navbar {
    color: white;
    font-style: Bolder;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: var(--moon-blue);
    font-size: 200%;
    font-family: Lucida;
    display:flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 5px solid var(--moon-red);
    position: sticky;
    left: 0;
    top: 0;
    box-shadow: 0px 0px 15px 2px rgba(210,4,45,0.75);
    -webkit-box-shadow: 0px 0px 15px 2px rgba(210,4,45,0.75);
    -moz-box-shadow: 0px 0px 15px 2px rgba(210,4,45,0.75);
    z-index: 10;
    width: 100%;
    height: 120px;
}
.secondaryNav {
    background: var(--moon-red);
    padding-bottom: 4px;
    position: fixed;
    width: 100%;
    z-index: 2;
}

#rocketNewsContent {
    background: white;
    width: 90%;
    margin-left: 10%;
    margin-right: 10%;
    font-size: 100%;
    word-wrap:break-word;
}

/* schedule table */
table {
    width: 80%;
    font-family: "Rubik", sans-serif;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-collapse: separate;
    border-spacing: 0;
}
.tableHeader {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: none;
}
th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
    font-family: "Rubik", sans-serif;
}
td > a {
    padding: 12px;,
    text-align: center;
    font-family: "Rubik", sans-serif;
}

th {
    background-color: #f4f4f4;
}
tr:hover {
    background-color: #f1f1f1;
}
th.date, th.opponent, th.result, th.gameInfo {
    border-top: none;
.win {
    color: green;
    font-weight: bold;
}
.loss {
    color: red;
    font-weight: bold;
}
/* Sport Page Styles */
.sportSeason {
    font-size: 45px;
    align-self: flex-start;
    margin-left: 120px;
    margin-bottom: 30px;
}
.sportTitle {
    margin: 0 auto;
    margin-top: 15px;
}
.secondaryNav > ul {
    display: flex;
    gap: 10px;
}
.topHeadline {
    border: 1px solid #ddd;;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    cursor: pointer;
    text-align: center;
}
.topHeadline > h3 {
    font-size: 22px;
}
.sectionWrapper {
    display: flex;
    margin-top: 50px;
}
.opponent {
    border-left: none;
    border-right: none;
    width: 300px;
    text-align: left;
    font-weight: bold;
}
.date {
    border-right: none;
}
.result {
    border-left: none;
    border-right: none;
    width: 100px;
}
.gameInfo {
    width: 200px;
    border-left: none;
    height: 70px;
    
}
.newsWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.matchLink {
    text-decoration: none;
    color: darkblue;
}
.matchLink:hover {
    text-decoration: underline;
}
.newsWrapper > p {
    padding: 0 70px;
}
.newsWrapper > img {
    margin: 40px 0;
}
/* FBLA Page Styles */
.FBLAWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.meetOfficers {
    font-size: 25px;
    margin: 15px;
}
.dropdownsWrapper {
    display: flex;
    align-items: center;
    z-index: 101;
}
.topContentWrapper {
    display: flex;
}
.topContentWrapper > h3 {
    
    font-weight: 400;
}
.newsContentWrapper {
    color: black;
    display: flex;
    flex-direction: column;
}
.newsContentWrapper > h4 {
    color: gray;
    font-weight: 400;
}
.rocketNewsDate {
    color: gray;
}
.preview {
    display: flex;
    gap: 20px;
    text-decoration: none;
    width: 800px;
    margin: 20px;
}
.newsTitle {
    text-decoration: none;
    font-size: 18px;
}
header p {
    font-style: italic;
    
}
.placeholder {
    width: 200px;
    height: auto;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}
/* FBLA Officer Styles */
.profileImage {
    width: 250px;
    height: auto;
}
.profileItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px;
}
.profilesWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.profileItem > h1 {
    text-align: center;
    font-weight: 400;
}
.profileItem > span {
    font-size: 22px;
    text-align: center;
}
.profile
nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--moon-blue);
}

/* Main Content Styles */
main {
    
}
/* background styles */
.background {
    background: url("./img/newWebsiteBG.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    display: grid;
}
.mainSectionWrapper {
    width: 80%;
    margin-left: 10%;
    background: white;
    padding-top: 60px;
    padding-bottom: 30px;
    border-left: 5px solid black;
    border-right: 5px solid black;
}
section {
    margin-bottom: 20px;
}

h2 {
    border-bottom: 2px solid red;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: left;
}
/* Home Page Upcoming Events Styles */
#Upcoming-Events {
    width:100%;
    flex-direction: column;
    align-items: center;
    margin:auto;
    display:flex;
}
.upcomingEventsTitle {
    font-size: 170%;
    color: white;
    text-align: center;
    background: var(--moon-red);
    width: 70%;
}
/* Footer Styles */
footer {
    background: #001859;
    color: #fff;
    padding: 3rem 0;
    display: flex;
    gap: 70px;
    justify-content: center;
}
#Football {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    
}

footer a:hover {
    text-decoration: underline;
}
.button {
    background-color:blue;
    border: solid;
    color: white;
    padding: 100px 100px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 34px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: navy; /
}
h3 {
    color:navy;
}
em {
    font-size:10px;
}
h2 {
    color: var(--moon-red);
}
.dates {
    color:white;
    font-family:arial;
}
.loss {
    color:red;
}
.win {
    color:green;
}
.record {
    color:blue;
    font-style:italic;
    font-family:thin;
}


navbar > .logo > h1 {
    justify-content: start;
    margin:  20px 300px 0px 0px;
    float: right;
}
/* dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
    
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 110;
    left: 38%;
    transform: translateX(-50%);
    top: 65px;
    background: var(--moon-blue);
}
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    z-index: 110;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #162a60;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.navOption {
    font-size: 18px;
    cursor: pointer;
    padding: 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.logo {
    justify-content: start;
    background-color: none;
    color: white;
    text-decoration: none;
    font-size: 100%;
}

.logo > img {
    margin-top: 5px;
    width: 150px;
    height: 150px;
    margin-right: 10px;
    margin-bottom: 0px;
}
/* Carousel Wrapper */
.carousel-wrapper {
    width: 50%;
    margin: auto;
    margin-top: 5%;
    display:flex;
    overflow: hidden; /* Ensures only one item shows at a time */
}
.footballTeam {
    width: 300px !important;
    text-align: center;
    margin-top: 100px;
    font-size: 20px;
}
.football-item {
    width: 300px !important;
}
/* Carousel */
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin: auto;
    width: 100%; /* Full width of the container */
}

/* Carousel Items */
.carousel-item {
    width: 100%; /* Ensures each carousel item is the same width */
    text-align: center;
    flex-shrink: 0; /* Prevents the items from shrinking */
}
/* Carousel Image */
.carouselImage {
    width: 85%; /* Ensures image takes up the full width of the carousel item */
    height: auto; /* Maintains aspect ratio */
}

/* Buttons for Controls */
button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    margin:10%;
    margin-top:20%;
    color: white;
    border: none;
    padding: 1%;
    cursor: pointer;
    font-size: 18px;
}

button.prev {
    left: 0;
}

button.next {
    right: 0;
}

button.prev:hover, button.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.container > h1 {
    font-size: 20px;
}
.socialMedia {
    display: flex;
    margin-top: 30px;
    
}
.socialMedia > a > img {
    width: 70px;
    height: auto;
    
}
.twitter {
    width: 51px !important;
    margin-bottom: -5px;
}
.copyright {
    font-size: 15px;
}
.alerts {
    font-weight: bold;
    font-size: 18px;
}
.fblaLogo {
    width: 300px;
    height: auto;
}