* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: linear-gradient(to top right, rgb(12, 12, 17),rgb(6, 6, 8));
    font-family: "Rubik", sans-serif;
    color: azure;
    overflow-x: hidden;
}

.NavbarHeader {
    width: 100%;
    height: 80px;
    background-color: rgb(6, 6, 8);
    position: sticky;
    top: 0;
    z-index: 100;
}

.Navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.NavbarHead {
    font-size: 25px;
    text-decoration: none;
    color: azure;
    margin-top: 10px;
}

.NavbarLink {
    list-style: none;
    display: flex;
    gap: 45px;
    margin-top: 10px;
}

.NavbarLinks {
    text-decoration: none;
    font-size: 20px;
    font-weight: 200;
    color: azure;
    transition: color 0.7s ease;
}

.NavbarLinks:hover {
    color: rgb(15, 167, 167);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: azure;
    transition: all 0.3s ease;
}


footer {
    background-color: rgb(6, 6, 8);
    padding: 20px 10px;
    color: azure;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 40px;
}
.ContactInfo p {
    margin-bottom: 15px;
    font-weight: 200;
    color: rgb(186, 187, 187);
}
.ContactInfo a{
    text-decoration: none;
    font-family: Rubik;
    color: azure;
    display: block;
    margin-bottom: 15px;
    width: fit-content;
    font-weight: 200;
    color: rgb(186, 187, 187);
    transition: color 0.7s ease;
}
.footermaptext {
    height: 120px;
    margin-bottom: 15px;
}

.ContactInfo, .MapInfo {
    flex: 1 1 300px;
}

.ContactInfoText, .footermaptexthead {
    color: azure;
    margin-bottom: 15px;
}
.footermaptextlast {
    font-weight: 200;
    color: rgb(186, 187, 187);
}

.MapInfo iframe {
    width: 100%;
    max-width: 550px;
    height: 240px;
    border: 0;
}

.copyright {
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    font-size: 14px;
}
.stick {
    height: 1px;
    margin-bottom: 20px;
    background-color: rgb(15, 167, 167);
}
.ContactInfo a:hover {
    color: rgb(15, 167, 167);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(6, 6, 8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease;
}

#preloader div {
  width: 50px;
  height: 50px;
  border: 5px solid #fff;
  border-top: 5px solid rgb(132, 255, 255);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.Main-Text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px);
    background-image: url('210917205940-un-general-assembly-file.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.Main-Text h1 {
    font-size: 80px;
    font-weight: 500;
    margin: 15px 0;
    line-height: 0.9;
}

.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}
.card {
    display: flex;
    align-items: center;
    background-color: rgb(6, 6, 8);
    max-width: 100%;
    height: 550px;
    margin: 50px 50px;
    border-radius: 10px;
}
.card-content-1 {
    max-width: 60%;
    margin-left: 20px;
    margin-right: 20px;
}
.card-content-1 h2 {
    font-family: Alan Sans;
    margin-bottom: 8px;
    font-size: 28px;
    color: azure;

}
.card-content-1 p {
    font-family: Rubik;
    font-size: 19px;
    color: rgb(186, 187, 187);
}
.card-image {
    background-color: rgb(35, 29, 44);
    height: 100%;
    width: 40%;
    background-size: cover;
    background-position: center center;
    border-radius: 8px 0px 0px 8px;
}
.card-image video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Timer {
    font-family: Rubik;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: azure;
    margin-top: 75px;
}
.faq-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: azure;
  font-family: Alan Sans;
  font-size: 35px;
  font-weight: 400;

}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-question {
  width: 100%;
  text-align: left;
  background-color: rgb(12, 12, 17);
  border: 1px solid rgb(138, 138, 138);
  color: azure;
  padding: 15px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.7s ease;
  font-family: "Rubik", sans-serif;
}

.faq-question:hover {
  border-color: rgb(15, 167, 167);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.7s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 15px 0;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Rubik", sans-serif;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 15px 15px;
}

/* Mobil uyum */
@media (max-width: 600px) {
  .faq-title {
    font-size: 24px;
  }

  .faq-question {
    font-size: 16px;
    padding: 12px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}

.Timername {
    font-weight: 400;
    text-align: center;
    font-size: 35px;
    font-family: Alan Sans;

}
.timebox {
    display: flex;
    margin: 35px 50px;
}
.time {
    text-align: center;
    margin: 0 50px;
}
.time h2 {
    font-size: 40px;
    font-weight: 350;
    color: rgb(138, 138, 138);
    margin-bottom: 15px;
}
.ApplyButton {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 70px;
}
.ApplyButton a {
    text-decoration: none;
    font-family: Rubik;
    color: azure;
    font-size: 25px;
    border: 1px solid azure;
    padding: 10px 20px;
    border-radius: 24px;
    transition: all 0.7s ease;
    font-weight: 500;
}
.ApplyButton a:hover {
    background-color:rgb(15, 167, 167);
    border: 1px solid rgb(132, 255, 255);
    transform: scale(1.03);
    box-shadow: 0 0 10px 2px rgb(31, 134, 134);
}




@media screen and (max-width: 800px) {
    .timebox {
        flex-direction: column;
    }
    .time {
        margin-bottom: 50px;
    }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media screen and (max-width: 800px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .MapInfo {
        margin-left: 0;
    }
    .MapInfo iframe {
        height: 200px;
    }
    .stick {
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .ContactInfo {
        display: flex;
        flex-direction: column;
        align-items: center; 
        text-align: center;  
        gap: 10px;   
    }

    .ContactInfo .footerlink,
    .ContactInfo p {
        display: block;
        margin: 5px 0; 
        width: auto;
    }
    .container {
        margin-top: 100px;
    }
    .card {
        display: block;
        max-width: 100%;
        height: 600px;
        margin: 0;
        border-radius: 0;
    }
    .card-content-1 h2 {
        margin-top: 20px;
    }
    .card-content-1 p {
        font-size: 16px;
    }
    .card-image {
        width: 100%;
        height: 0;
    }
    .card-content-1 {
        display: block;
        justify-content: center;
        text-align: center;
        max-width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .NavbarLink {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgb(12, 12, 17);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease-in-out;
    }
    .NavbarHead {
        font-size: 20px;
        margin-top: 10px;
    }
    .NavbarLink.active {
        left: 0;
    }
    .hamburger {
        display: flex;
    }
    .NavbarLink li {
        display: block;
    }
}