body {
  margin: 0;
  padding-top: 50px;
  padding-bottom: 50px;
}

.editorial-bar {
  position: fixed;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: #f8f6ee;
  color: #111;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 9999;
}

.top-bar {
  top: 0;
  border-bottom: 1px solid #111;
}

.bottom-bar {
  bottom: 0;
  border-top: 1px solid #111;
}

.editorial-bar .center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #F3F1EC;
  color: #111;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  letter-spacing: 4px;
}

.hero-text p {
  color: #800020;
  margin: 20px 0;
}

.name {
  font-size: 22px;
  font-weight: 500;
}

.hero-image img {
  width: 100%;
  border-radius: 40% 60% 50% 50%;
}




.hero-text,
.hero-image {
  position: relative;
  z-index: 2;
}

.about {
  padding: 100px 80px;
}

.about h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about img {
  width: 100%;
  border-radius: 30px;
}

.projects {
  padding: 80px;
}

.projects h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card img {
  width: 100%;
  border-radius: 20px;
}

.card h3 {
  margin-top: 15px;
  font-weight: 500;
}

footer {
  padding: 40px;
  text-align: center;
  font-size: 14px;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* POPUP */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 40px 50px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: popupFade 0.6s ease;
}

@keyframes popupFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f3f1ec; }
::-webkit-scrollbar-thumb { background: #800020; border-radius: 10px; }

* {
  scrollbar-width: thin;
  scrollbar-color: #800020 #f3f1ec;
}

/* GALERİ */
.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.gallery img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* İLETİŞİM */
.contact {
  text-align: center;
  padding: 60px 40px;
  font-size: 14px;
}
.bg-letter {
  width: 320px !important;
}
