/*-----------------------------------------------------------------------------
author:    www.visityakima.com
-----------------------------------------------------------------------------*/


/* =Sports Awards Global
-----------------------------------------------------------------------------*/

/* =Prosser Memorial Partnership
-----------------------------------------------------------------------------*/
.prosserMemorialPartnership {
	background:#fff;
	padding:1em;
	text-align: center;
	color:#988d85;
	font-size:75%;
	font-style: italic;
	}

.prosserMemorialPartnership img {
	width:300px;
	margin:0 auto;
	-webkit-transition: opacity 0.4s ease-in-out;
	-moz-transition: opacity 0.4s ease-in-out;
	-o-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;
	padding:0 0 .5em 0;
	}

.prosserMemorialPartnership img:hover {
	opacity:0.50;
    filter:alpha(opacity=50); /* For IE8 and earlier */
	}

@media screen and (max-width: 1175px) {

	.prosserMemorialPartnership img {
	width:250px;
	}
			
}

@media screen and (max-width: 800px) {

	.prosserMemorialPartnership img {
	width:150px;
	}
			
}

/* Basic Structure */

:root {
  --red: #8c182d;
  --dark: #0d0d0d;
  --light: #f6f6f6;
  --highlight: #eb6d24;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #000;
  line-height: 1.6;
	background:#0f3e52;
}

/* NAVIGATION AT TOP */
.section-nav {
  position: sticky;
  top: 0;
  background:#0f3e52;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  z-index: 100;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
  font-family: 'bebasneuepro-bold', Arial, sans-serif;
	text-transform: uppercase;
	font-size:2rem;
}

.section-nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  white-space: nowrap;
}

.section-nav a:hover {
  color: #417299;
}

/* HERO */
.hero {
	background:url(../img/sports-awards-hero-bg.jpg);
  background-color:#0f3e52;
	background-position: center center;
	background-size: cover;	
	background-attachment: fixed;
	
	background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero img {
  max-width:995px;
  width:100%;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.5rem;
  font-family: 'bebasneuepro-bold', Arial, sans-serif;
}

.hero h2 {
  font-size:2rem;
  margin-bottom: 1.5rem;
	line-height: 90%;
	max-width:995px;
  width:100%;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
	text-transform: uppercase;
}

.hero p {
  margin-bottom: 1.5rem;
	max-width:995px;
  width:100%;
  font-family: 'bebasneuepro-bold', Arial, sans-serif;
}

/* EVENT DATE & VENUE BOX */
.event-info {
  background: #92b8d7;
  color: #0F3E52;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 1.5rem;
max-width:995px;
  width:100%;
  font-family: 'bebasneuepro-bold', Arial, sans-serif;
}

.event-date {
  font-size: 3rem;
  margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.event-venue {
  font-size: 1.5rem;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: var(--highlight);
  color: #fff;
  padding: 0.8rem 1.6rem;
  margin-top: 1rem;
	margin-bottom: 1rem;
  text-decoration: none;
  transition: 0.3s;
  font-size:2rem;
  border-radius: 6px;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
	text-transform: uppercase;
}

.btn:hover {
  transform: translateY(-3px);
}

/* SECTIONS */
.section {
  padding: 4rem 5%;
}

.alt {
  background: #14688c;
}

.section-title {
  border-left: 5px solid var(--red);
  padding-left: 1rem;
  margin-bottom: 2rem;
  font-size:3rem;
	color:#fff;
  font-family: 'bebasneuepro-bold', Arial, sans-serif;
	text-transform: uppercase;
	line-height: 90%;
}

.section-paragraph {
  margin-bottom: 2rem;
	color:#fff;
}

/* ACCORDION */
details {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: white;
  transition: 0.3s;
}

summary {
  padding: 1.2rem;
  cursor: pointer;
  position: relative;
  list-style: none;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
	text-transform: uppercase;
	font-size:2rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: 0.3s;
}

details[open] summary::after {
  content: "−";
}

details[open] summary {
  background: var(--red);
  color: white;
}

.accordion-content {
  padding: 1.5rem;
  background: #fafafa;
  animation: fadeIn 0.3s ease;
  display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 2rem;
}

/* NOMINEE LIST */
.nominee-group {
  margin-bottom: 1.5rem;
}

.nominee-group h4 {
  margin-bottom: 0.5rem;
  color: var(--red);
}

.nominee-group ul {
  padding-left: 1rem;
	list-style: circle;
}

.nominee-group li {
  margin-bottom: 0.3rem;
}

/* CTA */
.cta {
  text-align: center;
  background: #fff;
  color: #0f3e52;
  padding: 0;
}

.cta h2 {
  font-size:3rem;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
	text-transform: uppercase;
	line-height: 90%;
}

.cta btn {
  margin-bottom: 1.5rem;
}

.split-container {
  display: flex;
  width: 100%;
  min-height: 1vh; /* Takes up the full height of the viewport */
}

/* Base style for both columns on desktop */
.content-col, .photo-col {
  flex: 0 0 50%; /* Forces both to be exactly 50% wide */
  width: 50%;
}

/* Left Column Styling */
.content-col {
  display: flex;
  flex-direction: column;
  justify-content: center; /* This is what centers the text vertically! */
  padding: 3rem;
  background-color: #f4f7f6;
}

.text-wrapper {
  /*max-width: 500px; /* Keeps text lines from getting too long and ugly */
  margin: 0 auto; /* Centers the content box horizontally within the column */
}

/* Right Column Styling */
.photo-col {
  height: 100%;
}

.photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This forces the photo to fill the container perfectly */
  display: block;
}

/* Mobile Layout */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column; /* Stacks the columns vertically */
  }

  .content-col, .photo-col {
    flex: 0 0 100%; /* Resets them to take up full width on mobile */
    width: 100%;
  }

  .content-col {
    padding: 3rem 1.5rem; /* Reduces padding on smaller screens */
  }

  .photo-col {
    height: 350px; /* Gives the photo a fixed height on mobile so it doesn't collapse */
  }
}

/* FOOTER */
footer {
  background: #0f3e52;
  color: white;
  text-align: center;
  padding: 2rem;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* MOBILE */

@media (max-width: 1024px) {
	
.section-nav {
	font-size:1rem;
}
	
.hero {
  background-attachment: scroll;
}
	
.hero h2 {
  font-size:1.5rem;
}
	
.accordion-content {
	grid-template-columns: 1fr 1fr;
	}

}
@media (max-width: 600px) {
  .hero {
  }

  .event-date {
    font-size: 1.5rem;
  }

  .event-venue {
    font-size: 1rem;
  }
	
.accordion-content {
	grid-template-columns: 1fr;
	}
	
}

	/* =footer
-----------------------------------------------------------------------------*/

footer {
	background:#0f3e52;
	border-top:#92b8d7 solid 10px;
	padding:0 0 0 0;
	margin:0 0 0 0;
	text-align:center;
	}
	
.footerLogo {
	margin:-2em auto 1em auto;
	padding:0 0;
	width:10%;
	position:relative;
	z-index:5000;
	}
	
.footerLinks {
	padding:0 0 1.5em 0;
	border-bottom:#417299 solid 1px;
	margin:0 0 1.5em 0;
	color:#417299;	
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
	text-transform: uppercase;
	}
	
.footerLinks a {
	color:#ffffff;
	-webkit-transition: color 0.4s ease-in-out;
	-moz-transition: color 0.4s ease-in-out;
	-o-transition: color 0.4s ease-in-out;
	transition: color 0.4s ease-in-out;
	}

.footerLinks a:link, .footerLinks a:visited {
	text-decoration:none;
	}

.footerLinks a:hover, .footerLinks a:active {
	color:#417299;
	}
	
footer h2 {
	color:#ffffff;
	font-family: 'bebasneuepro-bold', Arial, sans-serif;
	text-transform: uppercase;  
	font-size:2.5em;
	margin:0 0 .5em 0;
	font-weight:normal;
	line-height:90%;
	text-align:center;
	}

.copyright {
	color:#417299;
	font-size:.8em;
	padding:0 0 4em 0;
	}

.presentingSponsor {
	margin:0 auto 2em auto;	
	padding:0;
	width:35%;
	}
	
.footerSponsors {
	width:85%;
	margin:0 auto;
	}
	
.footerSponsors ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers the items, including the last row */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px; /* Optional: adds space between the logos */
}

.footerSponsors li {
  flex: 0 1 200px; /* Won't grow, can shrink, base size 200px */
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footerSponsors li img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease; /* Smooth transition for the fade */
}

.footerSponsors li img:hover {
  opacity: 0.6; /* The "fade" effect on hover */
  cursor: pointer;
}
	
.footerSponsors ul li a {
	text-decoration:none;
	}
	
.footerSponsors ul li img {
	margin:0 auto;
	max-width:200px;
	width:90%;
	}
	
@media screen and (max-width: 1250px) {
	
	
}

@media screen and (max-width: 800px) {
	
footer {
	padding:0 5% 5% 5%;
	}
	
.footerLogo {
	margin:1em auto 1em auto;
	padding:0 0;
	width:15%;
	}
	
}

/* Mobile Breakpoint (typically 768px or 600px) */
@media (max-width: 600px) {
	
	.footerLogo {
	width:30%;
	}
	
  .footerSponsors li {
    /* 50% width minus half of the 20px gap */
    flex: 0 1 calc(50% - 10px); 
    
    /* We reset max-width so it can grow/shrink to exactly 50% */
    max-width: none; 
  }

  .footerSponsors ul {
    /* Ensure the gap remains consistent */
    gap: 20px; 
  }
}

