* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f4f4;
  color: #333;
  transition: 0.3s;
}

.logo {
  font-size: 25px;
  font-weight: 700;
  display: flex;
}

.logo p{
  padding: 8px 0px;
}

.logo-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid rgba(50,50,50,0.2);
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
   background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

}

.dark-mode .navbar {
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

section:first-of-type {
  margin-top: 80px;
}

.nav-links {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links li {
  margin: 10px 10px;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
}

.search-bar {
  display: flex;
  align-items: center;
  border-radius: 20px;
  margin-left: 20px;
}

.search-bar input {
  border: 1px solid #000;
  border-radius: 10px;
  padding: 8px 12px;
  outline: none;
  width: 250px;
}

/* DARK MODE SUPPORT */
.dark-mode .search-bar input {
  background: transparent;
  color: white;
  border-radius: 10px;
  width: 250px;
  border: 1px solid #fff;
}

.dark-mode .nav-links a {
  color: #fff;
}

#themeToggle {
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  background: #111111;
  color: #ffffff;
  border-radius: 8px;
  transition: 0.3s ease;
  border-radius: 50%;
  font-size: 24px;
}

#themeToggle .material-symbols-outlined {
  font-size: 28px;
}

body.dark-mode #themeToggle {
  background: #ffffff;
  color: #111111;
}



/*Landing*/
.landing{
  
}

.landing-h1{
  font-size: 70px;
  font-weight: bold;
  
}

.landing-h2{
  font-size: 20px;
  font-weight: ;
  color: rgba(50, 50, 50, 0.8);
}

.dark-mode .landing-h2{
  font-size: 20px;
  font-weight: ;
  color: rgba(150, 150, 150, 0.8);
}

.landing h1{
  margin-top: 50px;
}

#typing-word::after {
  content: "|";
  margin-left: 5px;
  animation: blink 1s infinite;
  color: red;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background: #e5e7eb;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.tab-btn.active {
  background: red;
  color: white;
  transform: scale(1.15);
  margin: 0px 5px;
}

/* Content */
.tab-content {
  display: none;
  max-width: 1000px;
  margin: auto;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.tab-content.active {
  display: grid;
}

/* Cards */
.card {
  background: white;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.2s;
}

.card:hover {
  transform: scale(1.1);
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: bold;
  margin: 5px 0;
}

.speed {
  font-size: 12px;
  color: gray;
}

/* Button */
.buy-btn {
  margin-top: 10px;
  padding: 8px 12px;
  border: none;
  background: #111827;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.buy-btn:hover {
  background: #374151;
}



/* Modal Background */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  inset: 0;
  
  background: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal Box */
.modal-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 10px;
} 

.modal-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-content input,
.modal-content textarea {
  padding: 10px;
  border-radius: 6px;
  font-size: 16px;
  border: 1px solid #ccc;
}

#orderModal h2{
  margin-bottom: 15px;
  padding-top: 10px;
}
   
#confirmOrder {
  background: red; 
  color: white;
  padding: 13px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 25px;
  font-size: 16px;
}

.close-btn {
  cursor: pointer;
  font-size: 40px;
  font-weight: bold;
  align-self: flex-end;
  height: 60px;
}

#closePaymentModal {
  cursor: pointer;
  font-size: 40px;
  font-weight: bold;
  height: 60px;
}
  

.payment-tabs {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  background-color: rgba(50, 50, 50, 0.25);
  border-radius: 10px;
  padding: 5px;
  border: none;
  font-size: 16px;
}

.pay-tab {
  flex: 1;
  padding: 6px;
  cursor: pointer;
  border-radius: 10px;
  background: none;
  border: none;
  color: white;
}

.pay-tab.active {
  background: black;
  color: white;
}

.pay-content {
  display: none;
}

.pay-content p {
  margin: 10px;
  white-space: nowrap; 
}

.pay-content.active {
  display: block;
}

#countdown {
  font-size: 20px;
  font-weight: bold;
}

.expiration-countdown{
  display: flex;
  text-align: center;
  justify-content: center;
  font-size: 20px;
  background-color: rgba(50, 50, 50, 0.05);
  padding: 5px;
  border-radius: 10px;
}

.copy-btn {
  cursor: pointer;
  width: 25px;
  height: 25px;
}

img.copy-btn {
  vertical-align: text-bottom;
}

.copy-btn:hover {
  transform: scale(1.1);
}

#paidBtn{
  background: red; 
  color: white;
  padding: 13px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 25px;
  font-size: 16px;
}







.htb-header{
  font-size: 35px;
  font-weight: bold;
}

.htb-sub-header{
  font-size: 18px;
  color: grey;
  margin-bottom: 20px;
}

.htb-row{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.htb-box{
  margin: 20px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 15px;
}

.htb-box-head{
  background-color: red;
  padding: 10px 0px;
  border-radius: 50px;
  color: white;
  margin-bottom: 30px;
  /*margin-left: 200px;
  margin-right: 200px;
 */
}

.htb-box-text{
  color: grey;
  font-size: 16px;
}

.htb-box-img{
  width: 90px;
}

/* animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* SECTIONS */
section {
  padding: 60px 20px;
  text-align: center;
}

/* DARK MODE */
.dark-mode {
  background: #111;
  color: white;
}

.dark-mode .card {
  background: #222;
}

.dark-mode .navbar {
  background: #000;
}

@media (max-width: 768px)
/**@media (max-width: 400px)**/{
  .search-bar input {
    width: 100%;
  }
  
  .logo {
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.logo p{
  padding: 5px 0px;
}

.logo-img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}
  
  #themeToggle {
  width: 30px;
  height: 30px;
  background: #111111;
  color: #ffffff;
  transition: 0.3s ease;
  border-radius: 50%;
  font-size: 16px;
}
  
  
  .navbar {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .nav-links, .search-bar{
    display: none;
  }
  
  .landing-h1{
    font-size: 35px;
  }
  
   .landing-h2{
    font-size: 12px;
    margin-top: 20px;
  }
  
   .landing h1{
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .tabs{
    transform: scale(0.8);
  }
  
  .tab-btn{
    font-size: 15px;
    color: #000;
  }
  
  .tab-content {
  display: none;
  max-width: 1000px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.tab-content.active {
  display: grid;
}
  
  .card h3{
    transform: scale(0.9);
    text-align: center;
  }
  
  .price{
    font-size: 16px;
  }
  
  .per-room-txt{
    font-size: 12px;
    margin-bottom: 10px:
  }
  
  .htb-row{
  display: flex;
  flex-direction: column;
  align-items: center;
}


}
