*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Manrope",sans-serif;
  color:#1c1c1c;
  background:#fff;
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

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

.container{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

.section{
  padding:110px 0;
}


/* HEADER */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.08);
}

.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  gap:40px;
}

.logo img{
  width:145px;
  height:auto;
}

.main-nav{
  display:flex;
  gap:30px;
  margin-left:auto;
}

.main-nav a{
  font-size:14px;
  font-weight:600;
  transition:.25s;
}

.main-nav a:hover{
  opacity:.55;
}

.header-phone{
  padding:12px 20px;
  border:1px solid #1c1c1c;
  font-size:13px;
  font-weight:700;
}


/* HERO */

.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  background:
    url("https://adakerestecilik.com.tr/Yedekk/wp-content/uploads/2023/04/WhatsApp-Image-2023-04-12-at-17.46.04-1.jpeg")
    center/cover no-repeat;
  color:#fff;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.82) 0%,
      rgba(0,0,0,.55) 48%,
      rgba(0,0,0,.18) 100%
    );
}

.hero-content{
  position:relative;
  z-index:2;
  padding-top:80px;
}

.hero-eyebrow{
  display:inline-block;
  margin-bottom:20px;
  font-size:13px;
  letter-spacing:2.2px;
  font-weight:700;
}

.hero h1{
  max-width:850px;
  font-size:clamp(48px, 7vw, 88px);
  line-height:1.02;
  letter-spacing:-3px;
  font-weight:700;
}

.hero p{
  max-width:650px;
  margin-top:28px;
  font-size:18px;
  color:rgba(255,255,255,.82);
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:38px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 28px;
  font-weight:700;
  font-size:14px;
  transition:.25s;
}

.btn-primary{
  background:#fff;
  color:#111;
}

.btn-primary:hover{
  background:#e8e8e8;
}

.btn-outline{
  border:1px solid rgba(255,255,255,.55);
  color:#fff;
}

.btn-outline:hover{
  background:#fff;
  color:#111;
}


/* BRANDS */

.brands{
  padding:32px 0;
  border-bottom:1px solid #e8e8e8;
}

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

.brands-inner > span{
  font-size:13px;
  color:#777;
}

.brand-names{
  display:flex;
  gap:45px;
}

.brand-names strong{
  font-size:24px;
  letter-spacing:1px;
}


/* SECTION HEADING */

.section-heading{
  max-width:760px;
  margin-bottom:55px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:800;
  letter-spacing:2px;
  color:#8a6543;
}

.section-heading h2,
.about-content h2,
.contact-content h2{
  font-size:clamp(34px, 4.5vw, 58px);
  line-height:1.08;
  letter-spacing:-2px;
}

.section-heading p,
.about-content > p,
.contact-content > p{
  margin-top:20px;
  font-size:17px;
  color:#666;
}


/* PRODUCTS */

.products{
  background:#f6f3ef;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.product-card{
  min-height:330px;
  padding:34px;
  background:#fff;
  display:flex;
  flex-direction:column;
  border:1px solid #e9e5df;
  transition:.3s;
}

.product-card:hover{
  transform:translateY(-7px);
  box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.product-number{
  font-size:12px;
  font-weight:800;
  color:#8a6543;
  margin-bottom:auto;
}

.product-card h3{
  margin-top:80px;
  font-size:24px;
  line-height:1.2;
}

.product-card p{
  margin-top:15px;
  font-size:14px;
  color:#6e6e6e;
}


/* ABOUT */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.about-image img{
  width:100%;
  height:650px;
  object-fit:cover;
}

.about-content p{
  max-width:600px;
}

.about-features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:45px;
  padding-top:35px;
  border-top:1px solid #ddd;
}

.about-features strong{
  display:block;
  font-size:18px;
}

.about-features span{
  display:block;
  margin-top:5px;
  font-size:13px;
  color:#777;
}


/* GALLERY */

.gallery{
  background:#111;
  color:#fff;
}

.gallery .eyebrow{
  color:#c9a378;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.gallery-grid img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition:.35s;
}

.gallery-grid img:hover{
  transform:scale(.985);
  opacity:.8;
}


/* CONTACT */

.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
  align-items:stretch;
}

.contact-items{
  margin-top:40px;
}

.contact-item{
  padding:20px 0;
  border-bottom:1px solid #ddd;
}

.contact-item span{
  display:block;
  margin-bottom:6px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1.4px;
  color:#888;
}

.contact-item p,
.contact-item a{
  font-size:16px;
  font-weight:600;
}

.map{
  min-height:620px;
}

.map iframe{
  width:100%;
  height:100%;
  min-height:620px;
  border:0;
}


/* FOOTER */

.site-footer{
  background:#0d0d0d;
  color:#fff;
  padding:50px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
}

.footer-inner img{
  width:150px;
  filter:brightness(0) invert(1);
}

.footer-inner p{
  margin-top:10px;
  font-size:13px;
  color:#999;
}


/* MOBILE ACTIONS */

.mobile-actions{
  display:none;
}


/* RESPONSIVE */

@media(max-width:1000px){

  .main-nav,
  .header-phone{
    display:none;
  }

  .header-inner{
    min-height:72px;
  }

  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .about-image img{
    height:520px;
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .map,
  .map iframe{
    min-height:450px;
  }

}


@media(max-width:640px){

  body{
    padding-bottom:64px;
  }

  .container{
    width:min(100% - 30px, 1200px);
  }

  .section{
    padding:75px 0;
  }

  .logo img{
    width:125px;
  }

  .hero{
    min-height:82vh;
  }

  .hero-content{
    padding-top:60px;
  }

  .hero h1{
    font-size:47px;
    letter-spacing:-2px;
  }

  .hero p{
    font-size:16px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

  .brands-inner{
    align-items:flex-start;
    gap:20px;
    flex-direction:column;
  }

  .product-grid{
    grid-template-columns:1fr;
  }

  .product-card{
    min-height:270px;
  }

  .about-grid{
    gap:45px;
  }

  .about-image img{
    height:430px;
  }

  .about-features{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
    gap:7px;
  }

  .gallery-grid img{
    height:230px;
  }

  .contact-grid{
    gap:45px;
  }

  .footer-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .mobile-actions{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    z-index:1500;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#111;
  }

  .mobile-actions a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:64px;
    color:#fff;
    font-size:14px;
    font-weight:800;
  }

  .mobile-actions a + a{
    border-left:1px solid rgba(255,255,255,.2);
  }

}