/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #c0c0c0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

a {
  color: #c0c0c0;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #111;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 20px;
}

nav a:hover {
  color: #fff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to bottom, #111, #000);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid #c0c0c0;
  color: #c0c0c0;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background-color: #c0c0c0;
  color: #000;
}

/* Hizmetler Sayfası */

.services-section {
  padding: 80px 20px;
  text-align: center;
}

.services-section h1 {
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  background-color: #111;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, border-color 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
  border-color: #c0c0c0;
}

.service-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 0.95rem;
  color: #aaa;
}

/* Galeri Sayfası */

.gallery-section {
  padding: 80px 20px;
  text-align: center;
}

.gallery-section h1 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

/* Filtre düğmeleri */
.filter-buttons {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid #c0c0c0;
  color: #c0c0c0;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: #c0c0c0;
  color: #000;
}

/* Galeri grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #333;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* İletişim Sayfası */

.contact-section {
  padding: 80px 20px;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

/* Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  background-color: #111;
  border: 1px solid #333;
  color: #c0c0c0;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  background-color: transparent;
  border: 1px solid #c0c0c0;
  color: #c0c0c0;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #c0c0c0;
  color: #000;
}

.phone-link {
  color: #c0c0c0;
  text-decoration: none;
  font-weight: bold;
}

.phone-link:hover {
  color: #fff;
  text-decoration: underline;
}
/* Harita */
.map-box {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.map-box iframe {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  margin-top: 10px;
}

/* WhatsApp Balonu */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: white;
  font-size: 24px;
  padding: 12px 14px;
  border-radius: 50%;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Hakkımızda Sayfası */

.about-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #fff;
}

.about-text p {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid #333;
}

