/* Genel Ayarlar */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Başlık */
header {
  background-color: #fff;
  color: #0b0000;
  padding: 20px 0;
  margin-top: 0;
  padding-top: 0;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #be4a07;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  
}

nav ul li {
  margin: 0 15px;
 
}

nav ul li a {
  color: #0b0404;
  text-decoration: none;
}

/* Kahraman Bölümü */
.hero {
  background: url('hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #e30613;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Ürünler */
.products {
  padding: 50px 20px;
  text-align: center;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.product-item {
  width: 300px;
  margin: 15px;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
}

.product-item img {
  width: 100%;
  height: auto;
}

/* Alt Bilgi */
footer {
  background-color: #be4a07;
  text-align: center;
  padding: 20px 0;
 
}
.logo img {
  height: 320px;
  weight:320px ;
  float: left;

}
.footer {
  background-color: #FF6600;
  padding: 20px;
  text-align: center;
  color: #fff;
}

.social-icons {
  margin-top: 10px;
  text-align: right;
}

.icon {
  display: inline-block;
  margin: 0 10px;
  font-size: 24px;
  color: white;
  transition: transform 0.2s ease, color 0.2s ease;
}

.icon:hover {
  transform: scale(1.2);
}

.icon.whatsapp:hover {
  color: #25D366;
}

.icon.instagram:hover {
  color: #C13584;
}

.service {
    flex: 1 1 calc(33.33% - 10px);
    background-color: #FF6600;
    padding: 70px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 25px;
    color: #fff;
    
    
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: justify;
        
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #f0f0f0;
    color: #0b0404;
}
 
