/* Font Face */
@font-face {
  font-family: 'Gagalin-Regular';
  src:url('/fonts/Gagalin-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Capsmall-Clean';
  src: url('/fonts/Capsmall-Clean.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'oswald-semi-bold';
  src: url('/fonts/oswald-semi-bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}


/* Root Variables */
:root {
  --color-black: #000000;
  --color-dark-gray: #1e1e1e;
  --color-red: #ff3333;
  --color-red-dark: #cc0000;
  --color-white: #ffffff;
  --color-light-gray: #cccccc;
  --font-headings: 'Gagalin-Regular', sans-serif;
  --header-height: 90px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  padding-top: calc(1rem);
  min-height: 100vh;
  height: 100%;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  width: 100%;
}

/* Layout */
.container {
  max-width: 100%;
  width: 100%;
}


/* Footer Styles */
.footer-content {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-black);
  border-top: 1px solid var(--color-white);
  padding: 1.5rem;
  text-align: center;
}

.copyright {
  color: var(--color-white);
  font-family: 'oswald-semi-bold', sans-serif;
  font-size: 1rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-content {
    padding: 1.5rem;
  }

  .copyright {
    font-size: 0.9rem;
  }
}

/* Header & Navigation */
header {
  background-color: var(--color-black);
  padding: 0rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-white);
}

nav {
  padding-left: 20px;
  padding-right: 30px;
  display: flex;
  justify-content: space-between;
  left: 2rem;
  width: 100%; /* Ensure nav takes full width */
}

.logo-image {
  height: 175px;
  width: auto;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  margin-right: auto; /* Push everything after this to the right */
}


.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  font-family: 'Capsmall-Clean', sans-serif;
  font-size: 2.5rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  position: relative;
}

/* Underline effect on hover */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--color-red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-red);
}

/* Dropdown specific styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.dropdown-arrow {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.8em;
  transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: var(--color-dark-gray);
  border: 1px solid var(--color-light-gray);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  font-size: 1.1rem;  /* Slightly smaller than main nav items */
  font-family: 'Capsmall-Clean', sans-serif;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: var(--color-black);
}

/* Social Links Styles */
.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-left: auto; /* Push to the far right */
}

.social-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 2rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  position: relative;
}

/* Apply the same hover effect as nav links */
.social-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--color-red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.social-links a:hover::after {
  width: 80%;
}

.social-links a:hover {
  color: var(--color-red);
}

.mobile-social-links {
  display: none;
}

/* Main Content Area */
main {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--color-red);
  margin-bottom: 1.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.business-card-section {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  position: relative;
}

.business-card-image {
  max-width: 900px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0);
  position: relative;
  z-index: 2;
  padding: 2rem;
  margin: 0 auto;
  display: block;
}

.business-card-container {
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0);
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .business-card-container {
    max-width: 90%;
    padding: 1rem;
  }
  
  .business-card-image {
    max-width: 100%;
    padding: 1rem;
  }
}

/* Card Component */
.card {
  background-color: var(--color-dark-gray);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Home Page */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-content {
  text-align: center;
  padding: 2rem;
}

.home header {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding-right: 5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 180px;
  }


  .mobile-social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
  }

  .mobile-social-links a {
      color: var(--color-white);
      font-size: 2rem;
  }

  /* Hide the original social links in mobile view */
  .social-links {
      display: none;
  }
  
  .body{
    height: 100%;
  }
  .container {
    padding: 0rem;
    max-width: 100%;
  }

  /* Center logo container */
  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
  }

  .logo-image {
    height: 175px;
    margin: 0 auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-black);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }
  
  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    visibility: visible;
    opacity: 1;
    width: 100%;
    border: none;
    box-shadow: none;
    margin-left: 1rem;
    display: none;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    font-size: 1rem;
  }
}


/* About Page Styles */
.about-section {
  position: relative;
  min-height: calc(100vh - 20rem); /* Account for header height */
  margin: 1rem; /* Compensate for container padding */
  padding: 12rem 1rem 1em;
  overflow: hidden;
  background-color: var(--color-black);
  z-index: 0;
}

.background-image {
  position: fixed; /* Changed to fixed for better parallax effect */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  opacity: 0.2;
  filter: brightness(0.75) contrast(1.2);
}

.content-area {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.title-container {
  text-align: left;
  margin-bottom: 2rem;
  position: relative;
  padding: 1rem 0;
}

.title-container::before,
.title-container::after {
  content: '';
  position: absolute;
  background-color: var(--color-red);
  left: 0;
  height: 2px;
}

.title-container::before {
  top: 0;
  width: 100px;
  transform: translateX(4%);
}

.title-container::after {
  bottom: 0;
  width: 75px;
  transform: translateX(3%);
}

.title-container .title {
  font-style: italic;
  font-family: 'oswald-semi-bold', sans-serif;
  font-size: 5rem;
  margin: 0;
  padding: 0rem 0;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.intro-text {
  margin-bottom: 5rem;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--color-white);
  max-width: 900px;
  opacity: 0.9;
}

.columns-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  color: var(--color-white);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* These styles handle the Hugo shortcodes */
.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Remove default margin from paragraphs inside columns */
.left-column p,
.right-column p {
  margin-bottom: 0;
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .about-section {
    padding: 5rem 2rem 4rem;
  }

  .title-container .title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 1.5rem;
  }

  .title-container {
    margin-bottom: 3rem;
    padding: 1.5rem 0;
  }

  .title-container .title {
    font-size: 3rem;
  }

  .intro-text {
    font-size: 1.15rem;
    margin-bottom: 3rem;
  }

  .columns-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .title-container::before {
    width: 80px;
    transform: translateX(8%);
  }

  .title-container::after {
    width: 60px;
    transform: translateX(6%);
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 3rem 1rem;
  }

  .title-container .title {
    font-size: 2.5rem;
  }

  .intro-text {
    font-size: 1.1rem;
  }

  .columns-container {
    gap: 2rem;
  }
}




/* Reality Show Page Styles */
.reality-page {
  margin: 0rem;
}

.reality-section {
  padding-top: 200px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reality-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 2rem;
}

/* Title Section */
.title-section {
  padding-top: 200px;
  min-height: 40vh; /* Shorter title card */
  text-align: left;
}

.title-container {
  position: relative;
  padding: 2rem 0;
  margin: 0 auto;
  max-width: 1200px;
}

.title-container::before,
.title-container::after {
  content: '';
  position: absolute;
  left: 4%;
  transform: translateX(-50%);
  height: 2px;
  background-color: var(--color-red);
}

.title-container::before {
  top: 0;
  width: 100px;
}

.title-container::after {
  bottom: 0;
  width: 75px;
}

.title {
  font-family: 'oswald-semi-bold', sans-serif;
  font-size: 5rem;
  color: var(--color-red);
  margin: 0;
  padding: 0.5rem 0;
  font-style: italic;
}

.subtitle {
  font-size: 1.5rem;
  color: var(--color-white);
}

/* Content Sections */
.watch-section,
.athletes-section,
.gallery-section,
.rules-section {
  min-height: 20vh;
  padding: 6rem 0;
}

/* Section Titles */
.section-title {
  font-family: 'Gagalin-Regular', sans-serif;
  font-size: 5rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  text-align: center;
}

/* Watch Section */
.watch-section {
  min-height: 15vh;
  padding: 6rem 0;
  transition: transform 0.3s ease;
  overflow: hidden;
  position: relative;
}

.watch-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  transition: background-color 0.3s ease;
}

.watch-link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  width: 100%;
  height: 100%;
  text-transform: none;
  letter-spacing: normal;
  font-weight: lighter;
}

.section-title {
  font-family: 'Gagalin-Regular';
  font-size: 6 rem;
  color: var(--color-white);
  margin: 0;
  transition: transform 0.3s ease;
}

/* Hover effects */
.watch-section:hover {
  transform: scale(1.02);
}

.watch-section:hover::before {
  background: rgba(0, 0, 0, 0.8);
}

.watch-section:hover .section-title {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .watch-section {
      padding: 4rem 0;
  }
  
  .section-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .watch-section {
      padding: 3rem 0;
  }
  
  .section-title {
      font-size: 2rem;
  }
}

/* Athletes Section */
.athletes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.athlete-card {
  background: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.athlete-card:hover {
  transform: translateY(-5px);
}

.athlete-image {
  width: 100%;
  height: 95%;
  object-fit: auto;
}

.athlete-name {
  padding: 1rem;
  color: var(--color-white);
  font-size: 1.5rem;
  margin: 0;
  font-family: 'Gagalin-Regular', sans-serif;
}

.athlete-description {
  padding: 0 1rem 1rem;
  color: var(--color-white);
  font-size: 1rem;
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  background: var(--color-black);
  min-height: 100vh;
  padding: 4rem 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-section::before {
  display: none;
}

.gallery-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'Gagalin-Regular', sans-serif;
  font-size: 5rem;
  color: var(--color-white);
}

.gallery-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 250px);
  overflow-y: auto;
}

.gallery-item {
  aspect-ratio: 1;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  background: #2a2a2a;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 40px;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex !important;
}

.modal-content {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  display: block;
  margin: auto;
}

#imageModal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#imageModal.show {
  opacity: 1;
}

#modalImage {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

body.modal-open {
  overflow: hidden;
}


/* Scrollbar Styling */
.gallery-grid {
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}

.gallery-grid::-webkit-scrollbar {
  width: 6px;
}

.gallery-grid::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-grid::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 3px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 3rem 0;
  }

  .gallery-section .section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }

  .modal {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .gallery-section .section-title {
    font-size: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
}

/* Rules Section */
.rules-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  color: var(--color-white);
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'oswald-semi-bold' ;
}

.rules-content ul {
  list-style-position: inside;
  padding-left: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .title-section {
      min-height: 30vh;
  }

  .title-container {
      padding: 1.5rem 0;
  }

  .title {
      font-size: 3rem;
  }

  .subtitle {
      font-size: 1.2rem;
  }

  .section-title {
      font-size: 2.5rem;
  }

  .watch-section,
  .athletes-section,
  .gallery-section,
  .rules-section {
      padding: 4rem 0;
  }

  .content-wrapper {
      padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .title-section {
      min-height: 25vh;
  }

  .title {
      font-size: 2.5rem;
  }

  .section-title {
      font-size: 2rem;
  }

  .content-wrapper {
      padding: 0 1rem;
  }
}



/* Reality Index Page */
.reality-index-page {
  width: 100%;
  min-height: 10vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 200px;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}

.reality-index-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  overflow: hidden;
  width: 100%;
}

.reality-index-link:hover {
  transform: scale(1.02);
}

.reality-index-section {
  position: relative;
  width: 100%;
  height: 25vh;
  border-radius: 20px;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.reality-index-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
}

.reality-index-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reality-index-container {
  text-align: center;
  z-index: 1;
}

.reality-index-title {
  font-size: 8rem;
  margin: 0;
  font-family: 'Gagalin-Regular', sans-serif;
  text-transform: none;
  letter-spacing: normal;
  font-weight:lighter;
  color: #000;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .reality-index-title {
      font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .reality-index-title {
      font-size: 2rem;
  }
  
  .reality-index-section {
      aspect-ratio: 3/4;
  }
}


.partners-page {
    width: 100%;
    min-height: 100vh;
}

/* Hero Section */
.partners-hero {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
}

.partners-hero-wrapper {
    padding-top: 125px;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-hero-title {
    font-size: 4rem;
    font-family: 'Gagalin-Regular', sans-serif;
    color: #000;
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal;
    text-shadow: 
        -1px -1px 0 rgba(255,255,255,0.7),
        1px -1px 0 rgba(255,255,255,0.7),
        -1px 1px 0 rgba(255,255,255,0.7),
        1px 1px 0 rgba(255,255,255,0.7);
    z-index: 1;
}

/* Partners Grid Section */
.partners-page {
  padding-top: 40px;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.partners-hero {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  flex-shrink: 0; /* Prevents hero section from shrinking */
}
.partners-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
}

.partners-hero-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-hero-title {
  font-size: 10rem;
  font-family: 'Gagalin-Regular', sans-serif;
  color: #000;
  text-transform: none;
  letter-spacing: normal;
  font-weight: normal;
  text-shadow: 
      -1px -1px 0 rgba(255,255,255,0.7),
      1px -1px 0 rgba(255,255,255,0.7),
      -1px 1px 0 rgba(255,255,255,0.7),
      1px 1px 0 rgba(255,255,255,0.7);
  z-index: 1;
}

/* Partners Grid Section */
.partners-grid-section {
  flex: 1;  /* Changed from flex-grow: 1 to flex: 1 */
  width: 100%;
  background: #979595;
  display: flex;
  flex-direction: column;
}

.partners-grid {
  width: 100%;
  height: 100%; /* Fill the available space */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 30px 20px;
  box-sizing: border-box;
}

.partner-card {
  height: 200px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.partner-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partners-hero {
      height: 300px;
  }

  .partners-hero-title {
      font-size: 3rem;
  }
  
  .partners-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
  }

  .partner-card {
      height: 150px;
  }
}

@media (max-width: 480px) {
  .partners-hero {
      height: 200px;
  }

  .partners-hero-title {
      font-size: 2rem;
  }
  
  .partners-grid {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 15px;
  }
  
  .partner-card {
      height: 120px;
      padding: 15px;
  }
} 



.presentation-container {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 175px);
  background-color: transparent;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  display: flex;
  flex-direction: column;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: transparent;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.slide.active {
  opacity: 1;
}

.slide img {
  margin-top: 50px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 51, 51, 0.3);
  color: var(--color-white);
  padding: 16px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
  z-index: 3;  /* Above slides */
  font-family: var(--font-headings);
}

.nav-button:hover {
  background: var(--color-red);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.dots-container {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;  /* Above slides */
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: var(--color-red-dark);
}

.dot.active {
  background: var(--color-red);
  transform: scale(1.2);
}

@media screen and (max-width: 768px) {
  .presentation-container {
    height: calc(100vh - 40px); /* Mobile header height */
    margin-top: 40px; /* Mobile header height */
  }

  .slide {
    height: 100%; /* Changed from fixed calculation */
  }

  .nav-button {
      width: 40px;
      height: 40px;
      padding: 12px;
      font-size: 16px;
  }
  
  .dot {
      width: 10px;
      height: 10px;
  }

  .prev {
      left: 10px;
  }

  .next {
      right: 10px;
  }
}


.contact-button-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 40;
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: var(--color-red);
  color: var(--color-black);
  border: none;
  border-radius: 8px;
  font-family: var(--font-headings);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background-color: var(--color-red-dark);
  transform: translateY(-2px);
}

.contact-button .icon {
  width: 20px;
  height: 20px;
}

/* Modal Styles */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.contact-modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.modal-content-wrapper {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.contact-modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: -40px;
  right: -10px;
  color: var(--color-white);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
  z-index: 2;
}

.modal-close:hover {
  color: var(--color-red);
}

/* Modal Inner Content */
.modal-inner {
  padding: 2.5rem;
}

/* Header Styles */
.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h2 {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.modal-header p {
  font-family: 'oswald-semi-bold', sans-serif;
  color: var(--color-light-gray);
  font-size: 1rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'oswald-semi-bold', sans-serif;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-light-gray);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--color-white);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 2px rgba(255, 51, 51, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Status Messages */
.form-status {
  display: none;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  font-family: 'oswald-semi-bold', sans-serif;
}

.form-status.show {
  display: block;
}

.success {
  display: none;
  background-color: rgba(0, 255, 0, 0.1);
  color: #00ff00;
}

.error {
  display: none;
  background-color: rgba(255, 51, 51, 0.1);
  color: var(--color-red);
}

/* Submit Button */
.submit-button {
  width: 100%;
  background-color: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-headings);
  font-size: 1.2rem;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.submit-button:hover {
  background-color: var(--color-red-dark);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .modal-content {
      max-width: 100%;
  }

  .modal-inner {
      padding: 1.5rem;
  }

  .modal-header h2 {
      font-size: 2rem;
  }

  .modal-close {
      top: 10px;
      right: 10px;
      color: var(--color-light-gray);
  }
}

.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light-gray);
  padding: 0;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.close-button:hover {
  color: var(--color-red);
  transform: scale(1.1);
}

.close-button svg {
  width: 24px;
  height: 24px;
}

/* Adjust modal-inner padding to account for close button */
.modal-inner {
  padding: 2.5rem;
  padding-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .close-button {
      top: 10px;
      right: 10px;
  }
  
  .modal-inner {
      padding: 1.5rem;
      padding-top: 1.25rem;
  }
}


/* Keep your existing mobile menu button styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: absolute;
  right: 30px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  /* Center logo in header */
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 180px;
  }
  
  /* Show mobile menu button */
  .mobile-menu-btn {
      display: block;
  }

  /* Mobile Navigation Links */
  .nav-links {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: var(--color-black);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      padding: 2rem;
      z-index: 999;
      height: 100vh;
      width: 100vw;
  }

  .nav-links.active {
      display: flex !important;
  }

  /* Mobile Dropdown Styles */
  .dropdown {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      text-align: center;
  }

  .dropdown > a {
      width: 100%;
      text-align: center;
      justify-content: center;
  }

  .dropdown-content {
      position: static !important;
      display: none;
      width: 100%;
      visibility: visible;
      opacity: 1;
      background: transparent;
      border: none;
      box-shadow: none;
      margin: 1rem 0;
      padding: 0;
  }

  .dropdown:hover .dropdown-content,
  .dropdown.active .dropdown-content {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .dropdown-content a {
      padding: 0.5rem 0;
      width: 100%;
      text-align: center;
      font-size: 1.8rem;
      border: none;
  }

  /* Keep your existing hamburger animation */
  .mobile-menu-btn span {
      transition: all 0.3s ease-in-out;
      transform-origin: center;
  }

  .mobile-menu-btn.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
      opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }

  /* Adjust section padding */
  .about-section {
      padding-top: 200px;
  }
}


.main-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Presentation Styles */
.presentation-container {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 175px);
  background-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  margin-top: 175px;
  background-size: cover;
  background-position: center;
  z-index: 0;
  display: flex;
  flex-direction: column;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
}

/* Instagram Section Styles */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(326px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.instagram-item {
  min-height: 600px; /* Increased height for Reels */
  display: flex;
  justify-content: center;
}

.instagram-media {
  background: #FFF;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0), 0 1px 10px 0 rgba(0,0,0,0.15);
  margin: 1px;
  max-width: 540px;
  min-width: 326px;
  padding: 0;
  width: 99.375%;
  width: calc(100% - 2px);
}
/* Navigation buttons and dots styles remain the same */

@media (max-width: 768px) {
  .presentation-container {
      height: calc(100vh - 40px);
      margin-top: 40px;
  }

  .instagram-section {
      padding: 2rem 1rem;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .instagram-item {
      min-height: 680px; /* Even taller on mobile for Reels */
  }

  .section-title {
      font-size: 2rem;
      margin-bottom: 2rem;
  }

  /* Your existing mobile styles */
}

.separator {
  width: 100%;
  height: 1px;
  background-color: var(--color-white); /* or any color */
}

.utc-separator {
  width: 100%;
  height: 1px;
  background-color: var(--color-white); /* or any color */
  margin: 0;
}

.utc-main-container {
  width: 100%;
  background: var(--color-black);
}

.utc-image-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0; /* No gap between images */
}

.utc-image-wrapper {
  width: 100%;
  height: auto;
}

.utc-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}


.utc-contact-section {
  background: var(--color-black);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.utc-social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.utc-instagram-link {
  color: var(--color-white);
  font-size: 3rem;
  transition: all 0.3s ease;
}

.utc-instagram-link:hover {
  color: var(--color-red);
  transform: scale(1.1);
}

.utc-contact-form-container {
  width: 100%;
  max-width: 600px;
}

.utc-contact-title {
  color: var(--color-white);
  text-align: center;
  font-family: 'Capsmall-Clean', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.utc-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.utc-form-group {
  width: 100%;
}

.utc-form-input {
  width: 100%;
  padding: 1rem;
  background: var(--color-dark-gray);
  border: 1px solid var(--color-light-gray);
  border-radius: 4px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.utc-form-input::placeholder {
  color: var(--color-light-gray);
}

.utc-form-input:focus {
  outline: none;
  border-color: var(--color-red);
}

.utc-textarea {
  resize: vertical;
  min-height: 120px;
}

.utc-submit-btn {
  padding: 1rem 2rem;
  background: var(--color-red);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-family: 'Capsmall-Clean', sans-serif;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.utc-submit-btn:hover {
  background: var(--color-dark-red);
  transform: translateY(-2px);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .utc-main-container {
    margin-top: 175px;
    width: 100%;
    background: var(--color-black);
  }
  .utc-contact-section {
      padding: 3rem 1rem;
  }

  .utc-contact-title {
      font-size: 2rem;
  }

  .utc-instagram-link {
      font-size: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .utc-contact-section {
      padding: 2rem 1rem;
  }

  .utc-submit-btn {
      width: 100%;
  }
}

/* Leaderboard Table Styles */
.leaderboard-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.leaderboard-header {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.leaderboard-title {
  font-family: 'Gagalin-Regular', sans-serif;
  font-size: 2.5rem;
  color: var(--color-red);
}

.leaderboard-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-dark-gray);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.leaderboard-table thead {
  background-color: var(--color-black);
}

.leaderboard-table th {
  color: var(--color-red);
  font-family: 'Gagalin-Regular', sans-serif;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center; /* Center the header text */
  padding: 1.25rem 1rem;
  border-bottom: 2px solid var(--color-red);
}

.leaderboard-table td {
  color: var(--color-white);
  padding: 1rem;
  font-family: 'oswald-semi-bold', sans-serif;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Center the Team Name column data */
.leaderboard-table td:nth-child(2) {
  text-align: center;
}

.leaderboard-table tbody tr:last-child td {
  border-bottom: none;
}

.leaderboard-table tbody tr {
  transition: background-color 0.3s ease;
}

.leaderboard-table tbody tr:hover {
  background-color: rgba(255, 51, 51, 0.1);
}

/* Position column specific styles */
.leaderboard-table td:first-child {
  font-family: 'Gagalin-Regular', sans-serif;
  color: var(--color-red);
  font-size: 1.3rem;
  text-align: center;
  width: 80px;
}

/* Time column specific styles */
.leaderboard-table td:last-child {
  font-family: 'oswald-semi-bold', sans-serif;
  text-align: center; /* Center the time column */
}

/* Modern Refresh Button Styles */
.refresh-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  color: var(--color-white);
  font-family: 'oswald-semi-bold', sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(255, 51, 51, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.refresh-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 51, 51, 0.3);
  background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-red) 100%);
}

.refresh-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 51, 51, 0.2);
}

.refresh-btn:disabled {
  background: linear-gradient(135deg, #666666 0%, #444444 100%);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.refresh-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.refresh-btn:hover svg {
  transform: rotate(180deg);
}

.refresh-btn svg.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .leaderboard-container {
    padding: 1rem;
  }
  
  .leaderboard-title {
    font-size: 2rem;
  }
  
  .leaderboard-table th {
    font-size: 1rem;
    padding: 1rem 0.75rem;
  }
  
  .leaderboard-table td {
    font-size: 1rem;
    padding: 0.75rem;
  }
  
  .leaderboard-table td:first-child {
    font-size: 1.1rem;
    width: 60px;
  }
  
  .refresh-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .refresh-btn svg {
    width: 18px;
    height: 18px;
  }
}