.navbar {
  display: flex;
  align-items: center; 
  background-color: #fff;
  padding: 10px 20px; 
  border-bottom: 1px solid #ddd;
}

.navbar img {
  height: 50px;
  margin-left: 60px;
}

.navbar ul {
  display: flex;
  align-items: center; 
  list-style: none;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: #555;
  padding: 10px 20px; 
  margin-left: 5px;
  cursor: pointer;
  font-size: 18px; 
  letter-spacing: 0.5px;
  font-weight: 300;
  transition: background-color 0.3s;
}

.navbar ul li a:hover {
  color: #007bff;
}

/* Dropdown içeriği */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Dropdown içindeki liste elemanları */
.dropdown-content .dropdown-content {
  width: 200px;
}

.dropdown-content .dropdown-content a {
  
  padding: 10px;
  display: block;
  color: #555;
  text-decoration: none;
  white-space: nowrap;  
}

.dropdown-content .dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #007bff;
}

/* Dropdown fareyle üzerine gelindiğinde açılır */
.dropdown:hover .dropdown-content {
  display: block;
}
.auth-buttons {
  display: flex; /* Dikey yerleştirme */
  align-items: center; /* Dikey hizalama */
  margin-left: auto; /* Auth butonlarını sağa itmek için */
}

.auth-button {
  text-decoration: none;
  background-color: #007bff; /* Mavi arka plan */
  color: white; /* Beyaz yazı rengi */
  padding: 10px 15px; /* İç boşluk */
  border-radius: 5px; /* Yuvarlak köşeler */
  margin-left: 10px; /* Soldan boşluk */
  transition: background-color 0.3s; /* Hover efekti için geçiş */
}

.auth-button:hover {
  background-color: #0056b3; /* Hover sırasında daha koyu mavi */
}
.welcome-message {
  display: inline-block; /* Yan yana gösterme */
  padding: 10px 15px; /* İç boşluk */
  background-color: #f0f8ff; /* Açık mavi arka plan */
  border-radius: 5px; /* Yuvarlak köşeler */
  color: #007bff; /* Mavi metin rengi */
  font-size: 16px; /* Yazı boyutu */
  font-family: 'Arial', sans-serif; /* Yazı tipi */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
  transition: background-color 0.3s; /* Arka plan rengi geçiş efekti */
}

.welcome-message:hover {
  background-color: #e6f7ff; /* Hover sırasında daha açık mavi arka plan */
}
.mobile-navbar {
  display: none; /* Başlangıçta görünmez */
  flex-direction: column;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo ve menü simgesi için ortak stil */
.mobile-navbar .logo-container {
  position: relative;
}

/* Logo stili */
.mobile-logo img {
  position: absolute;
  top: 10px;
  width: 150px;
  height: 50px;
}

/* Menü simgesi */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Dikey ortala */
  cursor: pointer; /* Fareyle üzerine gelindiğinde işaretçi değişimi */
}

/* Menü simgesi çubukları */
.menu-toggle .bar {
  width: 30px; /* Çubuk genişliği */
  height: 3px; /* Çubuk yüksekliği */
  background-color: #333; /* Çubuk rengi */
  margin: 3px 0; /* Çubuklar arasında boşluk */
}

/* Navigasyon listesi */
.nav-list {
  display: none; /* Varsayılan olarak gizli */
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Açıldığında nav-list'in görünmesini sağlar */
.nav-list.active {
  display: flex; /* Menü açıldığında görünür */
}


/* Submenu içeriği */
.submenu-content {
  display: none; /* Varsayılan olarak gizli */
  list-style: none;
  padding-left: 0; /* Soldan boşluğu sıfırla */
  transition: all 0.3s ease;
}

/* Submenu açık olduğunda */
.submenu-content.open {
  display: block; /* Açıldığında tüm içeriği göster */
}


/* Ana menü ve submenu öğeleri */
.nav-list li {
  padding: 10px 0;
}

.nav-list li a {
  text-decoration: none;
  color: #333;
  display: block; /* Linklerin blok olarak hizalanması için */
  padding: 10px 0; /* Bağlantılara iç boşluk eklenmesi */
  margin: 0; /* Kenar boşluklarını sıfırla */
}

.nav-list li:hover .submenu-content {
  display: block; /* Ana menü öğesi üzerine gelindiğinde submenu'yi aç */
}

 

.submenu-content li {
  padding: 0; /* Submenu öğeleri için yukarıdan aşağıya boşluk sıfırlama */
}

.submenu-content li a {
  padding: 10px 5px; /* Submenu bağlantılarına iç boşluk eklenmesi */
  margin-left: 0; /* Submenu öğelerinin soldan kaymamasını sağla */
}
.arrow {
  margin-left: 5px; /* Ok simgesi ile metin arasında boşluk bırak */
  display: inline-block; /* Dönüş animasyonu için inline-block yap */
  transition: transform 0.3s ease; /* Dönüş animasyonu için geçiş efekti */
}

.submenu.open .arrow {
  transform: rotate(180deg); /* Submenu açık olduğunda ok simgesini 180 derece döndür */
}

@media (max-width: 768px) {
  input[type="text"], input[type="email"], textarea {
    width: 100%!important;
  }
  .form-group { 
    margin-right: 0px!important;
}
  .content-container-hakkimda {
    flex-direction: column;
  }
  .navbar {
    display: none; /* Mobilde masaüstü menüsünü gizle */
  }

  .mobile-navbar {
    display: flex; 
  }

  .nav-list.active {
    display: flex; /* Açıldığında göster */
  }

  .menu-toggle {
    margin-left: auto; /* Sağda yerleştir */
  }
}
  .page-content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
  }
  
  .main-content {
    width: 65%;  
  }
  
  .sidebar {
    width: 30%;
    padding-left: 20px;
  }
  
  .main-card-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;  
  }
  
  .main-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;  
  }
  .main-card a{
    text-decoration: none;
  }
  .card {
    width: 100%;
    height: 480px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px; 
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    cursor: pointer;
}
 
.card:hover img {
    transform: scale(1.1); 
    transition: transform 0.8s ease-in-out;  
}

.card img {
    width: 100%;
    height: 250px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    object-fit: cover;
    transition: transform 0.8s ease-in-out;  
}

 
  .card .card-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .card .card-info h3 {
    font-size: 20px; 
    font-weight: 700; 
    color: #333; 
    margin-bottom: 8px; 
    line-height: 1.4; 
    transition: color 0.3s ease; 
}

.card .card-info p {
    font-size: 18px; 
    color: #666;
    margin: 0; 
    line-height: 1.5; 
    transition: color 0.3s ease; 
}

.card:hover .card-info h3 {
    color: #007bff; 
}

.card:hover .card-info p {
    color: #333; 
}
@media (max-width: 768px) {
  .page-content {
      flex-direction: column;
      padding: 10px;
  }

  .main-content, .sidebar {
      width: 100%; /* Mobilde tam genişlik */
      padding-left: 0;
  }

  .main-card {
      grid-template-columns: 1fr; /* Kartlar tek sütun olur */
  }

  .card {
      height: auto; /* Yüksekliği esnek yapar */
  }
}
.additional-infos {
  font-size: 15px; /* Bilgi metni boyutu */
  color: #999; /* Metin rengi */
  margin-top: 10px; /* Üstten boşluk ekle */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.additional-infos span {
  display: flex;
  align-items: center;
}

.additional-infos i {
  margin-right: 5px; /* İkon ile metin arasında boşluk */
  color: #007bff; /* İkon rengi */
}
.additional-infoss {
  font-size: 15px; /* Bilgi metni boyutu */
  color: #999; /* Metin rengi */
  margin-top: 10px; /* Üstten boşluk ekle */
  display: flex;
  justify-content: space-between;
  align-items: center;
padding: 10px;
}

.additional-infoss span {
  display: flex;
  align-items: center;
}

.additional-infoss i {
  margin-right: 5px; /* İkon ile metin arasında boşluk */
  color: #007bff; /* İkon rengi */
}
.button-container {
    display: flex;
    justify-content: center;  
    width: 100%;
    margin-top: 20px;
}

.content-button {
    position: relative;  
    margin-top: 20px;
    width: 200px;
    height: 50px;
    background-color: #fff;
    color: #007bff;
    font-size: 16px;
    border: 1px solid #007bff;
    overflow: hidden;  
    transition: color 0.4s ease;  
    z-index: 1;  
    cursor: pointer;  
}

 .content-button:hover {
    color: #fff; 
}

 
.content-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #007bff;  
    clip-path: polygon(0 0, 0 100%, 10% 100%, 100% 0); 
    transform: translateX(-100%);  
    transition: transform 0.4s ease, clip-path 0.4s ease;  
    z-index: -1;  
}

 
.content-button:hover::before {
    transform: translateX(0);  
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);  
}

  
  .sidebar h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    padding: 15px;
    text-align: center;
  }
  
  .small-card {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    transition: box-shadow 0.3s;
    cursor: pointer;
  }
  
  .small-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .small-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .small-card-info h4 {
    font-size: 16px;
    color: #333;
  }
  .small-card:hover .small-card-info h4{
    color: #007bff; 
  }
  .small-card-info p {
    font-size: 14px;
    color: #777;
  }
  .swiper-container {
    width: 90%;
    margin-left: 3.5%;
    padding: 20px 0;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 100px; 
    position: relative;  
}


.swiper-slide {
    width: 212px; 
    height:auto; 
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    
}

.swiper-slide:hover {
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.8);  
    transform: scale(1.05);  
}

.swiper-slide img {
    width: 100%;
    height: 250px; 
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    object-fit: cover;  
   
}

.swiper-slide .info {
    padding: 5px; 
    margin-left: 20px;
    flex: 1;
}

.swiper-slide .info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px; 
  transition: color 0.3s ease;
}

.swiper-slide .info .price {
  font-size: 18px;
  color: #666;
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.swiper-button-next {
    right: 0px !important; 
    top:250px !important;
}

.swiper-button-prev {
    left: 0px !important; 
    top:250px !important;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;  
    top: 60%!important;  
    transform: translateY(-50%);  
    z-index: 10;  
    width: 10px !important;  
    height: 10px !important;  
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007bff !important;
    border-radius: 50%;
    padding: 20px !important;  
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 23px !important;  
    line-height: 1 !important;  
    color: #fff;
}
.footer {
    background-color: #ddd;
    color: #333;
    padding: 40px 0;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;  
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-container > div {
    flex: 1;
    margin: 20px;
    min-width: 200px;  
}

.footer-about {
    flex-basis: 250px;  
}

 

.footer-logo img {
    max-width: 200px;  
    height: auto;
    position: relative;
    bottom: 10px;
}

.footer-links, .footer-contact, .footer-social {
    flex-basis: 200px;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #007bff;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #007bff;
}

.footer-contact p {
    margin: 0 0 10px 0;
}

.footer-social .social-icons {
    display: flex;
    gap: 10px;
}

.footer-social .social-icons a {
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 17px;
    color: #777;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;  
  max-width: 1200px;  
  margin: 0 auto;  
  padding: 40px;  
  background-color: #ffffff;  
  border-radius: 12px; 
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);  
  margin-top: 50px;
}

 .form-container {
  flex: 1; 
  padding: 20px;  
  margin-right: 30px;  
  font-family: 'Roboto', sans-serif;  
}

.form-container h2 {
  font-size: 28px;  
  font-weight: 700;  
  color: #2c3e50;  
  margin-bottom: 20px; 
}

.form-group {
  margin-bottom: 15px;  
}

.form-group label {
  display: block;  
  margin-bottom: 8px;  
  font-weight: 600;  
  color: #34495e;  
}

.form-group input,
.form-group textarea {
  width: 100%; 
  padding: 10px;  
  border: 1px solid #bdc3c7;  
  border-radius: 4px;   
  font-size: 16px;  
  color: #2c3e50;  
  background-color: #ecf0f1; 
  transition: border-color 0.3s ease;  
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2980b9; 
  outline: none;
}


.submit-button {
  position: relative;
  margin-top: 20px;
  width: 200px;
  height: 50px;
  background-color: #fff;
  color: #007bff;
  font-size: 16px;
  border: 1px solid #007bff;
  overflow: hidden; 
  transition: color 0.4s ease; 
  z-index: 1; 
  cursor: pointer; 
}


.submit-button:hover {
  color: #fff;
}


.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007bff; 
  clip-path: polygon(0 0, 0 100%, 10% 100%, 100% 0);
  transform: translateX(-100%);
  transition: transform 0.4s ease, clip-path 0.4s ease; 
  z-index: -1;
}


.submit-button:hover::before {
  transform: translateX(0); 
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0); 
}


.info-container {
  flex: 1; 
  padding: 20px; 
  font-family: 'Roboto', sans-serif;
  color: #333; 
}

.info-container h2 {
  font-size: 28px; 
  font-weight: 700; 
  color: #2c3e50; 
  margin-bottom: 20px; 
}

.info-group {
  margin-bottom: 20px; 
}

.info-group h4 {
  font-size: 20px; 
  font-weight: 600;
  color: #007bff;
  margin-bottom: 10px; 
}

.info-group p {
  font-size: 16px;
  line-height: 1.6; 
}

.info-group a {
  color: #555; 
  text-decoration: none; 
  transition: color 0.3s ease; 
}

.info-group a:hover {
  color: #1a6b8f; 
}
.map-container {
  margin-top: 40px; 
  background-color: #ffffff;
  border-radius: 12px;

  font-family: 'Roboto', sans-serif;
  color: #333;
}



.map {
  width: 100%;
  height: 400px;
  border: 1px solid #bdc3c7;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.content-container-hakkimda {
  display: flex;
  flex-wrap: wrap; 
  align-items: flex-start; 
  justify-content: space-between;
  
  padding: 40px; 
  background-color: #f9f9f9; 
  
 
}


.text-content-hakkimda {
  flex: 1; 
  margin-right: 30px; 
  font-family: 'Roboto', sans-serif;
  color: #333; 
}

.text-content-hakkimda h1 {
  font-size: 36px; 
  font-weight: 700; 
  color: #2c3e50; 
  margin-bottom: 30px; 
}

.text-content-hakkimda h3 {
  font-size: 24px; 
  font-weight: 600; 
  color: #007bff; 
  margin-bottom: 20px;
}

.text-content-hakkimda h4 {
  font-size: 20px;
  font-weight: 500; 
  color: #34495e; 
  margin-bottom: 15px; 
}

.text-content-hakkimda h5 {
  font-size: 18px; 
  font-weight: 500; 
  color: #7f8c8d;
  margin-bottom: 10px; 
}

.text-content-hakkimda p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.text-content-hakkimda ul {
  padding-left: 20px; 
  margin-bottom: 20px; 
}

.text-content-hakkimda li {
  margin-bottom: 10px; 
  color: #555; 
}


.image-container-hakkimda {
  flex: 1;
  display: flex;
  justify-content: center; 
  align-items: center; 
  max-width: 500px; 
}

.image-container-hakkimda img {
  max-width: 100%; 
  height: 700px; 
  
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.image-container-hakkimda img:hover {
  transform: scale(1.05); 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}
.image-containers {
  position: relative; 
  width: 100%;
  height: 300px; 
}

.image-containers img {
  width: 100%;
  height: 300px; 
}
.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1; 
}


.text-overlays {
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  color: white; 
  text-align: center; 
  z-index: 2; 
}

.text-overlays h2 {
  margin-bottom: 20px;
  font-size: 48px; 
  font-weight: 600; 
  color: #fffcfc; 
  letter-spacing: -1px;  
  text-transform: uppercase;  
}
.comment-section {
  max-width: 800px; 
  font-family: Arial, sans-serif;
}

.comment, .reply {  
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.comment-header, .reply-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.user-info {
  display: flex;
  flex-direction: column;  
}

.log, .name {
  font-weight: bold;
  color: #333;
}

.log {
  color: #0073e6;
}

.date {
  font-size: 12px;
  color: #777;
}

.comment-text, .reply-text {
  font-size: 14px;
  color: #555;
}

.reply { 
  background-color: #f1f1f1;
}

.reply-header .log {
  color: #28a745;
}

.comment-form {
  max-width: 800px;
  margin: 20px;
  font-family: Arial, sans-serif;
}

.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
  margin-right: 50px;
}

.form-group:last-child {
  margin-right: 0;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

input[type="text"], input[type="email"], textarea {
  width: 80%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
}

textarea {
  resize: none;
}

.submit-btn {
  background-color: #0073e6;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.submit-btn:hover {
  background-color: #005bb5;
}
