body{
    margin: 0;
    padding: 0;


}
.hamburger {
  display: none; 
  cursor: pointer;
}
.hamburger img {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .hamburger {
  display: block;
  position: absolute;
  top: 150px;
  left: 5%;
  padding: 15px;
  border-radius: 8px;
  background-color: white; 
  }
}

@media (max-width: 992px) and (min-width: 740px) {
  .hamburger {
  display: block;
  position: absolute;
  top: 140px;
  left: 5%;
  padding: 15px;
  border-radius: 8px;
  background-color: white;
  }
}

.brand-logo{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    padding: 5px 10px;
}

.nav-bar{
    display: flex;
    align-items: center;
    background-color: #3e1f1a;
}

.brand-name{
    font-size: 25px;
    margin: 10px;
    margin-right: 350px;
    color: white;
}

.nav-items{
    margin-left: 10px;
    margin-right: 100px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    margin-left: 50px;
}

body {
   background-color: #efe7d3;
  color: #3e2723;
}

.nav-bar {
  display: flex;
    align-items: center;
  width: 100%;
  background: rgba(62, 31, 26, 0.95);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-right a {
  margin: 0 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-right a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffca28;
  transition: width 0.3s ease;
}

.nav-right a:hover::after {
  width: 100%;
}


.brand-logo {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.brand-name {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin: 0 30px;
}

.nav-items {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}
.nav-items:hover {
  color: #ffca28;
}
.form-title {
  text-align: center;
  margin-top: 30px;
  font-size: 28px;
  color: #5d4037;
}


.form-container {
  background: rgba(255, 255, 255, 0.9);
  max-width: 450px;
  margin: 40px auto;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #5d4037;
}

form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 600;
}

form input, form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 8px;
  outline: none;
  margin-bottom: 15px;
  transition: border 0.3s;
}

form input:focus, form select:focus {
  border-color: #fdfbfb;
}


.payment-options {
  display: flex;
  gap: 220px;
  0px;
  margin-bottom: 20px;
}

.payment-options input[type="radio"] {
  display: none;
}

.payment-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  background: #331a11 ;
  color: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.payment-options input[type="radio"]:checked + .payment-btn {
  background: #fffefe;
  color: white;
  border: 2px solid #f5f2f1;
}


.submit-btn {
  width: 100%;
  padding: 12px;
  background: #6d4c41;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.submit-btn:hover {
  background: #4e342e;
}

.footer {
  background: #3e1f1a;
  color: #fff;
  padding: 30px 20px;
  margin-top: 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer h4, .footer h2 {
  margin-bottom: 10px;
  color: #ffca28;
}

.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}
.footer .socials a {
  font-size: 20px;
  margin-right: 10px;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s;
}
.footer .socials a:hover {
  opacity: 0.7;
}
@media (max-width: 600px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .brand-name {
    margin: 10px 0;
    font-size: 18px;
  }

  .nav-items {
    display: block;
    margin: 6px 0;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.4;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-image img {
    width: 220px;
  }

  .footer h2, 
  .footer h4 {
    font-size: 18px;
  }

  .footer p, 
  .footer a {
    font-size: 14px;
  }
}
