@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root{
  --cream:#f8f5ef;
  --gold:#b58a4a;
  --dark:#1f1d1a;
  --text:#252321;
  --line:#ded8cf;
  --green:#20b85a;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--text);
  font-family:'DM Sans',Arial,sans-serif;
  background:#fff;
}

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

/* HEADER */

.header{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 5.5%;
  position:sticky;
  top:0;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  z-index:20;
  border-bottom:1px solid #eee;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-circle{
  width:52px;
  height:52px;
  border-radius:50%;
  background:var(--gold);
  display:grid;
  place-items:center;
}

.logo-h{
  font-family:Georgia,serif;
  font-size:29px;
  font-weight:bold;
  color:white;
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.logo-text strong{
  font-size:16px;
  letter-spacing:2px;
}

.logo-text small{
  margin-top:5px;
  font-size:9px;
  letter-spacing:3px;
  color:var(--gold);
}

.header nav{
  display:flex;
  gap:28px;
  font-size:14px;
}

.header nav a:hover{
  color:var(--gold);
}

.menu{
  display:none;
  border:0;
  background:transparent;
  font-size:28px;
  cursor:pointer;
}

/* HERO */

.hero{
  min-height:620px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(0,0,0,.67),rgba(0,0,0,.12)),
    url('IMG-20260916-WA0001.jpg') center/cover no-repeat;
}

.hero-content{
  width:100%;
  max-width:700px;
  margin-left:7%;
  padding:70px 20px;
  color:#fff;
}

.eyebrow{
  margin:0 0 12px;
  color:#d0a15d;
  font-size:13px;
  font-weight:600;
  letter-spacing:2px;
}

.hero h1{
  margin:0 0 20px;
  font:700 54px/1.08 'Playfair Display',serif;
}

.hero h1 em{
  color:#d0a15d;
  font-style:normal;
}

.hero p:not(.eyebrow){
  max-width:590px;
  margin:0;
  font-size:17px;
  line-height:1.7;
}

.actions{
  display:flex;
  gap:14px;
  margin-top:28px;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:48px;
  padding:0 24px;
  border-radius:30px;
  font-weight:600;
}

.btn-gold{
  background:#d0a15d;
  color:#fff;
}

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

/* GENEL BÖLÜMLER */

.section{
  padding:75px 7%;
}

.centered{
  text-align:center;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  margin-top:35px;
}

.service-grid article{
  text-align:center;
  padding:0 18px;
  border-right:1px solid var(--line);
}

.service-grid article:last-child{
  border-right:0;
}

.icon{
  width:58px;
  height:58px;
  margin:0 auto 16px;
  border-radius:50%;
  background:#f3eadb;
  display:grid;
  place-items:center;
  font-size:26px;
}

.service-grid h3{
  font-size:14px;
  margin:0 0 8px;
}

.service-grid p{
  margin:0;
  font-size:12px;
  color:#777;
  line-height:1.5;
}

/* PROJELER */

.projects{
  background:var(--cream);
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:25px;
  margin-bottom:30px;
}

.section-head h2,
.about h2{
  font:700 40px 'Playfair Display',serif;
  margin:8px 0;
}

.section-head p:not(.eyebrow){
  margin:0;
  color:#666;
}

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

.gallery figure{
  margin:0;
  position:relative;
  overflow:hidden;
  border-radius:8px;
  aspect-ratio:4/5;
  background:#ddd;
}

.gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s;
}

.gallery figure:hover img{
  transform:scale(1.05);
}

.gallery figcaption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:25px 15px 15px;
  color:#fff;
  background:linear-gradient(transparent,rgba(0,0,0,.75));
  font-size:13px;
}

/* HAKKIMIZDA */

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:500px;
}

.about-image{
  min-height:500px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.15),rgba(0,0,0,.05)),
    url('IMG-20260916-WA0001.jpg') center/cover no-repeat;
}

.about-text{
  padding:65px 8%;
  background:transparent;
}

.about-text>p:not(.eyebrow){
  line-height:1.8;
  color:#555;
  max-width:520px;
}

.features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  margin-top:35px;
}

.features div{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.features b{
  font-size:15px;
}

.features span{
  font-size:13px;
  color:#777;
}

/* CTA */

.cta{
  text-align:center;
  padding:65px 20px;
  background:var(--cream);
}

.cta h2{
  font:700 34px 'Playfair Display',serif;
  margin:0 0 8px;
}

.cta p{
  color:#666;
  margin-bottom:24px;
}

.btn-green{
  background:var(--green);
  color:#fff;
}

/* FOOTER */

footer{
  background:#201e1b;
  color:#eee;
  padding:55px 7% 20px;
}

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

.footer-logo{
  font:700 29px 'Playfair Display',serif;
  letter-spacing:4px;
}

.footer-logo span{
  font:400 12px 'DM Sans',sans-serif;
  display:block;
  letter-spacing:4px;
}

.footer-grid h4{
  color:#d1ab70;
  margin:0 0 15px;
}

.footer-grid p,
.footer-grid a{
  color:#bbb;
  font-size:13px;
  line-height:1.7;
}

.footer-grid a:hover{
  color:#fff;
}

.copyright{
  border-top:1px solid #3b3935;
  margin-top:30px;
  padding-top:18px;
  color:#888;
  font-size:12px;
}

.floating-wa{
  position:fixed;
  right:22px;
  bottom:22px;
  width:55px;
  height:55px;
  border-radius:50%;
  background:var(--green);
  z-index:30;
}

/* TABLET */

@media(max-width:900px){

  .header nav,
  .header>.btn{
    display:none;
  }

  .menu{
    display:block;
  }

  .hero{
    min-height:570px;
  }

  .hero-content{
    margin-left:4%;
    max-width:600px;
  }

  .hero h1{
    font-size:43px;
  }

  .service-grid{
    grid-template-columns:repeat(3,1fr);
    gap:35px;
  }

  .service-grid article{
    border:0;
  }

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

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

  .about-image{
    min-height:380px;
  }

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

/* TELEFON */

@media(max-width:560px){

  .header{
    padding:0 5%;
  }

  .logo-circle{
    width:44px;
    height:44px;
  }

  .logo-h{
    font-size:25px;
  }

  .logo-text strong{
    font-size:14px;
  }

  .hero{
    min-height:590px;
    background-position:center center;
  }

  .hero-content{
    margin-left:0;
    padding:65px 6%;
  }

  .hero h1{
    font-size:37px;
  }

  .hero p:not(.eyebrow){
    font-size:15px;
  }

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

  .section{
    padding:55px 5%;
  }

  .service-grid{
    grid-template-columns:repeat(2,1fr);
    gap:28px 5px;
  }

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

  .section-head{
    align-items:start;
    flex-direction:column;
  }

  .section-head h2,
  .about h2{
    font-size:32px;
  }

  .about-image{
    min-height:330px;
  }

  .about-text{
    padding:50px 6%;
  }

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

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

/* TAMAMLANAN PROJELER - SON DOKUNUŞ */

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

/* Son proje: Banyo Dolabı */
.gallery figure:last-child {
    grid-column: 1 / -1;
    height: 430px;
}

.gallery figure:last-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

/* Proje kartlarına hafif profesyonel geçiş */
.gallery figure {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

/* Telefonda tekrar tek sütun */
@media (max-width: 700px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery figure:last-child {
        grid-column: auto;
        height: auto;
    }

    .gallery figure:last-child img {
        height: 100%;
    }
    }

/* ===== HAKKIMIZDA - TEMIZ SON TASARIM ===== */

#hakkimizda.about{
    position:relative;
    display:block;
    min-height:600px;
    padding:90px 8%;
    box-sizing:border-box;
    overflow:hidden;
    background:
        linear-gradient(90deg,
            rgba(255,255,255,.92) 0%,
            rgba(255,255,255,.82) 34%,
            rgba(255,255,255,.42) 58%,
            rgba(255,255,255,.12) 100%),
        url('IMG-20260916-WA0007.jpg') center/cover no-repeat;
}

#hakkimizda .about-image{
    display:none !important;
}

#hakkimizda .about-text{
    position:relative;
    z-index:2;
    width:52%;
    max-width:620px;
    padding:0;
    background:transparent;
}

#hakkimizda h2{
    margin:8px 0 18px;
    font:700 46px 'Playfair Display',serif;
    color:#171717;
}

#hakkimizda .eyebrow{
    color:var(--gold);
}

#hakkimizda .about-text>p:not(.eyebrow){
    max-width:560px;
    margin:0;
    color:#3f3b36;
    line-height:1.75;
}

#hakkimizda .features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px 34px;
    margin-top:36px;
}

#hakkimizda .features div{
    display:flex;
    flex-direction:column;
    gap:6px;
}

#hakkimizda .features b{
    color:#1f1d1a;
    font-size:15px;
}

#hakkimizda .features span{
    color:#55504a;
    font-size:13px;
    line-height:1.5;
}

@media(max-width:900px){
    #hakkimizda.about{
        min-height:560px;
        padding:70px 7%;
        background-position:center;
    }

    #hakkimizda .about-text{
        width:68%;
    }
}

@media(max-width:560px){
    #hakkimizda.about{
        min-height:auto;
        padding:55px 6%;
        background:
            linear-gradient(90deg,
                rgba(255,255,255,.94) 0%,
                rgba(255,255,255,.84) 58%,
                rgba(255,255,255,.48) 100%),
            url('IMG-20260916-WA0007.jpg') center/cover no-repeat;
    }

    #hakkimizda .about-text{
        width:100%;
        max-width:100%;
        padding:0;
    }

    #hakkimizda h2{
        font-size:38px;
    }

    #hakkimizda .features{
        grid-template-columns:1fr;
        gap:20px;
        margin-top:30px;
    }
}
        
/* ANA SAYFA BUTONLARINI GERİ GETİR */

.actions{
  display:flex;
  gap:16px;
  align-items:center;
  margin-top:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border-radius:999px;
  font-weight:700;
  font-size:16px;
  text-decoration:none;
  cursor:pointer;
  transition:0.25s ease;
}

.btn.gold{
  background:#d5a62e;
  color:#fff;
  border:2px solid #d5a62e;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
}

.btn.outline{
  background:rgba(0,0,0,.15);
  color:#fff;
  border:2px solid rgba(255,255,255,.9);
  backdrop-filter:blur(3px);
}

.btn:hover{
  transform:translateY(-2px);
}

.btn.gold:hover{
  background:#bd9022;
  border-color:#bd9022;
}

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