
:root{
  --orange:#ff6600;
  --dark:#0b0b0b;
  --card:#0f0f0f;
  --muted:#bfbfbf;
  --panel:#fff8f5;
}
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:Inter, 'Segoe UI', Arial, sans-serif;
}
body{
  background:linear-gradient(90deg,var(--orange) 0%, #ff8a3c 100%);
  min-height:100vh;
  color:#fff;
  overflow-x:hidden;
}
.wrapper{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px 16px;
}
.card{ width:1260px;
  max-width:100%;
  background:var(--card);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.5);
}
.top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 32px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-logo{
  width:42px;
  height:42px;
  border-radius:10px;
  background:var(--orange);
  background-image:url('logo.png');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.brand-text{
  font-weight:800;
  letter-spacing:1px;
}
.brand-text .orange{color:var(--orange);}
nav a{
  color:rgba(255,255,255,0.9);
  text-decoration:none;
  margin-left:20px;
  font-weight:600;
  letter-spacing:0.6px;
  padding-bottom:3px;
}
nav a.active{border-bottom:2px solid var(--orange);}
.hero{
  display:flex;
  gap:40px;
  padding:36px 40px;
  background:linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}
.hero-left{flex:1;min-width:280px;}
.hero-right{flex:1;display:flex;justify-content:center;align-items:center;}
.hero h1{
  font-size:40px;
  line-height:1.05;
  margin-bottom:16px;
}
.hero p{
  color:var(--muted);
  font-size:15px;
  margin-bottom:24px;
}
.btn{
  display:inline-block;
  background:var(--orange);
  color:#fff;
  padding:14px 24px;
  border-radius:10px;
  font-weight:800;
  text-decoration:none;
}
.hero-right img{
  max-width:100%;
  border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
}
.content{
  padding:32px 40px;
  background:#fff;
  color:#111;
}

.content label{
  display:block;
  margin:10px 0 4px;
}
.content input,
.content select,
.content textarea{
  width:100%;
  padding:8px;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:14px;
  box-sizing:border-box;
}
.content h2{
  color:var(--orange);
  margin-bottom:12px;
}
.content p{
  margin-bottom:12px;
  color:#333;
}
.tech{
  background:var(--panel);
  padding:24px 40px;
  color:#111;
}
.tech h2{
  color:var(--orange);
  margin-bottom:16px;
}
.tech-grid{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.tech-item{
  flex:1;
  min-width:200px;
  background:#fff;
  border-radius:10px;
  padding:16px;
  text-align:center;
}
.project-grid{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  margin-top:20px;
}
.project-card{
  width:calc(33.333% - 14px);
  min-width:220px;
  background:#fafafa;
  border-radius:10px;
  padding:10px;
  border:1px solid #eee;
}
.project-card img{
  width:100%;
  border-radius:8px;
}
.project-card h3{
  font-size:18px;
  margin:8px 0;
}
.project-card p{
  font-size:14px;
  color:#555;
}
.contact-box{
  background:#fff;
  color:#111;
  border-radius:10px;
  padding:24px;
  text-align:center;
}
.footer{
  padding:16px 32px;
  text-align:center;
  color:rgba(255,255,255,0.8);
  font-size:13px;
}
.admin-wrapper{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#111;
}
.admin-box{
  width:420px;
  max-width:95%;
  background:#1b1b1b;
  padding:24px;
  border-radius:12px;
  color:#fff;
}
.admin-box h2{margin-bottom:16px;}
.admin-box label{display:block;margin:10px 0 4px;}
.admin-box input,
.admin-box select,
.admin-box textarea{
  width:100%;
  padding:8px;
  border-radius:6px;
  border:1px solid #444;
  background:#111;
  color:#fff;
}
.admin-box button{
  margin-top:12px;
  padding:10px 16px;
  border:none;
  border-radius:8px;
  background:var(--orange);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.admin-note{font-size:12px;color:#ccc;margin-top:8px;}
.error{color:#ff8080;font-size:13px;margin-bottom:6px;}
.success{color:#9be58f;font-size:13px;margin-bottom:6px;}


/* ===== Proje Kategorileri ===== */
.kategori-list{
  list-style:none;
  padding:0;
  margin:16px 0 8px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.kategori-list li{
  margin:0;
}
.kategori-buton{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 22px;
  border-radius:30px;
  background:var(--orange);
  color:#000;
  font-weight:700;
  font-size:18px;
  text-decoration:none;
  border:3px solid var(--orange);
}
.kategori-buton .kategori-label{
  color:#000;
}
.kategori-buton .kategori-count{
  font-weight:500;
  opacity:0.9;
}
.kategori-buton.active{
  box-shadow:0 0 0 3px rgba(255,255,255,0.6);
}
.kategori-buton .kategori-count{
  font-weight:500;
  opacity:0.9;
}
.kategori-buton:hover{
  background:var(--orange);
  color:#ffffff;
  transform:translateY(-1px);
  box-shadow:0 4px 10px rgba(0,0,0,0.15);
}
.kategori-buton.active{
  background:var(--orange);
  color:#ffffff;
}
.kategori-baslik{
  margin-top:18px;
  font-size:20px;
}

/* ===== Proje Kartı - Çoklu Görsel Slider ===== */
.project-image-wrapper{
  width:100%;
  overflow:hidden;
  border-radius:8px;
  margin-bottom:10px;
}
.project-image-strip{
  display:flex;
  width:100%;
  transition:transform 0.35s ease;
}
.project-image-strip img{
  width:100%;
  flex-shrink:0;
  border-radius:8px;
}

/* ===== İletişim Sekmeleri ===== */
.contact-tabs{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-bottom:16px;
}
.contact-tab{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--orange);
  background:#fff;
  color:var(--orange);
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  transition:background 0.2s,color 0.2s,transform 0.15s;
}
.contact-tab.active{
  background:var(--orange);
  color:#fff;
  transform:translateY(-1px);
}
.contact-panel{
  display:none;
  margin-top:4px;
}
.contact-panel.active{
  display:block;
}

/* ===== Bizi Takip Edin Bölümü ===== */
.follow{
  margin-top:32px;
}
.follow-grid{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:16px;
}
.follow-card{
  flex:1;
  min-width:180px;
  text-decoration:none;
  background:#fff;
  color:#111;
  border-radius:10px;
  padding:14px 16px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
  transition:transform 0.15s, box-shadow 0.15s;
}
.follow-card:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,0.16);
}
.follow-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:700;
  color:#fff;
}
.follow-icon.insta{
  background:radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 40%, #d6249f 70%, #285AEB 100%);
}
.follow-icon.trendyol{
  background:var(--orange);
}
.follow-text-title{
  font-size:15px;
  font-weight:700;
}
.follow-text-sub{
  font-size:13px;
  color:#555;
}

/* Mobil uyum */
@media(max-width:700px){
  .kategori-buton{
    font-size:14px;
    padding:8px 12px;
  }
  .follow-grid{
    flex-direction:column;
  }
}

@media(max-width:900px){
  .wrapper{padding:16px;}
  .hero{flex-direction:column;}
  .top{flex-direction:column;align-items:flex-start;gap:8px;}
  .project-card{width:100%;}
}

.contact-buttons{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin:20px 0;
}
.contact-card{
  display:block;
  background:var(--orange);
  color:#fff;
  padding:16px;
  border-radius:10px;
  font-size:18px;
  font-weight:600;
  text-decoration:none;
  text-align:center;
  transition:opacity 0.2s;
}
.contact-card:hover{
  opacity:0.85;
}

/* Enhanced Contact Cards */
.contact-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin:24px 0;
}
.contact-card{
  flex:1 1 calc(33% - 16px);
  min-width:220px;
  background:var(--orange);
  color:#fff;
  padding:18px;
  border-radius:14px;
  font-size:18px;
  font-weight:700;
  text-decoration:none;
  text-align:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.18);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  transition:transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 24px rgba(0,0,0,0.25);
}

/* Icons bigger */
.contact-card svg{
  width:28px;
  height:28px;
  margin-bottom:6px;
  display:block;
  margin-left:auto;
  margin-right:auto;
}

/* İş Ortaklarımız */
.partners-grid{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:16px;
  justify-content:center;
}
.partner-card{
  flex:0 1 260px;
  min-width:220px;
  background:#fff;
  color:#111;
  border-radius:10px;
  padding:14px 16px;
  text-align:center;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
}
.partner-card h3{
  margin-bottom:8px;
}
.partner-card a{
  color:var(--orange);
  text-decoration:none;
  font-size:14px;
}
.partner-card a:hover{
  text-decoration:underline;
}


.checkout-form label{
  display:block;
  margin:8px 0 4px;
}
.checkout-form input,
.checkout-form select,
.checkout-form textarea{
  width:100%;
  padding:10px;
  border-radius:6px;
  border:1px solid #ccc;
  box-sizing:border-box;
  margin-bottom:10px;
  font-size:14px;
}

.admin-box{max-width:1400px !important;width:98% !important;}


.catball{
  display:inline-block;
  padding:10px 18px;
  border-radius:25px;
  background:#ff6600;
  color:#fff;
  margin:6px;
  font-weight:600;
}
.catball:nth-child(even){
  background:#111;
  color:#ff6600;
}
.prod-thumb{
  width:100%;
  border-radius:10px;
  display:block;
}

.catball2{
 display:inline-block;
 padding:12px 22px;
 border-radius:30px;
 background:#ff6600;
 color:#000;
 margin:8px;
 font-weight:700;
 font-size:18px;
 text-decoration:none;
}
.catball2:hover{
 transform:scale(1.05);
}
