#navbar {
    position:sticky;
    top:0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #940810;
    padding: 10px 0;
    z-index: 1000;
    font-family: 'Orbitron', sans-serif;
    
}
#navbar a {
    text-decoration: none;
}
#navbar button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-family: 'Orbitron', sans-serif;
    padding: 10px 20px;
}
#navbar button:hover {
    background: #c79406;
    color: white;
}

/* ============================= */
/*  NEW PROJECT / INTERACTIVE PAGE */
/* ============================= */

/* General Section Styling */
section {
  width: 100%;
  padding: 80px 20px;
  box-sizing: border-box;
  text-align: center;
}

/* ========= NEW PROJECT HEADER ========= */
#new-project h2,
#calculator h2,
#technical h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 38px;
  color: #7b0323; /* Bordeaux accent */
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

/* ========= Project Description ========= */
#new-project p,
#technical p {
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 40px auto;
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 0.5s;
}

/* ========= Buttons ========= */
#learn-more,
#calculate,
.reserve-btn {
  font-family: 'Orbitron', sans-serif;
  background: #7b0323;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

#learn-more:hover,
#calculate:hover,
.reserve-btn:hover {
  background: #a10633;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ========= Technical Details Cards ========= */
#technical {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tech-card {
  background: #f5f5f5;
  width: 220px;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Exo', sans-serif;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.tech-card h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #7b0323;
}

.tech-card p {
  font-size: 16px;
  color: #333;
}

/* ========= Calculator ========= */
#calculator {
  background: #ffffff;
  padding: 60px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 60px auto;
}

.calc-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
  font-family: "Orbitron", sans-serif;
}

.calc-inputs label {
  display: flex;
  flex-direction: column;
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  color: #333;
}

.calc-inputs input {
  padding: 10px;
  border-radius: 8px;
  border: 2px solid #7b0323;
  font-size: 16px;
  margin-top: 5px;
  width: 150px;
}

/* ========= Price Display ========= */
#price {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  color: #7b0323;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s ease;
}

/* ========= Calendar / Date Picker ========= */
#launch-date {
  padding: 10px 15px;
  border-radius: 8px;
  border: 2px solid #7b0323;
  font-size: 16px;
  margin-top: 10px;
  font-family: 'Exo', sans-serif;

}

/* ========= Animation Keyframes ========= */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ========= Responsive ========= */
@media screen and (max-width: 768px) {
  #technical {
    flex-direction: column;
    align-items: center;
  }
  .tech-card {
    width: 80%;
  }
  .calc-inputs {
    flex-direction: column;
    align-items: center;
  }
  .calc-inputs input {
    width: 100%;
  }
}


#hamburger-menu {
    display: none;
    cursor: pointer;
}

#mobile-navbar {
    display: none;
    
}

#mobile-navbar a button {
    margin: 10px 0;
    width: 100%;
    padding: 15px;
    font-size: 18px;
}


.footer-icons {
  margin-bottom: 10px;
}

.footer-icons a {
  color:#c79406 ;
  margin: 0 10px;
}

.footer-icons a:hover {
    opacity: 0.7;
}



footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #940810;  /* Dark red */
    color: white;
    padding: 20px;
    text-align: center;
}

#slogan {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Orbitron";
}

#privacy-policy {
    color: #FFD700; /* Gold for better contrast */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Exo', sans-serif;
}

#privacy-policy:hover {
    font-family: 'Exo', sans-serif;
    color: #ffffff; /* White on hover */
}

#CopyRight {
    font-size: 14px;
    margin-bottom: 10px;
    font-family: "Exo", sans-serif;
}

h3{
  font-family: 'Exo', sans-serif;
}
p{
  font-family: 'Exo', sans-serif;
}