/* =========================================================
   GRUNDEINSTELLUNGEN
   ========================================================= */

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

body {
  font-family: system-ui, Arial, sans-serif;
  color: #c9e8d1;
  background: #000000;
  line-height: 1.5;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #287233;
  color: #000000;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-weight: bold;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  gap: 12px;
}

.nav a {
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  padding: 48px 16px;
  text-align: center;
  background: #434343;
  color: #c9e8d1;
}

.hero h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #c9e8d1;
}

.hero p {
  margin-bottom: 20px;
  color: #a3c9ad;
}


/* =========================================================
   BUTTON
   ========================================================= */

.btn {
  display: inline-block;
  background: #287233;
  color: #000000;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  padding: 40px 16px;
  color: #c9e8d1;
}

.section.alt {
  background: #0a0a0a;
  color: #c9e8d1;
}

.section.alt p {
  color: #a3c9ad;
}

.section h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #287233;
}

.section.alt h2 {
  color: #287233;
}


/* =========================================================
   KONTAKT
   ========================================================= */

#iletisim {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

#iletisim iframe {
  display: block;
  max-width: 100%;
}

#iletisim .btn {
  margin-top: 8px;
}


/* =========================================================
   HIZMETLER
   ========================================================= */

.services-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
}

.services-table tr {
  border-bottom: 1px solid #287233;
}

.services-table tr:last-child {
  border-bottom: none;
}

.services-table th,
.services-table td {
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
}

.services-table th {
  color: #287233;
  white-space: nowrap;
  width: 30%;
}

.services-table td {
  color: #a3c9ad;
}


/* =========================================================
   GALERIE
   ========================================================= */

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 9 / 16;
  background: #0a0a0a;
  border: 1px solid #287233;
  border-radius: 6px;
  overflow: hidden;
}


/* =========================================================
   VIDEOS
   ========================================================= */

.gallery-item--video {
  position: relative;
}

.gallery-item--video a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* =========================================================
   NUR IMG_1530.jpeg
   ========================================================= */

/* Der Link bekommt die komplette Größe des Rahmens */
.gallery-item:first-child a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Das JPEG wird genauso in den 9:16-Rahmen eingepasst
   wie deine Videos */
.gallery-item:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* =========================================================
   INSTAGRAM EMBED
   ========================================================= */

.ig-embed {
  width: 100%;
  height: 100%;
  border: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 20px;
  text-align: center;
  background: #287233;
  color: #000000;
  font-size: 0.85rem;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (min-width: 700px) {

  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }

}
