/* GENEL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Futura', sans-serif;
  background: white;
  color: black;
}

.header {
  padding: 30px 40px 10px;
  text-align: center; /* ORTALAR */
}

.header h1 {
  font-size: 22px;
  font-weight: normal;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 0 40px 30px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-right: 20px;
}

.nav-links a {
  text-decoration: none;
  color: black;
}

.instagram-btn {
  text-decoration: none;
  color: black;
}

/* GALERİ */
/* GALERİ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 0 40px 40px;
}

.gallery-item img {
  width: 100%;
  display: block;

/* HOVER */
.gallery-item img:hover {
  opacity: 0.8;
  transition: 0.3s;
}

/* ABOUT */
/* ABOUT SAYFASI */
.about-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

/* PROFİL FOTO */
.about-image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%; /* yuvarlak */
  margin-bottom: 40px;
}

/* METİN */
.about-text {
  max-width: 500px;
  text-align: center;
  line-height: 1.8;
  padding: 0 20px;
}

.about-text p {
  margin-bottom: 20px;
}

/* LINKLER */
.about-text a {
  color: black;
  text-decoration: underline;
}