/* Reset ve Temel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  background-color: #f7f9fc;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  background-color: #7b141b; /* Bordo ana renk */
  z-index: 1100;
  box-shadow: 0 2px 6px rgba(123, 20, 27, 0.8);
  height: 90px;
  display: flex;
  align-items: center;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 15px;
}

/* Logo */
.logo img {
  height: 80px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Nav slogan */
.nav-slogan {
  color: #f2dede;
  font-weight: 600;
  font-size: 1.2rem;
  margin-left: 20px;
  font-style: italic;
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links li a {
  color: #f7d6d9;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1rem;
}

.nav-links li a:hover,
.nav-links li a:focus {
  background-color: #a2222a;
  color: #fff5f7;
  outline: none;
}

.nav-links li a.active {
  background-color: #b72c33;
  color: #fff5f7;
  outline: none;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.gallery-section h2 {
  text-align: center;
  color: #7b141b;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.gallery-wrapper {
  overflow-x: auto;
  padding-bottom: 15px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.gallery {
  display: flex;
  gap: 20px;
}

.gallery img {
  border-radius: 12px;
  height: 220px;
  width: auto;
  flex-shrink: 0;
  box-shadow: 0 6px 12px rgba(123, 20, 27, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: #f8ecec;
}

.about-section .container {
  max-width: 850px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(123, 20, 27, 0.12);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-section h1,
.about-section h2 {
  font-size: 2.6rem;
  color: #7b141b;
  font-weight: 800;
  text-align: left;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.15rem;
  color: #4b1e22;
  line-height: 1.9;
  text-align: left;
}

.about-section ul.features-list {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-section ul.features-list li {
  position: relative;
  padding-left: 30px;
  font-size: 1.05rem;
  color: #7f2a31;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-section ul.features-list li::before {
  content: '✔';
  color: #b72c33;
  font-size: 1.3rem;
  position: absolute;
  left: 0;
  top: 1px;
  user-select: none;
}

.about-section .about-bottom {
  font-weight: 700;
  color: #5d191f;
  margin-top: 30px;
  font-size: 1.15rem;
  text-align: left;
  letter-spacing: 0.01em;
}

/* Footer */
.site-footer {
  background-color: #4b1e22;
  color: #f7d6d9;
  text-align: center;
  padding: 22px 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* WhatsApp sabit buton */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  font-size: 2.5rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(123, 20, 27, 0.6);
  z-index: 10000;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-fixed:hover {
  background-color: #b72c33;
}

/* Responsive */
@media (max-width: 992px) {
  .site-nav {
    height: auto;
    padding: 10px 0;
  }
  .site-nav .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .logo img {
    height: 60px;
  }
  .nav-slogan {
    margin-left: 0;
    font-size: 1rem;
    text-align: center;
    flex-basis: 100%;
  }
  .nav-links {
    flex-basis: 100%;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .logo img {
    height: 50px;
  }
  .nav-slogan {
    font-size: 0.9rem;
  }
  .nav-links li a {
    padding: 8px 12px;
    font-size: 0.95rem;
  }
  .nav-links {
    gap: 10px;
  }
  .about-section {
    padding: 50px 0;
  }
  .about-section .container {
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(123, 20, 27, 0.1);
  }
  .about-section h1,
  .about-section h2 {
    font-size: 1.6rem;
  }
  .about-section p,
  .about-section ul.features-list li,
  .about-section .about-bottom {
    font-size: 0.95rem;
  }
}

.logo img {
  height: 120px;
  transition: transform 0.3s ease;
}
.whatsapp-btn {
  display: inline-flex;           
  align-items: center;
  background-color: #28d622;     
  color: white;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: #28d622;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #7b141b;      
}
