/* FONTS */
@font-face {
  font-family: 'DeviceTM';
  src: url('DeviceTM-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SRCMedium';
  src: url('64-src-medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}
/* BODY */
body {
  margin: 0;
  font-family: 'SRCMedium', Arial, sans-serif;
}

body.menu-open {
  overflow: hidden; /* disables scrolling */
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
}

/* HEADER */
header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 100px;
  background-color: #191919;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 30px;
  letter-spacing: 1px;
  font-family: 'DeviceTM', sans-serif;
  padding-left: clamp(20px, 15vw, 312px);
  padding-right: clamp(20px, 15vw, 312px);
  box-sizing: border-box;
}

/* LEFT: LOGO */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 48px;     
  width: auto;       
  max-width: 100%;   
}

/* MIDDLE: NAV LINKS */
nav {
  display: flex;
  gap: 20px;
}
nav a {
  color: white;
  text-decoration: none;
  font-family: 'DeviceTM', sans-serif;
  letter-spacing: 1px;
}
nav a:hover {
  text-decoration: underline;
}

/* RIGHT: HEADER BUTTONS */
.header-buttons {
  display: flex;
  gap: 20px;
}
.pt-btn {
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'DeviceTM', sans-serif;
}

.donate-btn-header {
  background-color: #FE5C45;
  border: none;
  color: white;
  font-family: 'DeviceTM', sans-serif;
  width: 147px;  
  height: 44px;
  font-size: 30px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.donate-btn-header:hover {
  background-color: #e64f3b;
}

/* FIRST SECTION BELOW HEADER */
.first-section {
  width: 100%;
  display: block;        /* not flex */
  padding: 0;
  margin: 0;
  background: black;     /* fallback */
}

.section-content {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;  /* height auto-adjusts */
  margin: 0 auto;
}

.section-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/*  DONATION BOX  */
.donation-section {
    position: absolute;                           
    top: 58%;                                    
    left: 0;                                     
    padding-left: clamp(20px, 15vw, 312px);      
    transform: translateY(-50%);                 
    z-index: 10;                                 
    width: auto;
}

.donation-wrapper {
    width: 25em;                              
    margin: 0;
}

/* Donation Box Styling */
.donation-box {
    max-width: 100%;                              
    background-color: white;
    padding: 2em 1.5em;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    color: black;
    text-align: center;
}

/* Title */
.donation-box h2 {
    font-size: 30px;
    letter-spacing: 0.05em;
    margin: 0 0 10px 0; 
    font-family: 'DeviceTM', sans-serif;
}

.donation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.donation-raised {
  font-size: 24px;
  letter-spacing: 0.05em;
  font-family: 'DeviceTM', sans-serif;
  margin: 0;
}

.donation-info {
  font-size: 11px;
  text-align: justify;
  line-height: 1.3;    
  margin-bottom: 20px;
}

.donate-btn-custom {
  background-color: #FE5C45;
  border: none;
  color: white;
  font-family: 'DeviceTM', sans-serif;
  width: 100%;  
  height: 44px;
  font-size: 30px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;   /* makes it behave normally in flow */
}

.donate-btn-custom:hover {
  background-color: #e64f3b;
}

.donation-button-container {
  text-align: center;
  margin-top: 1em;
}


/* Amount buttons container 
.donation-buttons {
    display: flex; 
    gap: 0; 
    flex-wrap: wrap; 
}

.donation-buttons button {
    flex: 1; 
    background: none;
    border: 1px solid black;
    font-size: 24px;
    letter-spacing: 0.05em;
    cursor: pointer;
    font-family: 'DeviceTM', sans-serif;
    border-right: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-buttons button:last-child {
    border-right: 1px solid black; 
}

.donation-buttons button:hover {
    background-color: #f0f0f0; 
}*/

/* Spacer */
.donation-spacer {
    height: 1.2em;
}

/* Custom amount container 
.custom-amount-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid black;
    padding: 0 0.8em;
    height: 2.5em;
    font-size: 24px;
    box-sizing: border-box;
    font-family: 'DeviceTM', sans-serif;
    background-color: white;
}

.custom-amount-container label {
    font-size: 24px;
    line-height: 1;
}

.custom-amount-container input {
    width: 3.5em;
    font-size: 24px;
    text-align: right;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'DeviceTM', sans-serif;
}

.donation-buttons button.active,
.payment-btn.active {
    background-color: #FE5C45;
    color: white;
}*/





/* MISSION SECTION */
.mission-section {
  background-color: white;
  display: flex;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 120px;
}

.mission-container {
  display: flex;
  gap: 40px; 
  padding-left: clamp(20px, 15vw, 312px);
  padding-right: clamp(20px, 15vw, 312px);
  box-sizing: border-box;
  width: 100%;
  align-items: stretch; /* match heights */
}

.mission-left, .mission-right {
  width: 628px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Left Box Styling */
.mission-left {
  justify-content: flex-start;
}

/* Title */
.mission-title {
  font-size: 48px; 
  letter-spacing: 1px;
  font-weight: bold;
  margin: 0 0 20px 0; 
  text-align: left;
  font-family: 'DeviceTM', sans-serif;
}

/* Subtitle */
.mission-subtitle {
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: bold;
  margin: 0 0 20px 0;
  text-align: left;
  font-family: 'DeviceTM', sans-serif;
}

/* Paragraphs */
.mission-text {
  font-family: 'SRCMedium', sans-serif;
  text-align: left;
}
.mission-text p {
  margin: 0 0 12px 0;
  font-size: 12px;
  line-height: 1.4;
}

/* Right Box Styling */
.mission-right {
  justify-content: flex-start; 
}

.mission-right img {
  width: 100%;
  height: 100%; 
  object-fit: cover; 
  display: block;
  border-radius: 0px; 
}

.slider {
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 400%;          /* 4 slides */
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 25%;           /* 1/4 of .slides */
  height: auto;         /* keeps original image ratio */
  object-fit: cover;
  display: block;
}




/* EVENTS SECTION */
.events-section {
  background-color: #249A78;
  padding-top: 120px;
  padding-bottom: 120px;
}

.events-container {
  display: flex;
  flex-direction: column;
  padding-left: clamp(20px, 15vw, 312px);
  padding-right: clamp(20px, 15vw, 312px);
  box-sizing: border-box;
  width: 100%;
}

/* Header Row */
.events-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.events-title {
  font-size: 50px;
  font-family: 'DeviceTM', sans-serif;
  letter-spacing: 1px;
  margin: 0;
}

.tickets-btn {
  width: 200px;
  height: 60px;
  font-size: 30px;
  letter-spacing: 1px;
  background: none;
  border: 1px solid black;
  cursor: pointer;
  font-family: 'DeviceTM', sans-serif;
}

.tickets-btn:hover {
  background-color: #191919;
  color:#249A78;
}

/* EVENTS GRID */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Event box */
.event-box {
  background: white;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%; 
  max-width: 100%;
}

/* Event image */
.event-box img {
  width: 100%;
  height: 234px;
  object-fit: cover;
  display: block;
}

/* Event Content */
.event-content {
  padding: 20px;
  flex-grow: 1;
}

/* Top row: date + location */
.event-top {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'DeviceTM', sans-serif;
}

/* Title + live label row */
.event-title-row {
  display: flex;
    align-items: flex-start;
  gap: 10px;
}

.event-name {
  font-size: 30px;
  letter-spacing: 1px;
  margin: 0;
  font-family: 'DeviceTM', sans-serif;
  line-height: 1;
  margin-bottom: 20px;
}

/* LIVE STREAMING label */
.live-label {
  background-color: black;
  color: white;
  font-size: 20px; 
  padding: 5px 10px;
  font-family: 'DeviceTM', sans-serif;
  letter-spacing: 1px;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Event description */
.event-description {
  font-size: 12px;
  margin: 0 0 17px 0;
  line-height: 1.4;
  font-family: 'SRCMedium', sans-serif;
}

/* View Event Button */
.view-event-btn {
  background-color: black;
  color: white;
  border: none;
  height: 60px;
  font-size: 30px;
  cursor: pointer;
  font-family: 'DeviceTM', sans-serif;
  letter-spacing: 1px;
  width: 100%;
}







/* FAQ SECTION */

  .faq-link {
  color: #FE5C45;      
  text-decoration: underline;
  cursor: pointer;
}

.faq-link:hover {
  opacity: 0.8;        
}

.faq-section {
  background-color: #FE5C45;
  padding-top: 120px;
  padding-bottom: 120px;
}

.faq-container {
  padding-left: clamp(20px, 15vw, 312px);
  padding-right: clamp(20px, 15vw, 312px);
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
}

/* Section Title */
.faq-title {
  font-size: 50px;
  letter-spacing: 1px;
  text-align: center;
  margin: 0 0 60px 0;
  font-family: 'DeviceTM', sans-serif;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* FAQ Column */
.faq-column {
  display: flex;
  flex-direction: column;
}

/* FAQ Question */
.faq-question {
  font-size: 30px;
  margin: 0 0 20px 0;
  font-family: 'DeviceTM', sans-serif;
  letter-spacing: 1px;
}

/* FAQ Answer */
.faq-answer {
  font-size: 12px;
  margin: 0 0 20px 0;
  font-family: 'SRCMedium', sans-serif;
  line-height: 1.4;
}


.faq-section a {
    text-decoration: underline !important;
    cursor: pointer;
}

.faq-section a:hover {
    color: #0056b3; 
    text-decoration: underline !important;
}



/* PARTNERSHIPS SECTION */
.partnerships-section {
  background-color: #F1F2EC;
  padding-top: 120px;
  padding-bottom: 170px;
}

.partnerships-container {
  padding-left: clamp(20px, 15vw, 312px);
  padding-right: clamp(20px, 15vw, 312px);
  box-sizing: border-box;
  text-align: center;
}

.partnerships-title {
  font-size: 50px;
  letter-spacing: 1px;
  margin-bottom: 65px;
  font-family: 'DeviceTM', sans-serif;
}

.partnerships-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 111px;
}

.partnerships-logos img {
  height: 90px;
  width: auto;
}






footer {
  height: 100px;
  background-color: #191919;
  display: flex;
  align-items: center;
  position: relative; 
}

/* Container for left and right only */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: clamp(20px, 15vw, 312px);
  padding-right: clamp(20px, 15vw, 312px);
  box-sizing: border-box;
  color: white;
  font-family: 'DeviceTM', sans-serif;
  position: relative;
}

/* Middle links centered absolutely */
.footer-middle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  cursor: pointer;
}

.footer-middle a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
}

/* Left */
.footer-left span {
  font-size: 12px;
  letter-spacing: 1px;
}

/* Right */
.footer-right span {
  font-size: 12px;
  letter-spacing: 1px;
}











/* Hamburger (image button) */
.menu-toggle {
  display: none; /* hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle img {
  width: 50px;  /* adjust to your MENU.png size */
  height: auto;
}



@media (min-width: 1025px) {
  .donation-buttons button {
    height: 2.5em;
  }
}

@media (max-width: 1024px) {
  .donation-buttons button {
    height: 65px;
  }
}


/* Remove default link/button colors in Chrome */
a, a:visited, a:active, a:hover,
button, button:focus, button:active {
    color: inherit;          /* inherit your defined color */
    text-decoration: none;   /* remove underline */
    outline: none;           /* remove focus outline if needed */
    -webkit-appearance: none; /* removes Chrome default styles */
    -moz-appearance: none;
    appearance: none;
}

/* Specifically for your buttons */
.donation-buttons button,
.tickets-btn {
    color: #191919;       /* or black depending on design */
    background: none;   /* if needed */
    border: 1px solid black;
}




/* ========== MEDIA QUERIES ========== */
@media (max-width: 1400px) {

  /* Header base */
  header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-left: 44px;
    padding-right: 44px;
    height: 80px;
  }

  .logo {
    flex: 0 0 auto;
    z-index: 400;
  }
  .logo img {
    width: 93px;
    height: 44px;
  }

  .donation-section {
    top: 46%;
  }

  .donate-btn-header {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 450;
    width: 216px;
    height: 44px;
    color: white;
    background-color: #FE5C45;
    font-size: 30px;
    border: none;
    cursor: pointer;
    font-family: 'DeviceTM', sans-serif;
  }

  /* PT button next to hamburger */
  .pt-btn {
    display: block;
    position: absolute;
    right: 90px;      
    top: 50%;
    transform: translateY(-50%);
    height: 44px;
    line-height: 44px;
    font-size: 30px;
    background: none;
    border: none;
    color: white;     
    cursor: pointer;
    z-index: 500;
    font-family: 'DeviceTM', sans-serif;
  }

  /* Hamburger right */
  .menu-toggle {
    display: block;
    position: absolute;
   right: 44px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: none;
    border: none;
    cursor: pointer;
  }
  .menu-toggle img {
    width: auto;
    height: 44px;
    display: block;
  }

  .menu-toggle.close img {
    filter: invert(1);  
    height: 32px;
  }

  /* Navigation menu (hidden initially) */
  nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    background-color: #191919;
    padding-left: 44px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 600;
  }

  /* Slide menu in when active */
  nav.show {
    transform: translateX(0);
  }

  /* Links inside menu */
  nav a {
    font-size: 30px;
    color: white;
    text-decoration: none;
    margin: 20px 0;
    display: block;
  }
  
  .donation-section {
    padding-left: 44px;   
}


  .mission-container,
  .faq-container,
  .partnerships-container,
  .footer-container {
    padding-left: 44px;
    padding-right: 44px;
  }

  .events-container {
    display: flex;
    flex-direction: column;
    padding-left: 44px;  
    padding-right: 44px;  
    box-sizing: border-box;
    width: 100%;
  }

  .events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px; 
  }

}



@media (max-width: 1024px) {

  .first-section {
    position: relative;
    width: 100%;
    height: auto;           
    display: block;
    padding: 0;
    margin: 0;
  }

  .section-content {
    position: relative;     
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9; 
    margin: 0 auto;
  }

  .section-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  /* Donation section moves below hero */
  .donation-section {
    position: relative;  
    top: 48% !important;
    left: auto;
    transform: none;     
    padding: 0;           
    margin-top: 0;       
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }

  .donation-wrapper {
    width: 100%;          
    margin: 0;
    padding: 0;           
    max-width: none;      
  }

  .donation-box {
    width: 100%;          
    padding-top: 20px;        
    padding-left: 44px;  
    padding-right: 44px;  
    box-sizing: border-box;
  }

  /* Stack donation buttons vertically */
  .donation-buttons {
    flex-direction: column;
  }
  
  .donation-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }

 .donation-buttons button {
    flex: 1; 
    background: none;
    border: 1px solid black; 
    border-top: none;         
    font-size: 30px;
    letter-spacing: 0.05em;
    cursor: pointer;
    font-family: 'DeviceTM', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .donation-buttons button {
    height: 65px !important; 
  }

  .donation-buttons button:first-child {
    border-top: 1px solid black; 
  }

 
  .custom-amount-container {
    flex-direction: row;      
    justify-content: space-between;
    align-items: center;
  }

  .custom-amount-container label,
  .custom-amount-container input {
    width: 48%;              
    font-size: 30px;
  }

  .custom-amount-container input {
    text-align: center;
  }

#paypal-button-container {
    width: 100%;
}

  .donation-section  {
    margin-top: 40px;
  }



  /* Mission section */
  .mission-section {
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .mission-container {
    flex-direction: column;
    gap: 20px; 
    padding-left: 44px;
    padding-right: 44px;
    width: 100%;
  }

  .mission-left,
  .mission-right {
    width: 100%; 
  }

  .mission-right img {
    height: auto; 
  }


    .events-grid {
    grid-template-columns: 1fr;
    gap: 20px; 
  }


.faq-section,
.events-section,
.partnerships-section {
    padding-top: 44px;
    padding-bottom: 44px;
}


    .faq-grid {
    grid-template-columns: 1fr; 
    gap: 20px; 
  }

  .faq-column {
    text-align: left; 
  }

  .faq-question,
  .faq-answer {
    text-align: left; /* ensure individual elements are left-aligned */
  }

  /* Ensure container padding is respected */
  .faq-container {
    padding-left: 44px;
    padding-right: 44px;
  }


    .partnerships-logos img {
    height: 60px; /* smaller logos */
    width: auto;  /* maintain aspect ratio */

  }

  .partnerships-logos {
        gap: 44px;
        padding-bottom: 55px;
  }

}




@media (max-width: 600px) {

  /* ---------- HEADER ---------- */
  header {
    padding: 20px;
    height: auto; /* adapt if needed */
  }

  .logo img {
  height: 33px;     
  width: auto;       
  max-width: 100%;   
  }

  .donate-btn-header {
    width: 93px;
    height: 33px;
    font-size: 24px;
  }

.menu-toggle,
.pt-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Burger icon aligned to right padding */
.menu-toggle {
    right: 20px; 
}

/* PT button to the left of burger icon */
.pt-btn {
    right: 60px; /* adjust spacing from burger icon */
    width: 33px;
    font-size: 24px;
}

  /* Full width menu */
nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 70%; /* <-- changed from 100% to 70% */
    background-color: #191919;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
    transform: translateX(100%); /* hidden by default */
    transition: transform 0.4s ease;
    z-index: 600;
}

/* Slide in menu when active */
nav.show {
    transform: translateX(0);
}

/* Menu links inside */
nav a {
    font-size: 24px; /* smaller for mobile */
    color: white;
    text-decoration: none;
    margin: 15px 0; /* lower gap */
}
  /* ---------- HERO / FIRST SECTION ---------- */

  .first-section {
    width: 100%;
    height: auto;      /* allow content to define height */
    display: block;    /* remove flex centering */
    padding: 0;
    margin: 0;
  }

  .section-content {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9; /* iframe defines height */
    margin: 0 auto;
    position: relative;    /* ensure it occupies space */
  }

  .section-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
 
  .donation-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ---------- DONATION BOX ---------- */
  .donation-box h2 {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .donation-box {
    padding: 20px 0;
  }

  .donation-buttons {
    flex-direction: column;
  }

  .donation-buttons button {
    font-size: 24px;
    padding: 10px;
    width: 100%;
  }

  .custom-amount-container {
    flex-direction: row;
  }

  .custom-amount-container input {
    font-size: 24px;
    text-align: right;
  }
      .custom-amount-container label, .custom-amount-container input {
        font-size: 24px;
    }

    .custom-amount-container label {
        text-align: left;

    }

  /* ---------- MISSION SECTION ---------- */
  .mission-section {
    padding: 20px;
    flex-direction: column;
  }

  .mission-title {
    font-size: 30px;
  }

  .mission-subtitle {
    font-size: 18px;
  }

  .mission-left,
  .mission-right {
    width: 100%;
  }

  /* ---------- EVENTS SECTION ---------- */
  .events-section {
    padding: 20px;
  }

  .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .events-title {
    font-size: 30px;
  }

  .tickets-btn {
    font-size: 24px;
    height: auto;
    width: auto;
    padding: 10px 20px;
  }

  .events-grid {
    grid-template-columns: 1fr; /* one per row */
    gap: 20px;
  }

  .events-header {
   align-items: center;
   margin-bottom: 20px;
  }

  .event-top {
    font-size: 18px;
  }

  .event-name {
    font-size: 24px;
  }

  .view-event-btn {
    font-size: 24px;
    height: auto;
    padding: 10px 0;
  }

  /* ---------- FAQ SECTION ---------- */

  .faq-section {
    padding: 20px;
  }

  .faq-container,
  .events-container,
  .mission-container {
    padding: 0;
  }

  .faq-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .faq-question {
    font-size: 18px;
  }

      .donation-section + .mission-section {
        margin-top: 20px;
      }


      .partnerships-title {
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'DeviceTM', sans-serif;
}

    .partnerships-logos {
        gap: 35px;
        padding-bottom: 35px;
    }

        .partnerships-logos img {
        height: 50px;
        width: auto;
    }

      .first-section {
    height: auto;   
  }

.section-content {
      width: 100%;
      aspect-ratio: 16 / 9; /* iframe controls height */
      max-width: 100%;
      margin: 0 auto;
  }

  .section-content iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
  }





 footer {
    background-color: #191919;
    padding: 20px 0;        /* vertical spacing */
  }

  .footer-container {
    display: flex;
    flex-direction: column; /* stack vertically */
    align-items: center;    /* center horizontally */
    gap: 10px;              /* vertical spacing between sections */
    text-align: center;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  /* Left section: LIBERATION STATION */
  .footer-left {
    order: 1;
    font-size: 14px;
    letter-spacing: 1px;
    color: white;
  }

  /* Middle links */
  .footer-middle {
    order: 2;
    display: flex;
    flex-direction: row;
    gap: 10px;         /* horizontal spacing */
    flex-wrap: wrap;   /* wrap links if needed */
    position: static;  /* override absolute positioning */
    transform: none;
  }

  .footer-middle a {
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
  }

  /* Right section: copyright */
  .footer-right {
    order: 3;
    font-size: 12px;
    letter-spacing: 1px;
    color: white;
  }
}

