/* ladeo */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #f5f7fa;
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 24px;
}

.top-bar {
  background: #0f172a;
  color: #ffffff;
  font-size: 13px;
  line-height:18px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.logo:link, a.logo:visited, a.logo:active, a.logo:hover {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #111827;
  font-family: 'Inter', sans-serif;
  text-decoration:none;
}

nav.navbar-header {
 height:72px;
}

nav ul li a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #2563eb;
}

ul.products {
 margin-bottom:50px;
}

/* hero */
       .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px 8%;
            background-color: #fff; /* Temiz bir arka plan */
            margin-bottom:40px;
        }

        .hero-container {
           /* max-width:1400px;*/
        }

        .hero-content {
            flex: 1;
            padding-right: 50px;
        }

        .hero-content span {
            color: #ff6b6b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            color: #2d3436;
            margin: 20px 0;
            line-height: 1.1;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: #636e72;
            margin-bottom: 30px;
            max-width: 500px;
            line-height: 1.6;
        }

        .cta-button:link, .cta-button:visited {
            padding: 15px 40px;
            background-color: #2d3436;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: 0.3s;
        }

        .cta-button:active, .cta-button:hover {
            background-color: #ff6b6b;
            transform: translateY(-3px);
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Mobil Uyumluluk */
        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 50px;
            }
            .hero-content { padding-right: 0; margin-bottom: 40px; }
            .hero-content h1 { font-size: 2.5rem; }
        }

/* general */
div.business-information {
  text-align:center;
  margin:0;
}

span.business-name {
 font-weight:700;
 display:block;
 margin-bottom:15px;
}

span.business-address {
 display:block;
}

a.callcenter {

}

nav.navbar-header a.logo img {
width:108px;
height:45px;
}

#slider-container {
 background: rgb(228,228,228);
 background: linear-gradient(0deg, rgba(228,228,228,1) 0%, rgba(255,255,255,1));
}

#slider {
 margin:0 auto;
 overflow:hidden;
 max-width:1920px;
 aspect-ratio:3.2;
}

.slide {
 max-width:1920px;
 aspect-ratio:3.2;
}


@media only screen and (min-width: 750px) {
 .footer .nav {
  width:180px;
 }



 div.business-information {
  float:left;
  width:250px;
  text-align:left;
 }
}

@media only screen and (min-width: 1150px) {
  body {
   margin-top:120px;
  }
nav.navbar-header {
 height:120px;
}
}
