
body {
  margin: 0;
  font-family: 'sans-serif';
  background-color: #fff8f0;
  color: #3c2c20;
  /* text-align: center; */   
  background-image: url('jewelry-bg.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay; 
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px 40px;
  /* overflow: hidden; */
}


.hero-header {
  /* background-image: url('banner.jpg'); */
  background-size: cover;
  background-position: center;
  text-align: center;
  margin-top: 2%;
}
.logo {
  max-width: 300px;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .logo {
    /* max-width: 720px; */
    max-width: 350px;
    margin-top: 10%;
  }
  .form-box {zoom: 2; margin: 15px;}
  .close{font-size: 50px;}

  /* h1 {
    font-size: 
  } */

  .cta-button {
    font-size: 2rem!important;
    padding: 3% 5%!important;
    /* font-size: 50px!important;
    padding: 30px 50px!important; */
  }
  .form-box input, .form-box button{
    font-size: 20px!important;
  }
  
}

@media (max-width: 767px) {
  .logo {
    max-width: 720px !important;
  }

}

h1 {
   font-size: 50px;
   margin: 0;
}

.tagline {
 
  /* font-size: 2.5rem; */
  font-weight: bold;
  color: #D4AF37;
  /* text-shadow: 1px 1px 3px #000; */
}

.text {
  color: #282828;
  font-size: 22px;
}

.text strong:hover {
  text-decoration: underline;
}

.cta-button {
  padding: 20px 50px;
  /* background-color: #D4AF37;  */
  background-color: #002F73; 
  color: white;
  font-size: 20px;
  /* font-size: 16px; */
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  /* background-color: #B38F2A; */
  background-color: #0044a3;
}


.popup-form {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.2);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.form-heading {
  text-align: center;
}

.form-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 450px;
  position: relative;
}
.form-box h2 {
  margin-bottom: 15px;
}

.form-box input {
  display: block;
  /* width: 100%; */
  width: 95%;
  padding: 20px 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.form-box button {
  background-color: #002F73;
  color: #fff;
  border: none;
  padding: 20px 10px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 10px;;
}

.form-box button:hover {
   background-color: #0044a3;
}

.close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
}

.view-button {
  display: inline-block;
  background-color: #c59d5f;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.view-button:hover {
  background-color: #a8823d;
}

.privacy {
  color: #D4AF37;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.privacy:hover {
  color: #bfa12e;
  letter-spacing: 0.5px;
  text-decoration: underline;
}

.footer {
  text-align: center;
  font-size: 1.2rem;
  color: #282828;
  margin-bottom: 10%;
  margin-top: 10%;
}

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

.footer a:hover {
  text-decoration: underline;
}

