/* Genel stiller */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bs-primary: #595747 !important;
}

/* Butonlar */
.btn-primary,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:visited {
  background-color: #595747 !important;
  border-color: #d9d5ad !important;
}
.btn-primary:hover {
  background-color: #595747 !important;
  border-color: #d9d5ad !important;
}

/* Yazı fontu */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


.eapps-instagram-feed-title {
  font-family: "Roboto", sans-serif;;
  color: #595747;
}

.list-group-item {
  background-color: inherit;
  border: 0;
}

.prevent-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  background-color: #f5f2cd;
  color: #3f3e32;
  font-family: "Roboto", sans-serif;
  text-align: center;
  padding: 20px;
}

.container {
  margin-top: 100px;
  margin-bottom: 100px;
  max-width: 800px;
  width: 100%;
}

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.8rem;
}
h1, h2, h3, h4 {
  color: #595747;
}

.navbar-brand {
  font-weight: bold;
  font-size: 28px;
  color: #595747;
}

.navbar-nav .nav-link:hover {
  text-decoration: underline;
}

p {
  font-size: 1rem;
  margin: 10px 0;
  color: gray;
}

.logo img {
  width: 300px;
  max-width: 300px;
  height: auto;
  margin-top: 20px;
}

@media (max-width: 768px) {
  h1 {
      font-size: 1.8rem;
  }
  p {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  h1 {
      font-size: 1.5rem;
  }
  p {
      font-size: 0.8rem;
  }
}

/* Footer */
footer {
  background-color: #595747;
  color: #ecefd0;
  padding-top: 80px;
  padding-bottom: 50px;
  bottom: 0;
  width: 100%;
  text-align: center;
}

footer a {
  color: #ecefd0;
  text-decoration: none;
  margin: 0 10px;
}

footer p {
  color: #ecefd0;
}

footer i {
  font-size: 1.5rem;
  margin: 0 10px;
}

.contact-info {
    color: #595747;
    font-size: 1.2rem;
}

.contact-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #595747;
}

.contact-item a {
    text-decoration: none;
    color: #595747;
}

/* Harita */
.map-container {
  max-width: 800px;
  margin: auto;
  padding: 10px;
  border: 3px solid #b3b08f;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

@media (max-width: 768px) {
  .map-container {
    max-width: 90%;
  }
  .map-container iframe {
    height: 300px;
  }
}

/* Karusel */
.carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
