/* ===== RESET & GENEL ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f4f6f8;
  color: #1f2933;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== ÜST BAR ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, background 0.3s;
}

.topbar:hover {
  background: rgba(0,0,0,0.75);
}

.topbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}

.menu a {
  color: #fff;
  margin-left: 24px;
  font-size: 14px;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #c9a24d;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  height: 70vh;
  margin-top: 70px;
  background: url("../img/anasayfa.jpg") center center / cover no-repeat;
  position: relative;
  min-height: 500px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  max-width: 600px;
  padding-left: 80px;
  color: #fff;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.2;
  margin: 0;
}

.hero p {
  margin-top: 20px;
  font-size: 16px;
  color: #e5e7eb;
}

/* ===== BUTON ===== */
.btn-primary {
  margin-top: 30px;
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid #c9a24d;
  color: #c9a24d;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #c9a24d;
  color: #111;
}

/* ===== SECTION ===== */
.section {
  max-width: 1100px;
  margin: auto;
  padding: 80px 60px;
  background: #fff;
}

.section.about {
  background: #f9fafb;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

/* ===== HUKUK ALANLARI ===== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.area-box {
  display: block;
  background: #fff;
  padding: 30px;
  text-align: center;
  font-weight: 600;
  border-top: 4px solid #b89b5e;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.area-box:hover {
  transform: translateY(-5px);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid #eee;
  padding: 30px 60px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* ===== MOBIL & TABLET ===== */
@media (max-width: 768px) {

  .topbar-inner {
    padding: 14px 16px;
  }

  .logo {
    font-size: 18px;
  }

  .menu a {
    margin-left: 14px;
    font-size: 13px;
  }

  .hero {
    height: 80vh; /* calc hatası kaldırıldı */
    margin-top: 60px;
    min-height: 400px;
  }

  .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .section {
    padding: 60px 20px;
  }

  .section h2 {
    font-size: 24px;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .area-box {
    padding: 24px;
    font-size: 15px;
  }

  footer {
    padding: 24px 20px;
  }
}

/* ===== BLOG ===== */
.page-title{
    text-align:center;
    margin:40px 0 25px;
    color:#1f2933;
}

.lang-switch{
    text-align:center;
    margin-bottom:35px;
}

.lang-switch a{
    padding:8px 16px;
    margin:0 5px;
    border:1px solid #1f2933;
    color:#1f2933;
    font-size:14px;
    border-radius:4px;
    transition:0.3s;
}

.lang-switch a:hover{
    background:#1f2933;
    color:#fff;
}

.article{
    background:#fff;
    padding:30px;
    margin-bottom:30px;
    border-radius:6px;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.article-category{
    display:inline-block;
    font-size:13px;
    margin-bottom:8px;
    color:#b89b5e;
    font-weight:600;
}

.article-title{
    margin-top:5px;
    color:#0f172a;
    font-size:22px;
}

.article-content,
.article p{
    color:#374151;
    line-height:1.8;
    font-size:15px;
    margin-top:15px;
    word-wrap:break-word;
}

/* ===== MAP ===== */
.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== TOPBAR HIDE ===== */
.topbar.hide {
  transform: translateY(-100%);
}

/* ===== PREMIUM CONTACT ===== */
.premium-contact {
    background: #111;
    color: #fff;
    padding: 80px 20px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 30px;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1c1c1c;
    padding: 25px 35px;
    border-radius: 14px;
    min-width: 280px;
    transition: all 0.3s ease;
}

.contact-box:hover {
    background: #c8a75e;
    color: #000;
    transform: translateY(-6px);
}

.contact-box span {
    font-size: 13px;
    opacity: 0.7;
    display: block;
}

.contact-box p {
    margin: 5px 0 0 0;
    font-size: 16px;
    font-weight: 500;
}

.icon {
    font-size: 24px;
}
