:root {
  --black: #111;
  --dark: #1e1e1e;
  --white: #ffffff;
  --gray: #f4f4f4;
  --red: #d62828;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: var(--gray);
  color: var(--dark);
  line-height: 1.6;
}

/* HEADER */
.header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--white);
  font-weight: bold;
  font-size: 20px;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  margin-left: 20px;
}

.nav a:hover {
  color: var(--red);
}

/* HERO */
.hero {
  background: linear-gradient(rgba(14, 0, 0, 0.945), rgba(0, 0, 0, 0.75)),
    url(".vscode/fatihh.jpg.jpeg") center/cover no-repeat;
  color: var(--white);
  padding: 120px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin: 5px;
}

.primary {
  background: var(--red);
  color: var(--white);
}

.secondary {
  background: var(--white);
  color: var(--black);
}

.primary:hover {
  background: #b71c1c;
}

/* SERVICES */
.services {
  padding: 40px 20px;
  background: var(--white);
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.services h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--red);
  display: block;
  margin: 10px auto 0;
}

.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--gray);
  padding: 30px;
  border-top: 4px solid transparent;
  transition: 0.3s;
}

.service-card:hover {
  border-top: 4px solid var(--red);
  transform: translateY(-5px);
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  margin-bottom: 8px;
}

/* GALLERY */
.gallery {
  padding: 70px 20px;
}

.gallery-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
  padding: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
/* CONTACT */
.google-review-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #c00000;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.google-review-btn:hover {
  background: #000;
  color: #fff;
}
.contact {
  background: var(--white);
  padding: 70px 20px;
  text-align: center;
}

.map {
  max-width: 900px;
  margin: 30px auto 0;
}

/* FOOTER */
.footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 20px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 26px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
    .gallery-grid {
      gap: 12px;
    }
  }

  .nav {
    display: none;
  }
}
/* CAMPAIGN BAR */
.campaign-bar {
  background: #b11212; /* kırmızı */
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-weight: 600;
}

.campaign-track {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 18s linear infinite;
}

.campaign-track span {
  margin-right: 60px;
}

@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
