style.css
/* Hizmetler bölümü */
.services {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    font-size: 32px;
    color: #0f4c81;
    margin-bottom: 40px;
}

.service-box {
    background-color: #f2f2f2;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #0f4c81;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.service-box h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.service-box p {
    font-size: 16px;
    color: #555;
}
/* Tüm öğelerde boşlukları sıfırla ve yazı tipi ayarla */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Sayfa arka planı ve yazı rengi */
body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Ana başlık için stil */
h1 {
    color: #0f;
    font-size: 48px;
    margin-bottom: 10px;
}

/* Paragraf metni */
p {
    font-size: 18px;
    margin-bottom: 20px;}
    /* Üst menü (navigasyon) */
header {
    background-color: #0f4c81;
    padding: 20px 0;
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

nav h2 {
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero bölümü */
.hero {
    background-color: #e0e0e0;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #0f4c81;
}

.hero p {
    font-size: 24px;
    color: #444;
}
/* Hakkımızda bölümü */
.about {
    background-color: #f9f9f9;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-container {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .about-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
  }
  
  .about-image {
    flex: 1;
    text-align: center;
  }
  
  .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }
  
/* Footer */
.footer {
    background-color: #0f4c81;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

.footer a {
    color: #ffffff;
    text-decoration: underline;
    margin: 0 10px;
}
/* İletişim Formu */
.contact-form {
    max-width: 600px;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-weight: bold;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background-color: #0f4c81;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0c3c67;
}
.service-box {
    background-color: #f8f8f8;
    border-left: 4px solid #0f4c81;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.testimonials {
    background-color: #fff;
    padding: 40px 20px;
    border-top: 2px solid #0f4c81;
  }
  .testimonials h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  .testimonial {
    background-color: #f8f8f8;
    border-left: 4px solid #0f4c81;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-style: italic;
  }
  .testimonial span {
    display: block;
    margin-top: 10px;
    text-align: right;
    font-weight: bold;
    color: #444;
  }
  /* Mobil cihazlar için */
@media (max-width: 768px) {
    body {
      font-size: 16px;
    }
  
    header, footer {
      text-align: center;
      padding: 20px;
    }
  
    nav ul {
      flex-direction: column;
      gap: 10px;
    }
  
    .container,
    .about,
    .testimonials,
    .service-box {
      padding: 20px;
    }
  
    .testimonial {
      font-size: 14px;
    }
  
    .service-box {
      font-size: 15px;
    }
  }
  /* Hero Section */
.hero {
    background-image: url('https://source.unsplash.com/1600x600/?business,city');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 20px;
  }
  .hero {
    background-image: url('https://source.unsplash.com/1600x600/?cleaning,building');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    white-space: nowrap;
  }
  
  .hero p {
    font-size: 22px;
  }
  .services {
    padding: 60px 20px;
    text-align: center;
  }
  
  .service-box {
    display: inline-block;
    width: 280px;
    margin: 20px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .service-box img {
    width: 60px;
    margin-bottom: 15px;
  }
  
  .service-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .service-box p {
    font-size: 16px;
    color: #444;
  }
  .service-box i {
    color: #2c3e50;
    margin-bottom: 15px;
  }
  about {
    padding: 60px 20px;
    background-color: #f4f4f4;
  }
  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  
  .about-text {
    flex: 1;
    max-width: 500px;
  }
  
  .about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
  color: #005aa7; /* Mavi renk */
  
  }
  
  .about-text p {
    font-size: 20,5px;
    line-height: 2.050;
    color: #333333;
  }
  
  .about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}
.testimonial-slider {
    display: flex;
    overflow-x: auto; /* Yatay kaydırma */
  }
  .testimonial {
    min-width: 300px; /* Kaydırılabilir kart genişliği */
  }
  .status {
    color: green;
    font-weight: bold;
  }
  #opening-status {
  font-weight: bold;
  font-size: 1.2em;
  margin: 10px 0;
}
#current-day {
  color: #005aa7; /* Mavi renk */
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
  }
  
  .cookie-banner a {
    color: #00bcd4;
    text-decoration: underline;
  }
  
  .cookie-banner button {
    background-color: #00bcd4;
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    border-radius: 4px;
  }
  /* Font import (isteğe bağlı profesyonel font) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap');

/* Üst Menü */
.main-header {
  position: static;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  font-family: 'Poppins', sans-serif;
}

/* Logo kısmı */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  

.logo-image {
  height: 250px;
  width: auto;
}

.logo-text {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1b1b1b;
}

/* Navigasyon */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
  }
  

.main-nav a:hover {
  color: #00796b;
  border-bottom: 2px solid #00796b;
}
.hero-section {
    background-image: url('images/background.jpg'); /* Görselin yolu burada */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh; /* ekranın tamamını kaplasın */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* yazılar beyaz olsun okunaklılık için */
    text-align: center;
    position: relative;
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* koyu filtre, okunaklı yazı için */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero {
    height: 100vh;
    background-image: url('images.reinigung\ team.jpg'); /* Görselin yolu */
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;     /* YATAY ortalama */
    align-items: flex-start;     /* Üste hizalama */
    padding-top: 00px;           /* Üstten boşluk */
  }
  
  .hero-content {
    color: white;
    text-align: center;
    background: none;            /* Arka plan kaldırıldı */
    max-width: 700px;
  }
  

  .hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0057d2;
  }
  
  .hero-content p {
    font-size: 1.5rem;
    color: #fff;
  }
  .section-heading {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .section-heading .blue-bar {
    width: 6px;
    height: 60px;
    background-color: #007BFF; /* Mavi */
    margin-right: 20px;
    border-radius: 3px;
  }
  
  .section-heading h2 {
    font-size: 28px;
    color: #000000;
    font-weight: 700;
    margin: 0;
  }
/* Yeni üst menü */
.new-header {
    background-color: #fff;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #007BFF;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    height: 100px;
    margin-right: 15px;
  }
  
  .logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #000;
  }
  
  .new-header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .new-header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
  }
  
  .new-header nav ul li a:hover {
    color: #007BFF;
  }
  
  /* Impressum içerik düzeni */
  .impressum-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #333;
  }
  
  .impressum-container h1 {
    color: #007BFF;
    margin-bottom: 20px;
  }
  body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0a3d62;
    color: white;
    padding: 20px;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    height: 50px;
    margin-right: 10px;
  }
  
  .logo-text {
    font-size: 22px;
    font-weight: bold;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .page-title {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
  }
  
  .services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .service-box {
    flex: 1 1 250px; /* genişlik ayarı */
    max-width: 300px;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  
  .service img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .service-text {
    max-width: 600px;
  }
  
  .service-text h2 {
    margin-top: 0;
    color: #0a3d62;
  }
  
  .footer {
    background-color: #0a;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  .footer a {
    color: #ccc;
    margin: 0 5px;
  }
  
  .footer a:hover {
    color: white;
  }
  
  .social-icons a {
    color: #aaa;
    margin: 0 10px;
    font-size: 20px;
  }
  
  .contact {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
  }
  
  .contact-container {
    max-width: 800px;
    margin: 0 auto;
  }
 
  .contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 30px auto; /* ORTALAMAK İÇİN GÜNCELLENDİ */
    max-width: 500px;   /* MAKSİMUM GENİŞLİK */
    width: 100%;
  }
  
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .contact-form button {
    padding: 10px 30px;
    background-color: #005baa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .contact-info {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: center;
  }
  
  .contact-info li {
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .opening-hours {
    margin: 20px 0;
  }
  
  .map iframe {
    width: 100%;
    max-width: 600px;
    height: 300px;
    border: none;
    margin-top: 20px;
    border-radius: 8px;
  } 
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

header, nav, main, section, footer {
  padding: 20px;
  box-sizing: border-box;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
