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

body {
  background-color: rgba(235, 128, 1, 1);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
}

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: url('../assets/images/bg-nav.png') center/cover no-repeat;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0.75rem 1rem;
    position: relative;
}

.logo img {
    height: 40px;
}

.main-nav {
    display: flex;
    justify-content: center; 
    flex: 1; 
    gap: 6.5rem;
    padding: 10px 40px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    font-size: clamp(16px,1.5vw,25px);

}

.main-nav a:hover,
.main-nav a.active {
    color: #ff4500;
}

.main-nav a.live {
    color: #e91e63;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    z-index: 1000;
    flex-direction: column;
}

.dropdown-menu a {
    padding: 10px 15px;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #f58220;
}

.dropdown-menu.show {
    display: flex;
    flex-direction: column;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 769px){
.nav-toggle {
display: none;
}
}
.user-icon img {
    height: 32px;
}

@media (max-width: 768px) {
.nav-toggle {
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}
  .main-nav { display: none; flex-direction: column; background: black; position: absolute; top: 100%; left: 0; right: 0; gap: 10px; }


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

    .main-nav a {
        padding: 10px 20px;
        border-bottom: 1px solid #484848;
        text-decoration: none;
        color: white;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        cursor: pointer;
        color: white;
    }

    .dropdown-menu {
        display: none;
        flex-direction: column;
        padding-left: 15px;
        background-color: #444;
    }

    .dropdown-menu a {
        color: white;
    }

    .dropdown-menu.show {
        display: flex;
    }
    
}
/* == BODY ==*/
.sponsor-container {
    position: relative;
    background: url('../assets/images/bg-sponsor.jpg') center/cover no-repeat;
    min-height: 40vw;
    margin-top: 65px;
    padding: 60px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: white;
    overflow: hidden;
}

.sponsor-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.68);
    z-index: 0;
}

.sponsor-container > * {
    position: relative;
    z-index: 1;
}

.partners-title {
    font-size: clamp(50px,4.5vw,80px);
    font-weight: bold;
    color: #f58220;
    margin: 0 0 14px;
    text-align: center;
}

.title-separator {
    width: 70%;
    height: 1.5px;
    background: #f58220;
    border-radius: 2px;
    margin-bottom: 30px;
}

.partners-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.partners-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px,4vw,80px);
    margin-top: 80px;
}

.partners-line img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partners-line img:hover {
    transform: scale(1.1);
}

.line-4 img {
    flex: 0 0 calc(100% / 3.8 - 40px);
}

.line-5 img {
    flex: 0 0 calc(100% / 3 - 40px);
}

@media (max-width: 768px) {
    .partners-line {
        flex-wrap: wrap;
        gap: 20px;
    }

    .line-4 img,
    .line-5 img {
        flex: 0 0 calc(50% - 20px);
        max-width: 70px;
    }
}



/* === FOOTER === */
.contact-footer {
  background: 
    url('../assets/images/footer-bg.png') bottom center no-repeat,
    linear-gradient(to bottom, #000000 0%, #000000 95%, rgba(235, 128, 1, 1) 100%);
  background-size: 100% 90%, cover; 
  background-blend-mode: normal;    
  padding: 4rem 2rem 1.2rem;
  color: white;
  text-align: center;
}

.footer-content {
  margin: 0 auto;
}

.contact-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: start;
}

.contact-text span {
  color: #FF4C15;
}

.footer-links {

  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
  gap: 100px;
  flex-wrap: wrap;
}

.get-in-touch, .social-media {
  flex: 1;
  margin: 10px;

}

.get-in-touch h3, .social-media h3 {
  font-size: clamp(15px,1.8vw,21px);
  margin-bottom: 1rem;
  font-weight: 300;
  text-align: start;
}

.footer-links p {
  font-size: 1rem;
  color: #000000;
  text-align: start;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons img {
  margin-right: 1rem;
  width: clamp(30px, 3vw, 45px);
  color: #FF4C15;
  text-decoration: none;
}

.social-icon:hover {
  text-decoration: underline;
}

.title-footer {
  flex: 1.5;
  display: flex;
  align-items: center;
}

.title-footer h2 {
  color: black;
  font-size: clamp(40px, 4vw, 50px);
  font-weight: 400;
}

/* === RESPONSIVE === */

@media (max-width: 768px) {
  .contact-footer {
    background-size: 100% auto; 
  }

  .footer-links {
    flex-direction: column;
    gap: 60px;
    margin-top: 4rem;
  }

  .contact-text h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .get-in-touch, .social-media {
    margin: 20px 0;
  }

  .social-icons {
    margin-top: 1rem;
  }
.title-footer{
        display: flex
;
        justify-content: center;
}
  .title-footer h2 {
    font-size: 40px;
    color: white;
  }
    .footer-links p {
    font-size: 0.9rem;
    color: white;
  }
  
}

@media (max-width: 340px) {
  .contact-footer {
    background-size: 100% 100%; 
  }

  .contact-footer {
    padding: 3rem 1.5rem;
  }

  .footer-links {
    margin-top: 2rem;
  }

  .footer-content {
    padding: 0 10px;
  }

  .contact-text h2 {
    font-size: 2rem;
  }

  .footer-links p {
    font-size: 0.9rem;
    color: white;
  }
}
.title-footer {
  flex: 1.5;
  display: flex;
  align-items: center;
}

.title-footer h2 {
  color: black;
  font-size: clamp(40px, 4vw, 50px);
  font-weight: 400;
}

.footer-title {
  color: black;
  font-size: clamp(35px, 3vw, 48px);
}

.contact-social {
  text-align: left;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin-bottom: 10px;
}

.social-icons img {
  width: clamp(29px, 3vw, 45px);
  height: clamp(29px, 3vw, 45px);
  cursor: pointer;
}

@media (max-width: 768px) {
  .footer-title {
    color: #fff;
  }

  .title-footer {
    display: flex;
    justify-content: center;
  }

  .title-footer h2 {
    font-size: 40px;
    color: white;
  }
}
