@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.main {
    background-image: url("assets/images/mainbg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 95vh;
    position: relative;
}

.main .box {
    height: 95vh;
    width: 100%;
    opacity: 0.64;
    background-color: black;
    position: absolute;
    top: 0;
}

body {
    background-color: black;
}

nav {
    max-width: 80vw;
    justify-content: space-between;
    margin: auto;
    display: flex;
    align-items: center;
    height: 92px;
}

nav img {
    color: red;
    width: 144px;
    position: relative;
    z-index: 10;
}

nav button {
    position: relative;
    z-index: 10;
}

.maintext {
    font-family: "Martel Sans", sans-serif;
    height: calc(100% - 62px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    position: relative;
    padding: 0 23px;
    gap: 20px;
}

.maintext> :nth-child(1) {
    font-weight: 750;
    font-size: 56px;
    text-align: center;
}

.maintext> :nth-child(2) {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

.maintext> :nth-child(3) {
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    padding-top: 20px;
}

.separation {
    position: absolute;

    left: 0;
    width: 100%;
    height: 40px;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.separation svg {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    transform: rotate(180deg);
}

.separation::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(0, 38, 255, 0.5) 0%, rgba(0, 153, 255, 0) 70%);
    filter: blur(30px);
    z-index: 0;
    pointer-events: none;
}

.btn {
    padding: 4px 12px;
    font-weight: bold;
    background-color: white;
}

.btn-red {
    background-color: red;
    color: white;
    padding: 11px 20px;
    font-size: 22px;
    border-radius: 6px;
    font-weight: 500;
}

.main .enter-email {
    padding: 15px 60px;
    font-size: 17px;
    color: white;
    border-radius: 6px;
    background-color: rgba(23, 23, 23, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-red-sm {
    background-color: red;
    color: white;
    border-radius: 6px;
    padding: 7px 15px;
}


.slider-section {
    padding: 60px 0;
    color: white;
    text-align: center;
}

.slider-section h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 550;
  padding-top: 20px;
  padding-right: 1010px;
}

@media (max-width: 1011px) {
  .slider-section h2 {
    padding-right: 20px;
    padding-left: 20px;
    text-align: left;
  }
}

.carousel-wrapper {
    position: relative;
    max-width: 75vw;
    margin: auto;
    overflow: hidden;
}

.slider {
    display: flex;
    gap: 50px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 auto;
    width: 180px;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.slide:hover {
    transform: scale(1.1);
    z-index: 2;
}

.slide img {
    width: 100%;
    border-radius: 5px;
    display: block;
}

.rank {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    -webkit-text-stroke: 1px black;
    z-index: 1;
}

.highlights-section {
    padding: 10px 20px;
    color: white;
    text-align: center;
    max-width: 1400px;
    margin: auto;
}

.highlights-section h2 {
  margin-bottom: 10px;
  margin-right: 927px;
  padding-right: 20px;
  font-weight: 540;
  font-size: 23px;
}

@media (max-width: 1011px) {
  .highlights-section h2 {
    margin-right: 0;
    padding: 0 20px;
    text-align: left;
  }
}

.highlights-grid {
    display: grid;
    padding-left: 100px;
    padding-right: 100px;
    grid-template-columns: repeat(auto-fit, minmax(277px, 1fr));
    gap: 30px;
}

.grid-card {
    background: linear-gradient(135deg, #2c1f4a, #0f051d);
    border-radius: 20px;
    padding: 30px 20px;
    min-height: 220px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.1);
}

.grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.2);
}

.grid-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.grid-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #d0d0d0;

}

.grid-card img {
    width: 50px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.5));
}

.faq {
    background-color: black;
    color: white;
    padding: 70px;
}

.faq h2 {
    margin-left: 86px;
    font-size: 22px;
}

.faqbox {
    transition: all 0.2s ease-out;
    display: flex;
    font-size: 22px;
    background-color: rgb(45 45 45);
    padding: 20px;
    margin: 12px auto;
    max-width: 76vw;
    justify-content: space-between;
    cursor: pointer;
}

.faqbox:hover {
    background-color: rgb(65, 64, 64);
}

.faqbox span:nth-child(1) {
    padding-top: 5px;
}

.faqbox span:nth-child(2) {
    padding: 0px 0px;
    font-weight: 200;
    font-size: 30px;
}

.repeated-section .enter-email {
     padding: 15px 70px;
    font-size: 17px;
    color: white;
    border-radius: 6px;
    background-color: rgba(23, 23, 23, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.repeated-section {
    font-family: "Martel Sans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
    max-width: 800px;
    margin: 10px auto;
    box-sizing: border-box;
}

.repeated-section span {
    padding-left: 20px;
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    padding-top: 20px;
}

footer {
    color: white;
    max-width: 79vw;
    margin: auto;
    padding: 14px;
    text-decoration: underline;
}

.footer a {
    font-size: 14px;
    color: white;
}

footer .questions {
    padding: 30px 0;
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    color: white;
}

.footer-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}



@media (max-width: 768px) {
  nav {
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 0;
  }

  .main {
    height: auto;
    background-size: cover;
    padding-bottom: 60px;
  }

  .main .box {
    height: 100%;
  }

  .maintext {
    padding: 20px;
    gap: 16px;
  }

  .maintext > :nth-child(1) {
    font-size: 36px;
  }

  .maintext > :nth-child(2) {
    font-size: 18px;
  }

  .maintext > :nth-child(3) {
    font-size: 14px;
    padding-top: 10px;
  }

  .separation {
    position: relative;
    height: 30px;
  }

  .separation::after {
    width: 90vw;
    height: 60px;
    bottom: -30px;
  }

  .slider-section h2 {
    font-size: 1.2rem;
    padding-right: 0;
    text-align: left;
    padding-left: 20px;
  }

  .carousel-wrapper {
    max-width: 95vw;
  }

  .highlights-section h2 {
    margin-right: 0;
    padding-right: 0;
    padding-left: 20px;
    text-align: left;
  }

  .highlights-grid {
    padding: 0 20px;
    grid-template-columns: 1fr;
  }

  .faq {
    padding: 40px 20px;
  }

  .faq h2 {
    margin-left: 0;
  }

  .faqbox {
    flex-direction: column;
    font-size: 18px;
    padding: 15px;
  }

  .faqbox span:nth-child(2) {
    font-size: 24px;
    align-self: flex-end;
  }

  footer {
    max-width: 90vw;
    padding: 20px;
    text-decoration: underline;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}