@charset "UTF-8";
/* Base Styles */
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: #333;
  background-color: #F8F8F8;
  line-height: 1.6;
}

h2 {
  text-align: center;
}

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

ul li a {
  text-decoration: none;
  color: #fff;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-25px);
  }
}
/* Header */
.logo {
  width: 220px;
  /* Logo boyutunu ayarlayın */
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  /* Ortalamak ve biraz boşluk bırakmak için */
}

.header {
  background-color: #E6332A;
  color: white;
  padding: 1rem 0;
  animation: fadeIn 2s ease-in;
}

.header h1 {
  margin: 0;
  text-align: center;
  font-style: italic;
  font-size: 4rem;
}

nav ul {
  display: flex;
  /* Elemanları yatay hizalar */
  justify-content: center;
  /* Menü öğelerini yatayda ortalar */
  align-items: center;
  /* Dikey ortalama */
  list-style: none;
  /* Liste işaretlerini kaldırır */
  padding: 0;
  /* İç boşlukları kaldırır */
  margin: 0;
  /* Dış boşlukları kaldırır */
  gap: 20px;
  /* Menü öğeleri arasına boşluk ekler */
}

nav ul li a {
  text-decoration: none;
  /* Alt çizgiyi kaldırır */
  color: white;
  /* Yazı rengini beyaz yapar */
  font-size: 1rem;
  /* Yazı boyutu */
  transition: color 0.3s ease;
  /* Hover efekti için geçiş */
}

nav ul li a:hover {
  color: #f0a500;
  /* Hover durumunda renk */
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    /* Menü öğelerini dikey sıralar */
    gap: 10px;
  }
}
.katilim h1 {
  text-align: center;
  color: #E6332A;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #E6332A, #FFD700);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: bounce 2s ease 2;
  text-align: center;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeIn 3s ease-in;
}

.btn {
  background-color: #FFD700;
  color: #333;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  animation: slideInFromLeft 2s ease-in-out;
}

.btn:hover {
  background-color: #ccac00;
}

/* About Section */
.about {
  padding: 2rem 0;
  text-align: justify;
  animation: fadeIn 2.5s ease-in;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Gallery Section */
.gallery {
  padding: 2rem 0;
  background-color: #f9f9f9;
  text-align: center;
}

.gallery-grid {
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-item {
  width: 100%;
  height: 200px;
  /* Tüm görsellerin aynı yükseklikte olması için */
  -o-object-fit: cover;
     object-fit: cover;
  /* Görsellerin kırpılmadan oturmasını sağlar */
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.15);
}

/* Lightbox */
.lightbox {
  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;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
}

/* Services Section */
.services {
  padding: 2rem 0;
  background-color: #F8F8F8;
  text-align: center;
  animation: fadeIn 3s ease-in;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

/* Contact Section */
.contact {
  padding: 2rem 0;
  background-color: #E6332A;
  color: white;
  text-align: center;
  animation: fadeIn 3.5s ease-in;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact ul {
  list-style: none;
  padding: 0;
}

.contact li {
  margin: 0.5rem 0;
}

/* Footer */
.map-container {
  width: 100%;
  max-width: 800px;
  /* Harita genişliğini sınırlandırır */
  margin: 20px auto;
  /* Ortalar ve üst-alt boşluk ekler */
  border: 2px solid #ddd;
  /* Kenarlık ekler */
  border-radius: 8px;
  /* Köşeleri yuvarlatır */
  overflow: hidden;
  /* Köşe yuvarlamayı düzgün gösterir */
}

iframe {
  display: block;
  width: 100%;
  height: 400px;
  /* Harita yüksekliği */
}

.footer {
  background-color: #a2a0a0;
  /* Footer arka plan rengi */
  padding: 20px 0;
  text-align: center;
}

.social-media {
  display: flex;
  justify-content: center;
  /* Yatayda ortalar */
  align-items: center;
  /* Dikeyde ortalar */
  margin: 20px 0;
  /* Yukarı ve aşağı boşluk ekler */
}

.social-media a {
  display: inline-block;
  width: 50px;
  /* İkon boyutu */
  height: 50px;
  background-color: #f4f4f4;
  /* Arka plan rengi */
  border-radius: 50%;
  /* Daire şekli */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.social-media a:hover {
  background-color: #f09433;
  /* Instagram renk tonu hover */
}

.social-media img {
  width: 25px;
  /* İkonun genişliği */
  height: 25px;
  filter: invert(30%) sepia(70%) saturate(300%) hue-rotate(320deg);
  /* Instagram rengine uygun filtre */
}

/* Genel stil */
#services {
  text-align: center;
  margin: 20px 0;
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.service-tabs a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.service-tabs a:hover {
  color: #0073e6;
}

/* İçerik alanı */
.service-content {
  display: none;
  /* Başlangıçta gizli */
  margin-top: 20px;
}

.full-width-image {
  width: 100%;
  height: auto;
}

.service-description {
  padding: 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-size: 1.2rem;
}

/* Font style */
.roboto-thin {
  font-family: "Roboto", serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", serif;
  font-weight: 900;
  font-style: italic;
}/*# sourceMappingURL=styles.css.map */