* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffd671;
}

.site-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background-color: black;
    filter: contrast(1.1) brightness(0.9);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 2;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin-right: 16px;
}

.org-name {
    font-size: 3rem;
    color: #ffda75;
    font-weight: bold;
    font-family: 'Geneva';
    margin-right: 32px;
    animation: colorShift 5s ease-in-out infinite;
}

/* Keyframes for color shift */
@keyframes colorShift {
    0% { color: #ffda75; }
    50% { color: #b37532; }
    100% { color: #ffda75; }
}

@keyframes colorShiftDownload {
    0% { color:  #b37532; }
    50% { color: #3b1e12; }
    100% { color: #b37532; }
}

@keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

.nav-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-btn {
    padding: 10px 20px;
    background-color: black;
    color: #ffda75;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
    background-color: #ffda75;
    color: black;
    box-shadow: 0 0 15px 4px rgba(255, 223, 0, 0.8);
}

.full-height {
    min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.section {
    position: relative;
    background-color: #ffd671;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: block;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    scroll-margin-top: 70px;
    overflow: hidden;
}

.section-emblem {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.emblem {
    width: 100%;
    height: auto;
    max-width: 1000px;
}

.slogan {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(270deg, #b37532, #3b1e12, black, #b37532);
    background-size: 600% 600%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
}

.main-info {
    color: #3b1e12;
    font-size: 2rem;
    font-weight: bold;
}

.whats-new-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    font-weight: bold;
}

.whats-new-text {
    flex: 2;
    min-width: 300px;
}

.whats-new-image,
.logs-image {
    flex: 1;
    min-width: 200px;
    width: 100%;
    max-width: none;
    display: flex;
    justify-content: center;
    margin-right: 0;
}

.whats-new-image img,
.logs-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

#whats-new h2 {
    font-size: 2.5rem;
    color: black;
    margin-top: 20px;
    font-weight: bold;
}

.whats-new-list, .under-consrtuction-list {
    list-style: none;
    padding-left: 20px;
    font-size: 1.5rem;
    color: black;
    font-weight: bold;
    margin-top: 20px;
}

.whats-new-list li, .under-consrtuction-list li {
    margin-bottom: 10px;
}

.download-now {
    color: #ffda75;
    font-weight: bolder;
    font-size: 2.75rem;
    animation: colorShiftDownload 5s ease-in-out infinite;
}

.fastapi-integration:hover {
    color: black;
    font-weight: bold;
    animation: colorShiftDownload 5s ease-in-out infinite;
}

.whats-new-redesign {
  background-color: black;
  color: white;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;       /* Vertical centering */
  justify-content: center;   /* Horizontal centering */
  padding: 40px 20px;
  box-sizing: border-box;
}

.whats-new-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1400px;
  width: 100%;
  flex-wrap: wrap;
  text-align: center;
}

.whats-new-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
}

.slogan-centered {
  font-size: 4rem;
  font-weight: bold;
  background: linear-gradient(270deg, #ffda75, #b37532, #3b1e12);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

.whats-new-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.concept-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  transform: none;
}

.logs-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.logs-text {
    flex: 2;
    min-width: 300px;
}

.logs-list {
    list-style: none;
    padding-left: 20px;
    font-size: 1.5rem;
    color: black;

    max-height: 75vh;
    overflow-y: auto;
    padding-right: 10px;
}

#logs h2 {
    font-size: 2.5rem;
    color: black;
    margin-top: 20px;
}

p {
    font-size: 1.75rem;
    color: black;
    margin-bottom: 20px;
    margin-top: 10px;
    margin-left: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

label {
    font-size: 1rem;
    color: #333;
}

input, textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}

ul {
    font-size: 1.25rem;
    padding-left: 20px;
}

a {
    color: black;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: #ffda75;
    font-weight: bolder;
    animation: colorShiftDownload 5s ease-in-out infinite;
}

.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;  /* Ensure no wrapping of buttons */
    width: 100%;
  }
  
  /* Media query for small screens (max-width 768px) */
  @media (max-width: 768px) {
    .social-buttons {
        position: relative;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .social-button img {
        width: 30px;
        height: 30px;
    }
}
  

.navigation-dots {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 30px;
    height: 50px;
    align-items: center;
    justify-content: center;
    z-index: 5;
    /* backdrop-filter: blur(10px); */
    /* -webkit-backdrop-filter: blur(10px); */
    border-radius: 15px;
    opacity: 0;
}

.navigation-dots .dot {
    position: relative;
    width: 17px;
    height: 17px;
    background-color: #ffda75;
    border-radius: 50%;
    display: block;
    transition: background-color 0.3s, box-shadow 0.3s;
    opacity: 0.8;
    cursor: pointer;
}

.navigation-dots .dot:hover {
    background-color: #b37532;
    box-shadow: 0 0 15px 4px rgba(179, 117, 50, 0.8);
    opacity: 1;
}

.navigation-dots .tooltip {
    position: absolute;
    right: 120%;
    top: 50%;
    transform: translateY(-50%);
    background-color: black;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    font-size: 0.85rem;
}

.navigation-dots .dot:hover .tooltip {
    opacity: 1;
}

.contact-header {
    font-size: 2.5rem;
    color: #3b1e12;
    font-weight: bold;
}

.contact-footer {
    padding: 20px 40px;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-left img {
    vertical-align: middle;
}

.footer-center {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    text-align: right;
    font-size: 13px;
    color: #333;
}

.google-play-badge {
    height: auto;
}

.secret {
    color: black;
    font-weight: normal;
    text-decoration: none;
}

.secret:hover {
    color: black;
    font-weight: normal;
    cursor: text;
}


.vision-section {
  background-color: black;
  color: white;
  width: 100%;
  min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.vision-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1400px;
  width: 100%;
  flex-wrap: wrap;
  text-align: left;
}

.vision-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.vision-poster {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(255, 255, 255, 0.2);
}

.vision-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 300px;
}

.vision-slogan {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(270deg, #ffda75, #b37532, #3b1e12);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

.vision-paragraph {
  font-size: 1.4rem;
  margin-bottom: 20px;
  /* color: #ffda75; */
  line-height: 1.6;
  background: linear-gradient(270deg, #ffda75, #b37532, #3b1e12);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

.google-play-container {
  width: 100%;
  display: flex;
  justify-content: center;  /* Aligns the button to the right */
  margin-top: 20px;
}

.google-play-btn {
  width: 220px;
  height: auto;
  margin-top: 10px;
  margin-left: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.google-play-btn:hover {
  transform: scale(1.05);
}

.contact-section {
  background-color: black;
  padding: 40px 20px;
  color: #ffda75;
  font-weight: bold;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  text-align: center;
}

.contact-left,
.contact-center,
.contact-right {
  flex: 1;
  min-width: 250px;
}

.contact-left a {
  color: #ffda75;
  font-weight: bold;
  text-decoration: none;
}

.contact-right p {
  color: #ffda75;
  font-weight: bold;
  text-decoration: none;
}

.contact-left a:hover {
  color: #ffda75;
}

.contact-center p {
color: #ffda75;
  font-weight: bold;
  text-decoration: none;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  transition: transform 0.2s ease;
  cursor: pointer;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.whats-new-left,
.whats-new-right,
.vision-left,
.vision-right {
  flex: 1;
  min-width: 300px;
  max-width: 100%;
}

.whats-new-wrapper,
.vision-wrapper {
  max-width: 1800px;
  width: 100%;
}

@media (max-width: 768px) {
    .full-height,
    .vision-section,
    .whats-new-redesign {
        height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .org-name {
    font-size: 2rem;
  }

  .nav-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .nav-btn {
    min-width: 80px;
    margin: 5px 0;
  }

  .concept-image,
  .vision-poster {
    max-width: 100%;
    transform: none;
  }

  .slogan,
  .vision-slogan {
    font-size: 1.8rem;
    text-align: center;
  }

  .main-info,
  p,
  .download-now {
    font-size: 1.2rem;
  }

  .whats-new-wrapper,
  .vision-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .whats-new-left,
.whats-new-right,
.vision-left,
.vision-right {
  flex: 1 1 50%;
}
}

@media (min-width: 1400px) {
  .whats-new-wrapper,
  .vision-wrapper {
    gap: 100px;
  }

  .slogan-centered,
  .vision-slogan {
    font-size: 2.5rem;
  }

  .concept-image,
  .vision-poster {
    max-width: 1500px;
  }

  .main-info,
  .vision-paragraph {
    font-size: 2rem;
  }
}