:root {
  --gold: #d4af37;
  --black: #101010;
  --dark-gray: #333;
  --light-gray: #f0f0f0;
  --white: #ffffff;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-gray);
}

/* Header Styles */
.navbar {
  background-color: var(--black);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-brand img {
  height: 50px;
  margin-right: 10px;
}

.navbar-brand span {
  color: var(--white);
  font-weight: bold;
  font-size: 1.4rem;
}

.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  margin-left: 15px;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--gold);
}

.navbar-toggler {
  border-color: var(--gold);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('placeholder-hero.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 0;
  margin-bottom: 50px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Search Bar */
.search-container {
  background-color: rgba(255,255,255,0.9);
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.search-btn {
  background-color: var(--gold);
  color: var(--black);
  font-weight: bold;
  border: none;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background-color: #c4a030;
  color: var(--black);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--black);
  display: inline-block;
  font-weight: bold;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--gold);
  margin: 10px auto 0;
}

/* Property Cards */
.property-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 30px;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.property-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.property-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--gold);
  color: var(--black);
  padding: 5px 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
}

.property-info {
  padding: 20px;
}

.property-title {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--black);
  font-weight: bold;
  display: flex;
  justify-content: center;
  min-height: 3.7em;
  align-items: center;
  text-align: center;
}

.property-location {
  color: #666;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.property-location i {
  color: var(--gold);
  margin-right: 5px;
}

.property-category i {
  color: var(--gold);
  margin-right: 5px;
}

.property-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--gold);
  margin: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.property-features {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 15px;
  font-size: 0.9rem;
}

.property-features i {
  color: var(--gold);
  margin-right: 5px;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: var(--white);
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content h2 {
  color: var(--black);
  margin-bottom: 25px;
  font-weight: bold;
  position: relative;
}

.about-content h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--gold);
  margin-top: 15px;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

/* Gold Button */
.gold-btn {
  background-color: var(--gold);
  color: var(--black);
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.gold-btn:hover {
  background-color: #c4a030;
  color: var(--black);
  text-decoration: none;
}

/* Footer */
footer {
  background-color: var(--black);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-section h5 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-contact-item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact-item i {
  color: var(--gold);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid #333;
  color: #aaa;
  font-size: 0.9rem;
}


.btn-primary {
  background-color: #FFB800; /* Sarı rengi */
  border-color: #FFB800; /* Sarı rengi */
  color: #000000; /* Siyah metin */
  padding: 10px 20px; /* Butonun boyutlarını ayarlıyoruz */
  border-radius: 5px; /* Butonun köşelerini yuvarlatıyoruz */
  font-size: 16px;
  text-align: center;
}

.btn-primary:hover {
  background-color: #D49A00; /* Hover durumunda daha koyu sarı */
  border-color: #D49A00;
  color: #FFFFFF; /* Hover durumunda metin rengi beyaz olacak */
}

.btn-primary:focus {
  outline: none; /* Odaklanıldığında kenarlık kaybolur */
  box-shadow: 0 0 0 0.2rem rgba(255, 184, 0, 0.5); /* Focus rengini belirliyoruz */
}

.button_div {
justify-content: center;
display: flex;
align-items: center;
padding: 25px;
}

.property-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
  margin-top: 10px;
  min-height: 6em;
}

.property-card-details {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  display: flex;
justify-content: space-around;
}
.property-info h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
.property-price {
  font-size: 20px;
  font-weight: bold;
}
.swiper {
  margin-bottom: 20px;
}
.property-details {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.property-details p {
  margin: 10px 0;
  font-size: 16px;
}

.details-button {
  display: flex;
  justify-content: space-around;;
}