:root {
    --primary-color: rgb(166, 114, 51);
    --secondary-color: black;
    --text-color: black;
    --font-weight-bold: 900;
    --font-weight-semibold: 650;
    --font-size-banner: 8rem;
    --font-weight-normal: 450;
    --font-size-xl: 2rem;
    --font-size-l: 1.7rem;
    --font-size-s: 1rem;
    --gray: #808080;
  }

  * {
    padding: 0;
    margin: 0;
    font-family: "notosans, mavenpro";
    text-decoration: none;
  }

  body {
    min-width: 1280px;
  }
  body, html {
    overflow-x: hidden;
  }

  .container {
    background-image: url("asset/images/handicraft.jpg");
    background-size: cover;
    height: 100vh;
    width: 100%;
    align-items: center;
  }

  .header-content {
    display: flex;
    justify-content: space-around;
  }

  .logo {
    display: flex;
    justify-content: center;
    background-color: #b88b0fec;
    border-radius: 1.5rem;
    position: relative;
  }

  .logo-text {
    color: aliceblue;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
  }

  .nav {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding: 1rem;
    margin-left: 2rem;
  }

  .nav-content {
    color: aliceblue;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-normal);
    margin-top: 1.5rem;
  }

  .contact-btn {
    color: aliceblue;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-normal);
    margin-top: 1.9rem;
  }

  .contact-txt {
    padding: .5rem;
    background-color: #b88b0fec;
    border-radius: 1.5rem;
  }

  .hero-banner {
    color: aliceblue;
    font-size: var(--font-size-banner);
    font-weight: var(--font-weight-bold);
    margin: 5rem;
    align-items: center;
  }
/* boss here the main banner of about end  */
  .main {
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100vh;
  }

  .about {
    display: flex;
    justify-content: space-between;
    background-color: #191919;
  }

  .text {
    background-color: #191919;
    width: 50%;
    height: 50%;
    color: white;
    padding: 5rem;
  }

  .txt-a {
    font-size: 8rem;
    font-weight: var(--font-weight-semibold);
  }

  .abt-img {
    background-image: url("asset/images/aboutsarees.jpg");
    background-size: cover;
    width: 50%;
    height: 100vh;
    background-repeat: no-repeat;
  }
  .para{
     font-size: 2rem;
  }
  /* location page*/
  .add-detail{
      padding: 2.5rem;
      color: white;
      font-size: 2.5rem;
      text-transform: capitalize;
      line-height: 3.4rem;
  }
.loc{
  background-image: url("asset/images/rajasthanilahenga.jpg");
  background-size:cover;
  width: fit-content;
}
.landmark{
  color:rgb(239, 237, 102);
  text-shadow: 2px 3px rgb(22, 19, 16);
}
  .location {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    height: 100vh;
   padding-top: 4rem;
  }
  .heading-add{
    color: white;
    font-size:4rem ;
    font-weight: 800;
  }
  .address{
    width: 50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .trace{
    color: rgb(0, 0, 0);
    background-color: palegoldenrod;
    font-size:2.5rem;
    border: 1px solid palegoldenrod;
    border-radius:25px;
    padding: 8px;
  }
  .map{
    width: 50vw;
  }

  #g-map{
    border: 10px solid white;
    border-radius: 2.5px;
    padding:2rem;
  }
  /* contact page start*/


    .container-thank{
      display: flex;
      height: 100vh;
    }

    .left {
      flex: 1;
      position: relative;
      overflow: hidden;
    }

    .left video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .right {
      flex: 1;
      background-color: #f9f9f9;
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    form {
      width: 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
    }

    input, textarea {
      margin-bottom: 15px;
      padding: 10px;
      font-size: 16px;
    }

    button {
      padding: 12px;
      background-color: #007bff;
      color: white;
      border: none;
      cursor: pointer;
    }

    button:hover {
      background-color: #1e7e19;
    }
h2{
  line-height: 2rem;
  font-weight: 800;
  font-size: 2.1rem;
}
label,button{
  font-weight: bold;
}
span.required{
  color: red;
}
/* footer */
.site-footer {
  background-color: #222;
  color: #fff;
  padding: 20px 40px;
 
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left h3 {
  margin-bottom: 5px;
  font-size: 18px;
  color: #f8f8f8;
}

.footer-left p {
  font-size: 14px;
  color: #bbb;
}

.footer-right a {
  color: #bbb;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #11c936;
}

