body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

header {
  background-color: #fff;
  padding: 20px 0;
}

.logo {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

nav {
  display: flex;
  gap: 20px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  background: linear-gradient(135deg, #fbb1c8, #ffe3ec);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-btn {
  background: #fff;
  color: #f06292;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #f06292;
  color: #fff;
}

.about {
  padding: 60px 20px;
  background: #ffe3ec;
}

.about h3,
.gallery h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #d81b60;
}

.gallery {
  padding: 60px 20px;
}

.prev,
.next {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #d81b60;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-img {
  max-width: 90%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.popup-prev,
.popup-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.popup-prev {
  left: 30px;
}
.popup-next {
  right: 30px;
}

footer {
  background: #f8b7d1;
  padding: 30px 20px;
  text-align: center;
  color: white;
}

footer .social a {
  margin: 0 10px;
  color: white;
  font-weight: 500;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-box {
  max-height: 100px;
  width: auto;
  display: flex;
  align-items: center;
}

.logo-box img {
  max-height: 100px;
  display: block;
}

/* Slider alanı */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.photo-viewport {
  width: 100%;
  max-height: 480px;
  height: clamp(260px, 48vw, 480px);
  overflow: hidden;
  position: relative;
}
.photo-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}
.photo-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f8f8f8;
  cursor: pointer;
}

.slider .prev,
.slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.slider .prev {
  left: 8px;
  z-index: 1;
}
.slider .next {
  right: 8px;
}

.slider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 10px;
}
.slider-dots button {
  width: 8px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: #e4a2bf;
  opacity: 0.55;
  cursor: pointer;
}
.slider-dots button[aria-current="true"] {
  opacity: 1;
  background: #d81b60;
}

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.popup.open {
  display: flex;
}
.popup-img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
}
.popup .close,
.popup-prev,
.popup-next {
  position: absolute;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  border: 0;
  background: transparent;
}
.popup .close {
  top: 16px;
  right: 20px;
}
.popup-prev {
  left: 24px;
}
.popup-next {
  right: 24px;
}
