
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.chungus{
   font-family: Boska-Black;
    font-size: clamp(1.5rem, 3vw, 10rem);
      color: #D1C1B880;
        text-align: center;
        margin: 12rem 7rem 0rem 7rem;
        border-bottom: #D1C1B8;

}
.smol{
    font-family: 'Poiret One';
    font-size: clamp(1.2rem, 1vw, 4rem);
}
html,body{
  background-color:   #292F27;
}

/* NAVBARrrr */
.navbar {
  position: absolute;
  top: 6rem;
  left: 6rem;
  color: #D1C1B8;
  z-index: 4;
}
.nav-pills {
  display: flex;
  gap: 4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-pills a {
  text-decoration: none;
  color: inherit;
  font-size: 1.2rem; /* chechts */
  padding: 1rem;
}
a.active {
  font-weight: 500;
  background-color: #1B0B0250;

  
  border-radius: 2rem;
}






form{
 
  margin: 2% 30% 5% 30%;
  background: #1B0B0220;
  padding: 2rem;
  border-radius: 8px;
 color: #D1C1B8;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
form p{
  font-size: 0.75rem;
  margin-bottom: 20px;
  padding: 10px;
  border:1px solid #D1C1B880;
  border-radius: 4px;
   font-size: clamp(0.9rem, 1.4vw, 5rem);
}
input, textarea, select{
  font-family: 'Poiret One';
  width: 100%;
  padding: 5px;
  margin: 0.4rem 0px 1rem 0px;
  border: 1px solid #D1C1B880;
  border-radius: 4px;
  background-color: #D1C1B880;
  color: #292F27;
}
button{
  background-color: #D1C1B880;
  color: #292F27;
  font-weight: 700;
  padding: 12px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  cursor: pointer;

}
button:hover{
  background-color: #D1C1B8;
}

.ty{
  padding: 0px 0px 20px;
}


.pricing {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 2rem 0;
}

.pricing-table {
  width: 60vw;
  display: flex;
  flex-direction: column;
  color: #D1C1B8;
  gap: 0.8rem;
}


.pricing-row {
  display: grid;
  grid-template-columns: 70% 30%;
  align-items: center;

  padding: 1rem 0;
  border-bottom: 1px solid #1B0B0250;
}

/* Text (left) */
.pricing-text {
  font-size: 1rem;
}

/* Price (right) */
.pricing-price {
  text-align: right;
  font-weight: 500;
}

.title{
  margin: 10% 5% 0% 5% !important;
}




/*feets*/
.site-footer {
  width: 100%;
  padding: 0 6rem;
  color: #D1C1B880;
  background: #1B0B0220;
  padding-bottom: 3rem;

}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-signature {
  display: flex;
  align-items: center;
  opacity: 50%;
}

.signature-img {
  display: block;
  max-height: 3rem;
  width: auto;
}

.footer-email {
  text-decoration: none;
  color: inherit;
}

.footer-bottom {
  gap: 3rem;
  
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  color: inherit;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.footer-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  display: block;
}




@media (max-width: 768px) {
  .navbar {
    position: static;
  display: flex;
  justify-content: center;
  margin: 2rem;
  padding: 2rem;
}

  .nav-pills {
    justify-content: center;
    gap: 0.25rem;
    display: flex;
  }
 
  .nav-link {
    font-size: clamp(0.8rem, 2vw, 1rem) !important;
  }
  .site-footer {
    padding: 0 2rem;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    gap: 0.5rem;
  }

  .footer-socials {
    justify-content: flex-start;
  }


.chungus{
   margin: 1rem 7rem 2rem 7rem;
}
form{
 
  margin: 2% 10% 2% 10%;

  padding: 2rem;

}
.title{
  margin: 10% 5% 0% 5% !important;
}


.pricing-table {
    width: 90vw;
  margin: 0% 10% 0% 10%;
  padding: 0rem 2rem;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .pricing-price {
    text-align: left;
  }
}