

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #f2f4f8, #ffffff);
  color: #1f1f1f;
}

.proje-wrapper {
  max-width: 1400px;
  margin: 80px auto;
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #ffffff, #f8fafc);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.proje-hero {
  text-align: center;
  margin-bottom: 50px;
}

.proje-hero h1 {
  font-size: 40px;
  color: #1e6e5c;
  margin-bottom: 12px;
}

.proje-hero p {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.proje-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.proje-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.proje-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.proje-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  font-size: 20px;
  color: #1e6e5c;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 15px;
  color: #666;
}

.instagram-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.instagram-section h2 {
  font-size: 32px;
  color: #1e6e5c;
  margin-bottom: 40px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.instagram-gallery-section {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.instagram-gallery-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1e6e5c;
}

.instagram-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.instagram-gallery-grid blockquote.instagram-media {
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.instagram-gallery-grid blockquote.instagram-media:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}


