/* Genel Sıfırlama ve Body (Aynı Kalabilir) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #2c3e50;
}

/* Navigasyon Menüsü Stili */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10; /* Menünün hareketli arka planın önünde kalması için */
}

.navbar .logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* 15 Saniyede Bir Akan Akışkan Arka Plan Animasyonu */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Karşılama (Hero) Alanı - Mermer ve Altın Tonları */
.hero {
    height: calc(100vh - 74px); /* Menü yüksekliğini çıkararak tam ekran yapar */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Mermer beyazı, hafif gri ve lüks altın/bronz tonlarında akışkan geçiş */
    background: linear-gradient(-45deg, #f5f5f5, #e0e0e0, #cfb997, #f9f9f9);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite; 
    color: #1a1a1a;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Şık Buton Tasarımı */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: #cfb997; /* Üzerine gelince altın/bronz tonu */
    color: #1a1a1a;
    transform: translateY(-2px);
}
