/* Braggo HTML Theme (responsive, modular)
   Fonts: Cormorant Garamond (SilkSerif alternative), Jura, Quicksand
*/
:root{
  --bg: #e7dfd6;         /* page background */
  --bg-2:#ded5cc;
  --ink:#2f2a24;
  --muted:#6d665f;
  --line: rgba(47,42,36,.14);
  --card:#f1ece6;
  --chip:#dcd3ca;
  --accent:#8b6b3e;      /* warm brown */
  --accent-2:#2d3a4a;    /* deep blue-ish */
  --shadow: 0 18px 40px rgba(0,0,0,.08);
  --max: 1160px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing:.2px;
}

/* Standard top margin for subpages, excluding the homepage (body.snap-container) */
body:not(.snap-container) main {
  margin-top: 50px;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(var(--max), calc(100% - 48px)); margin:0 auto}

#urunler > .container {
  width: 80%;
}

#stiller > .container {
  width: 90%;
}


/* Top chrome */
.site-chrome{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(231,223,214,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar{
  font-size:12px;
  color:var(--muted);
  padding:10px 0 8px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:16px;
}
.topbar .links, .topbar .center-links, .topbar .right-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar .center-links {
  justify-content: center;
}
.topbar .right-links {
  justify-content: flex-end;
}
.brandbar{
  padding:10px 0 12px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:16px;
  border-top:1px solid var(--line);
}
.brand{
  display:flex; justify-content:center; align-items:center;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:34px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.brand small{
  display:block;
  font-size:12px;
  font-family:"Jura", sans-serif;
  letter-spacing:4px;
  margin-top:-6px;
  text-align:center;
  color:var(--muted);
}
.iconbar{
  display:flex; justify-content:flex-end; align-items:center; gap:14px;
  color:var(--muted);
}
.iconbtn{
  width:34px; height:34px; border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--line);
  background:rgba(255,255,255,.2);
}
.iconbtn:hover{background:rgba(255,255,255,.45)}
.mainnav{
  border-top:1px solid var(--line);
  padding:10px 0 12px;
  font-family:"Jura", sans-serif;
  font-size:13px;
  letter-spacing:1.6px;
  text-transform:uppercase;
}
.mainnav ul{
  list-style:none; margin:0; padding:0;
  display:flex; gap:20px; justify-content:center; flex-wrap:wrap;
}
.mainnav a{color:var(--ink); opacity:.85}
.mainnav a:hover{opacity:1; text-decoration:underline}

/* Mobile menu */
.burger { display: none; }
.mobile-panel { display: none; }

@media (max-width: 1024px) {
  .site-chrome .brandbar {
    padding-left: 14px;
    padding-right: 14px;
  }
  .site-chrome .burger {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.2);
  }
  .site-chrome .burger button {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    display: inherit; /* to inherit flex properties */
    align-items: inherit;
    justify-content: inherit;
    cursor: pointer;
  }
  .site-chrome .mainnav,
  .site-chrome .hero-navmenu {
    display: none;
  }
  .mobile-panel.is-open {
    display: block;
    padding: 20px 24px;
    border-top: 1px solid var(--line);
  }
  .mobile-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .mobile-panel ul a {
    font-family: "Jura", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 14px;
  }
  .site-chrome .topbar {
    display: none;
  }
}

/* HERO */
.hero{
  position:relative;
  min-height: calc(100svh - 160px);
  border-bottom:1px solid var(--line);
}
.hero-slide{
  position:absolute; inset:0;
  background-position:center;
  background-size:cover;
  filter:saturate(.98);
}
.hero-overlay{
  position:relative;
  min-height: calc(100svh - 160px);
  display:flex;
  align-items:center;
  padding:84px 0;
}
.hero-copy{
  width:min(520px, 100%);
  padding-left:4px;
}
.hero-copy h1{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-weight:500;
  font-size:44px;
  margin:0 0 10px;
  letter-spacing:.4px;
}
.hero-copy h1 span{font-weight:700; letter-spacing:1px}
.hero-copy p{
  margin:0;
  color:rgba(47,42,36,.72);
  font-family:"Jura", sans-serif;
  letter-spacing:1.2px;
  line-height:1.35;
}
.hero-nav{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.hero-arrows .arrow:first-child {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
}
.hero-arrows .arrow:last-child {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
}
.arrow{
  width:54px; height:54px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(0,0,0,.1);
  color:white;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: background .2s ease;
}
.arrow:hover{background:rgba(0,0,0,.25)}
.hero-dots{
  position:absolute;
  right:18px; bottom:18px;
  display:flex; gap:8px;
  pointer-events:auto;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(0,0,0,.12);
  cursor:pointer;
}
.dot.is-active{background:rgba(255,255,255,.95)}

/* Section title */
.section{
  padding:40px 0 54px;
}
.section h2{
  margin:0 0 18px;
  font-family:"Jura", sans-serif;
  font-size:16px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(47,42,36,.8);
}

/* Product collage grid (like PDF page 5) */
.product-collage{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap:22px;
}
.card{
  position:relative;
  border:1px solid var(--line);
  background:var(--card);
  overflow:hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  transition: all .3s ease;
}
.card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.card.bg{
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}
.card::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.08));
  opacity:0;
  transition:.25s ease;
}
.card:hover::after{opacity:1}
.tag{
  position:absolute;
  left:14px; bottom:14px;
  background:rgba(241,236,230,.92);
  border:1px solid var(--line);
  padding:6px 10px;
  font-family:"Jura", sans-serif;
  font-size:12px;
  letter-spacing:1.2px;
  text-transform:uppercase;
}
.card.big{grid-row: span 2;}
.card.tall{grid-row: span 2;}
.card.wide{grid-column: span 2;}
/* Styles row */
.styles-row{
  margin-top:28px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}
.style-tile{min-height:240px}
.style-chip{
  position:absolute;
  top:14px; left:14px;
  padding:6px 10px;
  background:rgba(47,42,36,.72);
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
  font-family:"Jura", sans-serif;
  font-size:12px;
  letter-spacing:1.2px;
  text-transform:uppercase;
}
.style-tile:nth-child(1) .style-chip{background:rgba(235,229,223,.86); color:var(--ink)}
.style-tile:nth-child(2) .style-chip{background:rgba(139,107,62,.86)}
.style-tile:nth-child(3) .style-chip{background:rgba(45,58,74,.86)}
.style-tile:nth-child(4) .style-chip{background:rgba(47,42,36,.86)}
.koleksiyon{
  display: block;
  margin: 22px auto 0;
  height:800px;
  width: 100%;
}
.center-icon{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:46px; height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(0,0,0,.18);
  display:flex; align-items:center; justify-content:center;
  color:#fff;
}



/* --- Homepage blocks to match reference layout --- */
.fullbleed{width:100%}
.section-tight{padding:34px 0 40px}
.section-dark{
  background: linear-gradient(180deg, #2e2a26 0%, #3a3530 100%);
  color: rgba(255,255,255,.86);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.section-dark h2{color:rgba(255,255,255,.8)}
.muted-light{color:rgba(255,255,255,.68)}

.blueprints{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:8px;
}
.bp{
  min-height:180px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.14);
}

.catalog-row{
  margin-top:10px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.catalog-tile{
  min-height:220px;
  filter:saturate(.98);
}
.catalog-tile .tag{left:12px; bottom:12px}

.story{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:26px;
  align-items:center;
  padding:26px 0 10px;
}
.story h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-weight:500;
  font-size:34px;
  letter-spacing:1px;
  margin:0 0 10px;
  text-transform:uppercase;
}
.story p{margin:0; color:rgba(47,42,36,.68); line-height:1.8; font-size:13px}
.story .story-photo{min-height:360px}
.story .story-copy{padding-right:6px}

.banner{
  height:420px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.swatches{
  display:flex; gap:10px; margin-top:14px; align-items:center;
}
.swatch{
  width:14px; height:14px; border-radius:3px; border:1px solid rgba(255,255,255,.4);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(0,0,0,.16);
  color:#fff;
  font-family:"Jura", sans-serif;
  text-transform:uppercase;
  letter-spacing:1.6px;
  font-size:12px;
  margin-top:14px;
}
.btn:hover{background:rgba(0,0,0,.26)}

/* --- Tekstür Ekranı Tam Genişlik Düzenlemesi --- */
.texture {
  position: relative;
  width: 100vw;          /* Ekranın tam genişliğini zorlar */
  left: 50%;             /* Sayfayı ortalar */
  right: 50%;
  margin-left: -50vw;    /* Kenar boşluklarını sıfırlayıp taşmasını sağlar */
  margin-right: -50vw;
  min-height: 600px;     /* Görselin dokusunu göstermesi için yüksekliği artırdık */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-image: url('../img/teksturarkaplan.png');
  background-position: center; /* Görseli her zaman merkezler */
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

/* Metinlerin okunurluğu için arka plana hafif bir karartma (Opsiyonel) */
.texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* %40 siyah katman */
  z-index: 1;
}

.texture-content {
  position: relative;
  z-index: 2; /* İçeriği karartmanın üzerine çıkarır */
  width: min(100%, 700px); /* Mobilde %90, masaüstünde max 700px */
  padding: 40px;
}

.texture h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px; /* Daha büyük ve vurucu başlık */
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
}

.texture p {
  font-family: "Quicksand", sans-serif;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 16px;
  max-width: 500px; /* Metnin çok yayılmasını engeller */
}

/* İncele Butonu Tasarımı */
.texture .btn {
  display: inline-block;
  padding: 12px 45px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Jura", sans-serif;
  letter-spacing: 3px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.texture .btn:hover {
  background: #ffffff;
  color: #000000;
}

.projects{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:14px;
}
.project-tile{min-height:120px}
.blog-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}
.blog-tile{min-height:200px}
.blog-title{
  text-align:center;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:34px;
  text-transform:lowercase;
  margin:0 0 14px;
}

/* --- Full width helpers --- */
.container-wide{width:100%; padding:0 24px}
@media (max-width:720px){ .container-wide{padding:0 14px} }

/* --- Scroll snap one-screen sections --- */
html{scroll-behavior:smooth}
.snap-container{
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}
.snap{
  scroll-snap-align: start;
  min-height: 100svh;
}
.snap .container{height:100%}

/* reduce sticky chrome height influence */
.site-chrome{position:relative}

/* --- Topbar full width (not centered) --- */
.topbar-wrap{
  width:100%;
  border-bottom:1px solid var(--line);
  background: #675F54;
  color: #E8DBC7;
}
.topbar{
  padding:10px 0 8px;
  color: #E8DBC7;
}
.topbar .links, .topbar .center-links, .topbar .right-links{gap:14px}
@media (max-width:1024px){
  .topbar .links, .topbar .center-links, .topbar .right-links{gap:10px}
}

/* --- Hero overlay menu & logo on slider --- */
.hero{
  border-bottom:none;
}
.hero-ui{
  position:relative;
  z-index: 10; /* Bring UI layer to the front */
  pointer-events:none;
}
.hero-ui .center{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  pointer-events:auto;
  padding: 22px 0;
}
.hero-ui .brand-hero{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:44px;
  letter-spacing:1px;
  text-transform:uppercase;
  line-height:1;
  filter: brightness(0);
}
.hero-ui .brand-hero small{
  display:block;
  font-family:"Jura", sans-serif;
  font-size:14px;
  letter-spacing:4px;
  margin-top:2px;
  text-align:center;
  color:rgba(47,42,36,.7);
}
.hero-ui .hero-navmenu{
  position: relative; /* Set positioning context for the mega menu */
  font-family:"Jura", sans-serif;
  font-size:13px;
  letter-spacing:1.6px;
  text-transform:uppercase;
}
.hero-ui .hero-navmenu ul{
  list-style:none;
  margin:0; padding:0;
  display:flex;
  gap:20px;
  justify-content:center;
  white-space:nowrap;
  overflow-x: auto;
}
.hero-ui .hero-navmenu a{color:#000; font-weight:600;}
.hero-ui .hero-navmenu a:hover{text-decoration:underline}

/* mobile hero menu */
.hero-ui .mobile-center{
  display:none;
  position:absolute;
  top:16px; left:14px; right:14px;
  pointer-events:auto;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.hero-ui .mobile-center .brand-hero{font-size:26px}
.hero-ui .mobile-center .iconbtn{background:rgba(255,255,255,.35)}
@media (max-width:720px){
  .hero-ui .center{display:none}
  .hero-ui .mobile-center{display:flex}
}

/* --- Products section should scroll-snap and not include extra paddings --- */
.section{padding:38px 0}
.section.snap{padding:0}
.snap-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* --- Full width craft/texture blocks --- */
.texture{width:100%}

/* --- Projects screen --- */
#projeler .container {
  max-width: none;
  width: 90%;
}
.projects-screen{
  height:100%;
  display:grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.projects-single{
  min-height:75svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.projects-btn {
  background-color: #000;
  color: #fff;
  padding: 14px 36px;
  font-family: "Jura", sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #000;
  transition: all 0.3s ease;
}
.projects-single:hover .projects-btn {
  background-color: #fff;
  color: #000;
}



/* --- Mega Menu --- */
.hero-navmenu .has-dropdown {
  position: static; /* Let mega-menu be positioned relative to nav, not li */
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%; /* Position below the nav with a 10px gap */
  left: 50%;
  transform: translateX(-50%);
  max-width: 960px;
  width: 95vw;
  background: rgba(241, 236, 230, .96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
  padding: 40px 15px 30px;
  pointer-events: auto; /* Ensure dropdown itself is interactive */
  z-index: 100;
}

.has-dropdown:hover .mega-menu {
  display: block;
}

.mega-menu-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.mega-menu-col {
  flex: 1;
  padding: 0 20px;
}

.mega-menu-col + .mega-menu-col {
  border-left: 1px solid var(--line);
}

.mega-menu-col h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--ink);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  text-transform: none;
}

.mega-menu-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-menu-col ul li a {
  opacity: .75;
  font-size: 14px;
  text-transform: none;
  letter-spacing: .4px;
}

.mega-menu-col ul li a:hover {
  opacity: 1;
  text-decoration: none;
  color: var(--accent);
}
.product-collage{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  grid-template-rows:repeat(4,180px);
  gap:12px;

  padding:14px;
  background: rgba(255,255,255,.18);
  border:1px solid var(--line);
  max-width: 1520px;
  margin: 0 auto;
}

/* yerleşim */
.item-mobilya{ grid-area: 1 / 1 / 3 / 3; }
.item-mutfak { grid-area: 1 / 3 / 2 / 6; }
.item-banyo  { grid-area: 1 / 6 / 2 / 7; }
.item-bar    { grid-area: 2 / 3 / 3 / 4; }
.item-oyun   { grid-area: 2 / 4 / 3 / 7; }
.item-bahce  { grid-area: 3 / 1 / 4 / 3; }
.item-parke  { grid-area: 3 / 3 / 4 / 5; }
.item-kapi   { grid-area: 3 / 5 / 5 / 7; }
.item-merdiven{grid-area: 4 / 1 / 5 / 3; }
.item-decor  { grid-area: 4 / 3 / 5 / 5; }

/* mobil */
@media (max-width:768px){
  .product-collage{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:200px;
    grid-template-rows:auto;
  }
  .card{ grid-area:auto !important; }
}


/* Tasarım Hikayemiz Ekranı */
#hikayemiz {
  background-color: #ffffff; /* Temiz beyaz arka plan */
}

.story-layout {
  display: flex;
  width: 100%;
  height: 100svh;
  align-items: center;
}

.story-image {
  flex: 1;
  height: 100%;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Görseli alanı kaplayacak şekilde doldurur */
  filter: grayscale(100%); /* Görseldeki siyah-beyaz etki için */
}

.story-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%; /* Metni merkeze yaklaştırmak için iç boşluk */
}

.story-text-wrapper {
  max-width: 500px;
}

.story-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 60px;
  color: #000;
  text-transform: uppercase;
}

.story-description {
  font-family: "Quicksand", sans-serif;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 1px;
  color: #000;
  text-transform: uppercase; /* Görseldeki gibi tümü büyük harf */
  font-weight: 300;
  text-align: justify;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
  .story-layout {
    flex-direction: column;
  }
  .story-image {
    height: 50%;
    width: 100%;
  }
  .story-content {
    height: 50%;
    padding: 40px 20px;
  }
  .story-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .story-description {
    font-size: 16px;
  }
}
/* Blog Bölümü Genel */
#blog-ekrani {
  background-color: #C9C6C4; /* Sayfa genel rengiyle uyumlu */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#blog-ekrani .blog-main-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #000;
}

.blog-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1; /* Görseldeki dikeyimsi kare yapı */
  margin-bottom: 15px;
  overflow: hidden;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(231, 223, 214, 0.8);
  font-size: 10px;
  padding: 4px 8px;
  font-family: 'Jura', sans-serif;
}

.blog-info h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.blog-info p {
  font-size: 11px;
  line-height: 1.5;
  color: #6d665f;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 2 satırla sınırla */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-circle {
  width: 18px;
  height: 18px;
  background-color: #b49a7a;
  border-radius: 50%;
}

.author-name {
  font-size: 10px;
  color: #888;
  font-family: 'Jura', sans-serif;
}

/* Postlar Butonu */
.blog-footer-btn {
  text-align: center;
  margin-top: 50px;
}

.post-btn {
  display: inline-block;
  padding: 8px 60px;
  border: 1px solid #000;
  color: #000;
  text-transform: lowercase;
  font-family: 'Jura', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  transition: all 0.3s ease;
}

.post-btn:hover {
  background-color: #000;
  color: #fff;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
  .blog-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid-modern {
    grid-template-columns: 1fr;
  }
}
/* Genel Footer Düzenlemeleri */
.footer { background-color: #C9C6C4; color: #2f2a24; }

/* Abonelik Katmanı */
.footer-newsletter-layer {
  padding: 80px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.newsletter-grid { display: grid; grid-template-columns: 1fr 1.5fr; align-items: center; gap: 40px; }
.newsletter-visual img { max-height: 300px; transform: rotate(-5deg); }

.newsletter-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; margin-bottom: 10px; }
.newsletter-header p { font-style: italic; color: #6d665f; margin-bottom: 30px; }

.newsletter-form .input-group {
  display: flex;
  border: 1px solid #6d665f;
  border-radius: 30px;
  overflow: hidden;
  max-width: 450px;
  margin-bottom: 15px;
}
.newsletter-form input {
  flex: 1; border: none; background: transparent; padding: 12px 20px; outline: none;
}
.newsletter-form button {
  background: transparent; border: none; border-left: 1px solid #6d665f;
  padding: 0 25px; text-transform: uppercase; font-size: 12px; cursor: pointer;
}
.checkbox-label { font-size: 10px; display: flex; gap: 10px; align-items: flex-start; opacity: 0.6; }

/* S.S.S Katmanı */
.footer-faq-layer { padding: 60px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.faq-title h2 { font-size: 40px; font-weight: 300; letter-spacing: 5px; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 15px 0; display: flex; justify-content: space-between;
  font-family: 'Quicksand', sans-serif; cursor: pointer;
}

/* Ana Footer Grid */
.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 30px;
  padding: 60px 0;
  justify-items: center;
}
.footer-col h3 { margin-top: 100px; font-size: 12px; letter-spacing: 2px; margin-bottom: 20px; opacity: 0.8; }
.footer-col ul li a { font-size: 14px; color: #6d665f; display: block; padding: 4px 0; font-weight: 600; }
.blog-link { background: #bca894; color: #fff !important; display: inline-block !important; padding: 2px 8px !important; margin-top: 5px; }

.mini-map img { width: 100%; border-radius: 4px; margin: 15px 0; filter: grayscale(1); }

/* --- Blog Ekranı Genişliği --- */
#blog-ekrani > .container {
  width: 90%;
}

/* --- Footer Genişliği --- */
.footer-main-layer > .container {
  width: 80%;
  max-width: none;
  box-sizing: border-box; /* padding'in genişliğe dahil olmasını sağlar */
}

/* --- S.S.S. Akordiyon Stilleri --- */
.faq-answer {
  display: none;
  padding: 5px 0 15px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.faq-answer.is-open {
  display: block;
}

.faq-question span {
  transition: transform 0.3s ease;
  display: inline-block;
  font-weight: 300;
  font-size: 24px;
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

/* --- Sosyal Medya İkonları --- */
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons a {
    font-size: 60px;
    color: var(--muted);
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--ink);
}

/* --- İletişim Bilgileri --- */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    font-size: 14px;
    font-weight: 600;
}

.contact-info li {
    margin-bottom: 10px;
}

.contact-info li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

.contact-info li a:hover {
    color: var(--ink);
}

.contact-info .fa-solid, .contact-info .fa-brands {
    width: 18px;
    text-align: center;
}

.brand-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.brand-logos-row span {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 5px;
  width: 280px;
  height: 100px;
}

.brand-logos-row img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* --- Zanaat Ekranı Yeni Tasarım --- */
.craft {
  display: flex;
  width: 100%;
  min-height: 100svh; /* Tam ekran yüksekliği */
  background: #7F7E7C;
}

.craft-image-area {
  width: 50%;
  background-image: url('../img/craft.png'); /* Buraya usta görselinin yolunu koy */
  background-size: cover;
  background-position: center;
  filter: brightness(0.7); /* Görseldeki loş hava için */
}

.craft-text-area {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: #7F7E7C; /* Görseldeki koyu gri/kahve tonu */
  color: #c9b49a; /* Metinler için kullanılan gold/bej tonu */
}

.craft-content-wrapper {
  max-width: 480px;
}

.craft-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px; /* Büyük ve etkileyici font */
  line-height: 0.9;
  font-weight: 500;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.craft-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.craft-description {
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(201, 180, 154, 0.7); /* Biraz daha sönük metin rengi */
}

.craft-footer {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.craft-social-links {
  display: flex;
  gap: 8px;
  position: relative;
}

.swatch-link {
  width: 28px;
  height: 28px;
  background: #e7dfd6; /* Karelerin rengi */
  display: block;
}

.social-label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Jura", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
}

.craft-blog-link {
  font-family: "Jura", sans-serif;
  font-size: 18px;
  text-transform: lowercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Mobil Düzenleme */
@media (max-width: 1024px) {
  .craft { flex-direction: column; }
  .craft-image-area, .craft-text-area { width: 100%; min-height: 50svh; }
  .craft-title { font-size: 50px; }
  .craft-text-area { padding: 40px 20px; }
}

/* Mobile topbar menu */
.topbar-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 8px;
  color: #E8DBC7;
}
.topbar-mobile .iconbtn {
  border-color: rgba(232, 219, 199, 0.5);
  background: transparent;
}
.topbar-mobile-brand {
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}
.topbar-mobile-panel {
  display: none;
  background: #675F54;
  padding: 10px 24px 20px;
  border-top: 1px solid rgba(232, 219, 199, 0.2);
}
.topbar-mobile-panel.is-open {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.topbar-mobile-panel a {
  color: #E8DBC7;
  font-size: 14px;
  font-family: "Jura", sans-serif;
  text-transform: uppercase;
  padding: 4px 0;
}

@media (max-width: 1024px) {
  .topbar-wrap .topbar {
    display: none;
  }
  .topbar-wrap .topbar-mobile {
    display: flex;
  }
}

/* --- Başlık boşlukları (Ürünler, Tasarım Hikayemiz, Projelerimiz) --- */
.grid-title, 
.story-title, 
#projeler h3 {
  margin-top: 25px;
}
