* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('https://cdn.dynamicwallpaper.club/wallpapers/phvd4a81fa/thumbs/1600/0.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 100px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 100px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  height: 50px;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
  gap: 3rem;
  margin-left: auto;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #ffb6c1;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 2px;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
}

.nav-links a:hover {
  background-color: #f0f0f0;
  color: #e9967a;
  text-shadow: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.content h1 span {
  color: #ffb6c1; /* Yeşil (#3cb371) yerine bebek pembesi rengi */
}

.content p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.button {
  background-color: #ffb6c1; /* Yeşil (#3cb371) yerine bebek pembesi rengi */
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.button:hover {
  background-color: #e9967a; /* Yeşil hover rengi (#2e8b57) yerine daha koyu bir pembe */
}

section {
  padding: 5rem 2rem;
  text-align: center;
}

.media {
  background-color: #f8f8ff;
  color: #000
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem;
}

.gallery-item {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 182, 193, 0.6); /* Yeşil gölge (#3cb371) yerine pembe gölge */
}

.download {
  background-color: #ffffff;
  color: #000;
  text-align: center;
  padding: 5rem 2rem;
}

.download h2 {
  font-size: 2rem;
  color: #ffb6c1; /* Yeşil (#3cb371) yerine bebek pembesi rengi */
  margin-bottom: 1rem;
}

.download p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 182, 193, 0.3); /* Yeşil gölge (#00ff00) yerine pembe gölge */
  animation: fadeIn 0.3s ease-in-out;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #ffb6c1; /* Yeşil (#3cb371) yerine bebek pembesi rengi */
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

footer {
  background-color: #f0f0f0;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
}