@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Quicksand", sans-serif;
  background-color: black;
}
a {
  text-decoration: none;
  color: #fff;
}
ul {
  list-style: none;
}
.container {
  max-width: 1100px;
  margin: auto;
}

.butoni {
 display: inline-block;
  padding: 15px 30px;
  border: 3px solid rgb(238,232,170);
  border-radius: 15px;
  cursor: pointer;
}

.butoni:hover {
  background: #e4b95b;
}

header {
  height: 100vh;
  position: relative;
}
li{
  padding-top: 13px;
}
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  font-size: 15px;
}
.butonii:hover {
  background: #4B291C;
}
.butonii {
 display: inline-block;
  padding: 10px 12px;
 font-weight:600;
  border-radius: 10px;
  border: 2px solid rgb(238,232,170);
  cursor: pointer;
}
#navbar img {
  padding-top: 10px;
  width: 80px;
  margin-left: 80px;
}
nav ul {
  display: flex;
  margin-right: 100px;
}
nav ul li a {
  padding: 15px 20px;
  font-weight: 600;
}
nav ul li a:hover {
  border-bottom: 2px solid #e4b95b;
}

#background {
  height: 100vh;
  background: url("../images/1,.jpg");
  position: relative;
  text-align: center;
}

#background::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

#background .content {
 display: flex;
 flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 75%; 
  color: #fff;
  z-index: 2;
}

#background .content h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

#background .content p {
  margin: 20px 0 40px;
}

  
         .container {
            max-width: 600px;
            margin: 50px auto;
            padding: 20px;
            background-color: #111;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px; 
        }

        h2 {
            color: #fff;
        }

        form {
            margin-top: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #ddd;
        }

        input, textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            box-sizing: border-box;
            background-color: #222;
            color: #fff;
            border: 1px solid #333;
            border-radius: 5px; 
        }

        textarea {
            height: 150px;
        }

        button {
            background-color: rgb(238,232,170);
            color: #000;
            padding: 10px 11px;
            border: none;
            cursor: pointer;
            border-radius: 5px;

        }

        button:hover {
            background-color: #e4b95b;
        }
        

      .footer{
    background-color: #111010;
    padding: 70px 0;
}
.footer1{
   width: 25%;
   padding: 0 15px;
}
.footer1 h4{
    font-size: 18px;
    color: #fff;
    margin-bottom: 35px;
    font-weight: 700;
    position: relative;
}
.footer1 h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: rgb(238,232,170);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
.footer1 ul li:not(:last-child){
    margin-bottom: 10px;
}
.footer1 ul li {
    font-size: 16px;
    text-decoration: none;
    font-weight: 300;
    color: #bbb;
    display: block;
    transition: all 0.3s ease;
}
.footer1 ul li a:hover{
    color: #fff;
    padding-left: 8px;
     transition: all 0.3s ease;
}
.footer1 .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #ffffff20;
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.footer1 .social-links a:hover{
    color: #24262b;
    background-color: #fff;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
/*responsive*/
@media(max-width: 767px){
  .footer1{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer1{
    width: 100%;
}


@media only screen and (max-width: 768px) {
  #navbar {
    height: auto;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  #navbar img {
    margin-left: 0;
    margin-bottom: 20px;
  }

  nav ul {
    margin-right: 0;
  }

  nav ul li {
    margin: 10px 0;
  }

  nav ul li a {
    padding: 10px 15px;
  }
}


@media only screen and (max-width: 768px) {
  .container {
    max-width: 90%;
  }
}