
:root {
  --primary-color: #0f1921;
  --secondary-color: #ffff00; 
  --light-gray: #f5f5f5;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
}

.blue-navbar {
  background-color: #0f1921;
}


.blue-navbar .nav-link {
  color:#ffffff;
}

.lightning-label {
  color:#ffffff;
  font-weight:bold;
  font-size:2em;
}


player-profile .photo-container {
  border:2px solid #333;
  width:30%;
  height:500px;
}

player-profile .stats-container {
  border:2px solid #333;
  width:30%;
  height:500px;
}

player-profile .details-container {
  border:2px solid #333;
  width:30%;
  height:500px;
}

.team-tab-container div {
  cursor:pointer;
  background-color: #0f1921;
  color:#ffffff;
  font-weight:bold;
  padding:5px;
  font-size:1.2em;
  border-radius: 5px;
  margin: 3px;
  text-align: center;
}

.team-tab-container :hover {
  background-color: #ffff00;
}

team-container {
  width:100%;
}

#player-selector div {
  cursor:pointer;
  background-color: #0f1921;
  color:#ffffff;
  font-weight:bold;
  padding:5px;
  font-size:1.2em;
  border-radius: 5px;
  margin: 3px 0;
}

#player-selector div :hover {
  background-color: #ffff00;
}

.stats-table {
  width: 100%; 
  background-color: #fff; 
  margin: 5px 0 10px 0; 
  border: solid 1px #525252; 
  border-collapse:collapse;
}
.stats-table td {
  padding: 2px; 
  border: solid 1px #c1c1c1; 
  color: #000000;
}   
.stats-table th {
  padding: 4px 2px; 
  color: #fff; 
  background: #0f1921;
  border-left: solid 1px #525252; 
  font-size: 0.9em;
}
.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #0f1921;
  border-color: #0f1921;
}

.hero-section {
  background: linear-gradient(to bottom, var(--primary-color) , #999900 );
  color: black;
  padding: 5rem 0;
  text-align: center;
}

.carousel-item img {
  max-height: 500px;
  object-fit: cover;
}

#imageRotator {
  margin-top:-15px;
}

.calendar-container {
  position: relative;
  overflow: hidden;
  padding-top: 75%; /* Aspect Ratio for responsiveness */
}
.calendar-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
}
.img-fluid {
  max-width: 100%;
  height: auto;
}

.section-header {
  background-color: #343a40; /* Dark background */
  color: #fff; /* White text */
  text-align: center;
  padding: 50px 20px;
}
.section-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.section-header p {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Sub-Header (No Background) */
.sub-header {
  text-align: center;
  margin-top: 20px;
}
.sub-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}
.sub-header p {
  font-size: 1.1rem;
  color: #666;
}

.section-header-nobg {
    font-size: 2.5rem; /* Adjust size */
    font-weight: bold;
    margin-bottom: 15px;
}

.section-header-sub-nobg {
  font-size: 2rem; /* Adjust size */
  font-weight: bold;
  margin-bottom: 15px;
}

.section-underline-white {
    width: 100%; /* Adjust width */
    height: 5px; /* Adjust thickness */
    background-color: #fefefe; /* Change color if needed */
    margin-bottom: 20px;
}

.section-header-card-nobg {
    font-size: 1.5rem; /* Adjust size */
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 5px;
}

.section-underline-card {
    width: 30%; /* Adjust width */
    height: 5px; /* Adjust thickness */
    background-color: #0f1921; /* Change color if needed */
    margin-bottom: 5px;
}



.image-text-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* Stacks on smaller screens */
  gap: 20px;
  margin-top: 20px;
}
.image-text-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Slight rounded edges */
}
.image-text-section .text-content {
  max-width: 500px;
}

.facebook-embed {
  max-width: 100%;
  margin: 0 auto;
}

.list-group-item {
  cursor: pointer;
}



/* Padding for sections */
.section {
  padding: 80px 20px;
}
.dark-section {
  background-color: #0f1921;
  color: white;
}
.light-section {
  background-color: #f8f9fa;
  color: black;
}
.grey-section {
    background-color: #f0f0f0;
    color: black;
}

.carousel-caption-left {
    position: absolute;
    left: 5%;
    bottom: 5%;
    text-align: left;
    border-radius: 5px;
}

.carousel-caption-left h2 {
    font-size: 3rem; /* Increase font size */
    font-weight: bold;
    color: white;
}
.carousel-caption-left p {
  font-size: 2rem; /* Increase font size */
  font-weight: bold;
  color: white;
  margin-bottom: 0;
}

.carousel-caption-center {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    border-radius: 5px;
}

    .carousel-caption-center h2 {
        font-size: 5vw; /* Increase font size */
        font-weight: bold;
        color: white;
        text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
    }

.carousel-caption-center p {
    font-size: 2rem; /* Increase font size */
    font-weight: bold;
    color: white;
    margin-bottom: 0;
}

.contact-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
  background-color: #f8f9fa;
}
.contact-card:hover {
  transform: scale(1.05);
}
.contact-name {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.contact-email a {
  color: #007BFF;
  text-decoration: none;
  font-size: 1rem;
}
.contact-email a:hover {
  text-decoration: underline;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* remove the gap so it doesn't close */
}

.facebook-embed-wrapper {
  max-width:470px;
  margin: 0 auto;
}

#multiItemCarousel {
    height:200px;
}

#playerDropdownButton {
  min-width:300px;
}


/* Thumbnail image styling */
.player-image {
  width: 80px; /* Small thumbnail size */
  height: auto;
  border-radius: 5px; /* Rounded corners */
}

/* Add hover effect to rows */
.clickable-row {
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.clickable-row:hover {
  background-color: #B7BABC; /* Light gray hover effect */
}

/* Style for individual stat blocks */
.stat-box {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
}

.stat-box strong {
    display: block;
    font-size: 1.1rem;
    color: #333;
}

.stat-box span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #007bff;
}

.temp-trump-image-container {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    background-image: url('/img/TrumpWall.gif');
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%; /* Ensures the GIF repeats horizontally */
}