* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #1e1e1e;
  color: #fff;
}

.hero {
  height: 100vh;
  background: url('./img/fon.png') center center / cover no-repeat;
  padding: 30px 60px;
  position: relative;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.45);
}

.hero *{
  position: relative;
  z-index: 2;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav a {
  color: #ddd;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.85;
}

.nav a:hover{
  opacity: 1;
}

.hero-text {
  max-width: 520px;
  margin-top: 140px;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 4px;
}

.hero-text p {
  margin: 20px 0;
  color: #ccc;
  line-height: 1.6;
  opacity: 0.85;
}

.hero-text button {
  margin-top: 25px;
  padding: 14px 40px;
  background: #c18b52;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: .3s;
}

.hero-text button:hover{
  background:#b6793f;
}

.products {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: -190px;
  position: relative;
  z-index: 5;
}

.product {
  background:#1f1f1f;
  padding: 18px 26px;
  text-align: left;
  width: 320px;
  height: 120px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: .3s;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.product:hover{
  transform: translateY(-10px);
}

.product img {
  width:80px;
}

.product p {
  line-height: 1.4;
  font-size: 14px;
  opacity: .9;
  flex: 1;
}

.product button {
  background:#e07a2d;
  border:none;
  color:#fff;
  padding:8px 20px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  transition:.3s;
  cursor:pointer;
  white-space: nowrap;
}

.product button:hover{
  background:#c56620;
}

.product.highlight{
  background:#d9a55f;
  color:#000;
  height: 120px;
  width: 320px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.product.highlight p{
  color:#000;
}

.product.highlight button{
  background:#e07a2d;
  color:#fff;
}

.menu {
  padding: 100px 60px;
  text-align: center;
}

.menu h2{
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 3px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 50px;
}

.menu-item {
  background:#1f1f1f;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition:.3s;
}

.menu-item:hover{
  transform: translateY(-10px);
}

.menu-item button {
  margin-top: auto;
  background:#e07a2d;
  border:none;
  color:#fff;
  padding:10px 30px;
  border-radius: 4px;
  font-weight:600;
  cursor:pointer;
}

.menu-item img {
  width: 220px;
}

.quality {
  padding: 100px 60px;
  background: #1b1b1b;
  background-image: url('./img/fon2.png');
  background-size: cover;
  background-position: center;
}

.quality h2 {
  text-align: right;
  margin-right: 200px;
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 3px;
} 

.quality-items {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.quality-item {
  width: 30%;
  position: relative;
  text-align: center;
}

.quality-item img {
  width: 70%;
}

.quality-item:last-child img{
  margin-top: 60px;
}

.quality-item ul {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  margin-top: 15px;
  list-style: none;
}

.quality-item li {
  margin-bottom: 8px;
  opacity: .9;
}

.why {
  background: #0f0f0f;
  color: #fff;
  padding: 100px 10%;
  text-align: center;
}

.why h2 {
  font-weight: 300;
  margin-bottom: 80px;
  letter-spacing: 3px;
}

.why-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.why-item {
  width: 30%;
  font-size: 22px;
}

.why-list img {
  width: 200px;
  margin-bottom: 15px;
}

.footer {
  background: #1c1c1c;
  color: #fff;
  padding: 80px 10% 40px;
}

.footer-top {
  display: flex;
  gap: 80px;
  margin-bottom: 80px;
}

.location iframe {
  width: 340px;
  height: 240px;
  border: none;
}

.contacts {
  display: flex;
  gap: 100px;
  font-style: normal;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
}

.footer-bottom li {
  opacity: 0.7;
  line-height: 1.9;
}

.brand h2 {
  font-weight: 300;
  letter-spacing: 2px;
}

.brand p {
  opacity: 0.6;
}

.copyright {
  text-align: center;
  opacity: 0.5;
  margin-top: 40px;
}
.quality-item:last-child img{  
   margin-top: 245px; } 

.quality-item:nth-child(2) img{  
  margin-top: 75px; } 

.quality-item:nth-child(1) img{
     margin-top: 51px; }

.quality-h2 {
  font-family: 'Italiana', serif;
}


.why{
  position: relative;
  background: #0f0f0f;
  padding: 120px 10%;
  text-align: left;
}

.why-h2{
  font-family: 'Italiana', serif;
  font-size: 64px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 5px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 80px;
  max-width: 800px;
}

@media(max-width: 768px){
  .why-h2{
    font-size: 42px;
  }
}


