/* ==== GENEL ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background-color: #111;
  overflow-x: hidden;
}

/* ==== HEADER ==== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.logo-text h1 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.logo-text p {
  font-size: 14px;
  color: #ddd;
}

/* Dil Butonu */
#lang-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
#lang-btn.active {
  background-color: #d92027;
}

/* ==== NAV ==== */
nav {
  margin-top: 90px;
  background: #111;
  padding: 10px 0;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #d92027;
}

/* ==== HERO ==== */
.hero {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("assets/hero-bg.jpg") center/cover no-repeat;
  text-align: center;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 30px;
  max-width: 800px;
  margin: 0 auto 15px;
}

.hero-content p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #f1f1f1;
}

.hero-btn {
  background-color: #d92027;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.hero-btn:hover {
  background-color: #ff3b3b;
}

/* ==== HİZMETLER ==== */
.services {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 25px;
  padding: 100px 30px;
  background-color: #181818;
}

.service-card {
  background-color: #222;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  width: 320px;
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #d92027;
}

.service-card h3 {
  font-size: 20px;
  margin: 15px 0;
}

.service-btn {
  display: inline-block;
  background-color: #d92027;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: 0.3s;
}
.service-btn:hover {
  background-color: #ff3b3b;
}

/* ==== SOSYAL MEDYADA BİZ ==== */
.social-videos {
  background: #141414;
  text-align: center;
  padding: 80px 20px;
}

.social-videos h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.videos-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.videos-container iframe {
  width: 300px;
  height: 500px;
  border-radius: 15px;
  border: none;
  transition: transform 0.3s;
}
.videos-container iframe:hover {
  transform: scale(1.05);
}

/* ==== FOOTER ==== */
footer {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 60px 20px;
  background: linear-gradient(180deg, #000, #333);
}

footer h2 {
  font-size: 26px;
  color: #fff;
}

footer p, footer h3 {
  color: #ddd;
  margin-bottom: 10px;
}

.footer-center h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons img {
  width: 35px;
  transition: 0.3s;
}
.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  background-color: #000;
  text-align: center;
  padding: 15px;
  color: #aaa;
  font-size: 14px;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 15px;
  }

  nav ul {
    flex-direction: column;
  }

  .services {
    flex-direction: column;
    align-items: center;
  }

  .videos-container iframe {
    width: 90%;
  }
}
.about-hero {
  position: relative;
  background: url("assets/urfa-bg.jpg") center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

/* Karanlık filtre (resmi karartmak için) */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Başlık yazısı önde görünsün */
.about-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.about-hero h2 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.9;
}


.about-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 80px 10%;
  background: #111;
  color: #fff;
}
.about-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about-block.left-text .text { order: 1; }
.about-block.left-text .image { order: 2; }
.about-block.right-text .text { order: 2; }
.about-block.right-text .image { order: 1; }

.about-block .text {
  flex: 1;
  line-height: 1.8;
}
.about-block .text h3 {
  color: #d92027;
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.about-block .image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.about-block .image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.about-block .image img:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .about-block {
    flex-direction: column;
  }
}

