/* =========================================================
   GENEL AYARLAR
   ========================================================= */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  align-items: center;
  position: relative;
  height: 70px;
}

/* Logo */
.logo {
  position: absolute;
  left: 20px;
}
.logo img {
  height: 120px;
}

/* Menü Ortada */
.menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}
.menu a:hover {
  color: #1E88E5;
}

/* =========================================================
   SOSYAL MEDYA İKONLARI
   ========================================================= */
.menu .social-links {
  display: flex;
  align-items: center;
  gap: 45px;
}

.menu .social-links img {
  width: 32px;
  height: 32px;
  border-radius: 15px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu .social-links img:hover {
  transform: scale(1.15);
  opacity: 0.85;
}

/* =========================================================
   DİL SEÇİCİ
   ========================================================= */
.lang-switcher {
  display: inline-block;
  white-space: nowrap;
}

.lang-switcher a {
  margin: 0 3px;
  font-weight: 500;
}

.lang-switcher a:hover {
  text-decoration: underline;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
}

.hero picture,
.hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0 20px;
  max-width: 90%;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

.btn {
  background: #1E88E5;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #1565C0;
}

/* =========================================================
   HAKKIMIZDA
   ========================================================= */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 50px 0;
}

.about-text {
  flex: 1;
}

.about img {
  border-radius: 10px;
  object-fit: cover;
  max-height: 620px;
}

/* =========================================================
   HİZMETLER
   ========================================================= */
.services {
  text-align: center;
  padding: 50px 0;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.card {
  flex: 1 1 30%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* =========================================================
   GALERİ
   ========================================================= */
.gallery {
  text-align: center;
  padding: 50px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* =========================================================
   İLETİŞİM
   ========================================================= */
.contact {
  padding: 50px 0;
}

.contact-info p {
  margin: 5px 0;
}

.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1E88E5;
  outline: none;
  box-shadow: 0 0 4px rgba(30, 136, 229, 0.3);
}

.contact-form button {
  background: #43A047;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #2e7d32;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  text-align: center;
  padding: 20px;
  background: #1E88E5;
  color: #fff;
  margin-top: 30px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* =========================================================
   WHATSAPP BUTONU
   ========================================================= */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  text-decoration: none;
  transition: background 0.3s ease;
}
.whatsapp-button:hover {
  background: #1EBE5A;
}
.whatsapp-button img {
  width: 32px;
  height: 32px;
}

/* =========================================================
   HAMBURGER MENÜ (Mobil)
   ========================================================= */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1100;
}

/* =========================================================
   RESPONSIVE TASARIM
   ========================================================= */
@media (max-width: 768px) {
  .menu {
    position: static;
    transform: none;
    margin-left: auto;
  }

  .menu ul {
    flex-direction: column;
    display: none;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .menu ul.show {
    display: flex;
  }

  .about {
    flex-direction: column;
  }

  .service-cards {
    flex-direction: column;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero picture, 
  .hero img {
    height: auto;
    max-height: 300px;
  }

  .logo img {
    height: 120px;
  }

  .menu .social-links {
    justify-content: center;
    margin: 10px 0;
  }
}
