/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
}

/* Hero Section */
#home {
    height: 100vh;
    position: relative;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('girs.jpeg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    justify-content: left;
    color: #d4d4d4;
    font-size: 2.2rem; /* Font boyutunu arttırdım */
    font-weight: bold;
    padding: 0.8rem 1.5rem; /* Padding'i arttırarak logoyu biraz daha genişlettim */
    margin-left: -10px;
    background: none;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 260px; /* Minimum genişliği arttırdım */
    height: 60px; /* Yüksekliği arttırdım */
    z-index: 10;
}

/* Logo image styles */
.logo-image {
    height: 50px; /* Logo görselinin boyutunu büyüttüm */
    width: auto;
    margin-right: 15px; /* Görsel ile metin arasındaki boşluğu arttırdım */
}

/* Logo text styles */
.logo-text {
    display: inline-block;
}

/* Update existing header/nav styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #1F3A63;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
        min-width: 200px;
        height: 45px;
        padding: 0.5rem 1rem;
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Services Section */
#services {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, .service-card p {
    padding: 1rem;
}

/* Contact Section */
#contact {
    padding: 4rem 5%;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('contact-bg.jpg') center/cover;
    color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.contact-item i {
    font-size: 2rem;
    color: #3498db;
}

.map-container {
    margin-top: 3rem;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Sabit Yatay Butonlar */
.fixed-buttons {
    position: fixed;
    bottom: 0; /* Alt kısma sabitler */
    left: 0;
    width: 100%; /* Tam genişlik */
    display: flex;
    justify-content: space-between; /* Butonları eşit şekilde yayar */
    z-index: 1000;
  }
  
  .fixed-buttons .whatsapp-btn,
  .fixed-buttons .call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%; /* Her buton %50 genişlikte olacak */
    height: 60px; /* Yükseklik */
    color: white;
    font-size: 1.5rem;
    text-decoration: none; /* Link altı çizgisini kaldırır */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  }
  
  .fixed-buttons .whatsapp-btn {
    background-color: #25d366; /* WhatsApp yeşil */
  }
  
  .fixed-buttons .call-btn {
    background-color: #34b7f1; /* Telefon arama için mavi */
  }
  
  .fixed-buttons .whatsapp-btn:hover {
    background-color: #128c7e; /* WhatsApp hover için yeşil ton */
  }
  
  .fixed-buttons .call-btn:hover {
    background-color: #007bff; /* Telefon hover için mavi ton */
  }

/* Footer */
footer {
    padding: 2rem 0;
    background: #000000;
    color: white;
    text-align: center;
    position: relative; /* Diğer öğelerle üst üste binmesini engeller */
    z-index: 999; /* Footer, sabit butonların üstünde olmasın diye z-index ayarı */
    margin-bottom: 70px; /* Footer'ın alt kısmına biraz boşluk bırakır, butonlarla çakışmaması için */
  }

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .map-container {
        height: 300px;
    }
    
    .map-container iframe {
        height: 300px;
    }

    .contact-item {
        padding: 1rem;
    }
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
    color: #333;
    margin-top: 20px;
    border-top: 1px solid #ddd;
}

footer a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

footer a:hover {
    transform: scale(1.05); /* Hafif büyütme efekti */
}

.instagram-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    filter: grayscale(100%); /* Siyah-beyaz görünüm */
}
