body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background-color: #f4f4f4;
  padding-bottom: 80px;
}


/* Top navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*background-color: #1f2937;*/
  padding: 12px 24px;
  color: white;
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
  flex-wrap: wrap;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar-left img {
  height: 40px;
  margin-right: 15px;
  border-radius: 8px;
}

.navbar-left a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 1.2rem;
}

.navbar-left a:hover {
  color: #CE1126;
}

.navbar-right {
  display: flex;
  align-items: center;
}

.navbar-right a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 1.2rem;
}

.navbar-right a:hover {
  color: #CE1126;
}


/* Bottom Tab Bar - Full Width Grid Layout */
.bottom-tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
  backdrop-filter: blur(10px); /* Blur effect */
  -webkit-backdrop-filter: blur(10px); /* For Safari support */
  border-top: 1px solid #ddd;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-tab-bar a {
  text-decoration: none;
  color: #555;
  text-align: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.bottom-tab-bar a i {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.bottom-tab-bar a.active,
.bottom-tab-bar a:hover {
  color: #CE1126;
}

.bottom-tab-bar a.active::after {
  content: "";
  display: block;
  margin: 4px auto 0;
  width: 50%; /* or adjust for desired length */
  height: 3px;
  border-radius: 10px;
  background-color: #CE1126; /* or use the exact hex from your image */
}


.bottom-tab-bar i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

/* Tab text styling */
.tab-label {
  display: block;
  font-size: 0.85rem;
}

/* Hide text labels on tablet & smaller */
@media (max-width: 768px) {
  .tab-label {
    display: none;
  }

  .bottom-tab-bar a {
    padding: 10px 0;
  }

  .bottom-tab-bar i {
    font-size: 1.8rem;
    margin: 0;
  }
}


/* Hero Section */
.hero-section {
  text-align: center;
  padding: 20px;
  background: url('your-background-image.jpg') no-repeat center center/cover;
  backdrop-filter: blur(4px);
  color: #fff;
}

.hero-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.email-download {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.email-download input {
  padding: 15px;
  font-size: 1rem;
  width: 80%;
  max-width: 300px;
  border: none;
  border-radius: 5px;
}

.email-download button {
  background-color: #d61f27;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.email-download button:hover {
  background-color: #bb1a21;
}

.hero-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* Content Sections */
.content-sections {
  margin-top: 20px;
}

.content-section {
  display: none;
  padding: 20px;
  text-align: center;
}

.content-section.active {
  display: block;
}

.bottom-tab-bar .tab {
  cursor: pointer;
}

.bottom-tab-bar .tab.active {
  color: #CE1126;
}

.description{
  color: white;
}

/* Alerts Section */
#alerts-section .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

#alerts-section .description {
  flex: 1 1 100%;
  font-size: 1.2rem;
  text-align: justify;
}

#alerts-section .image-and-button {
  flex: 1 1 100%;
  text-align: center;
}

#alerts-section .image-and-button img {
  width: 80%;
  height: auto;
  max-width: 400px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

/* Settings Section */
#settings-section .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

#settings-section .coming-soon-video,
#settings-section .coming-soon-text {
  flex: 1 1 100%;
}


#settings-section .coming-soon-text {
  font-size: 1.1rem;
}

#settings-section .explore-btn {
  margin-top: 10px;
}

.coming-soon-text{
  color: white;
  text-align: justify;
}



/* ---------- Responsive Breakpoints ---------- */

@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-section h2 {
    font-size: 2rem;
  }

  #alerts-section .description,
  #alerts-section .image-and-button,
  #settings-section .coming-soon-video,
  #settings-section .coming-soon-text {
    flex: 1;
  }

  #alerts-section .content {
    flex-wrap: nowrap;
  }

  #settings-section .content {
    flex-wrap: nowrap;
  }
}

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .navbar-left,
  .navbar-right {
    flex-direction: column;
    gap: 10px;
  }

  .bottom-tab-bar {
    flex-direction: column;
    padding: 8px 0;
  }

  .bottom-tab-bar a {
    font-size: 0.85rem;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 0.95rem;
  }
}

#vanta-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


/* From Uiverse.io by NorthFishHasNa */ 
.dlbtn {
  display: inline-block;
  border-radius: 4px;
  background-color: #3d405b;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 17px;
  padding: 16px;
  width: 130px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
 }
 
 .dlbtn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
 }
 
 .dltbn span:after {
  content: '»';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.5s;
 }
 
 .dlbtn:hover span {
  padding-right: 15px;
 }
 
 .dlbtn:hover span:after {
  opacity: 1;
  right: 0;
 }


.downloadbtn {
  padding: 0.5em 1em;
  background-color: #CE1126;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-family: system-ui, sans-serif;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
  width: 50vh;
}

/* Hover effect */
.downloadbtn:hover {
  background-color: #bb1a21;
}

/* Disabled button */
.downloadbtn:disabled {
  background-color: #d3d3d3;
  color: #a1a1a1;
  cursor: not-allowed;
}


.downloadbtn:disabled:hover {
  background-color: #d3d3d3; 
}


.explore-btn {
  padding: 0.5em 1em;
  background-color: #CE1126; /* Bootstrap primary blue */
  color: white;
  border: none;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-family: system-ui, sans-serif;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
  border-radius: 10px;
  width: 30vh;
}

.explore-btn:hover {
  background-color: #bb1a21; /* Darker on hover */
}


.vanta-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Adjust overlay darkness here */
  z-index: -1; /* Sits above #vanta-bg (-1), below all content (1+) */
  pointer-events: none;
}


/** */

/* Right-aligned Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Navbar container layout */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  color: white;
  flex-wrap: wrap;
}

/* Hidden nav links by default on mobile */
.navbar-links {
  display: flex;
  gap: 12px;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.navbar-links a:hover {
  color: #CE1126;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .navbar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: none;
    text-align: center;
    padding: 10px 0;
  }

  .navbar-links.show {
    display: flex;
  }

  .navbar-links a {
    margin: 10px 0;
  }
}

