/* Genel Sayfa Ayarları */
body {
    font-family: 'Roboto', sans-serif;
    background: #f8f9fa;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Üst Menü (Top Bar) */
.top-bar {
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* İnce Mavi Çizgi */
.blue-line {
    background: #007bff;
    height: 3px;
    width: 100%;
    position: fixed;
    top: 65px; /* Top Bar altında olacak */
    left: 0;
    z-index: 999;
}

/* Logo */
.logo img {
    height: 50px; /* Daha büyük logo */
}

/* Top Menü (Sağ Üst Giriş & Kayıt Butonları) */
.top-menu {
    display: flex;
    gap: 15px;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 24px;
    transition: 0.3s;
}

.login {
    background: #6c757d;
    color: white;
}

.register {
    background: #007bff;
    color: white;
}

.login:hover {
    background: #5a6268;
}

.register:hover {
    background: #0056b3;
}

/* Sayfa İçeriği */
.container {
    margin-top: 100px; /* Top Bar’dan dolayı aşağı kaydır */
    text-align: center;
}

/* Bilgi Kutuları */
.info-boxes {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    margin-top: 40px;
    flex-wrap: nowrap;
    width: 90%;
    max-width: 900px;
}

/* Info Box */
.info-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: 30%;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hover Efekti */
.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Başlıklar */
.info-box h3 {
    font-size: 20px;
    color: #1a73e8;
    margin-bottom: 10px;
}



/* Genel stil ayarları */
.social-login {
    text-align: center;
    margin-top: 20px;
}

.google-login-link {
    display: inline-block;
    background-color: #4285F4; /* Google mavi rengi */
    color: white;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Beyaz gölge */
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-login-link i {
    margin-right: 10px; /* Google ikonunun metinle arasındaki boşluk */
    font-size: 20px;
}

.google-login-link:hover {
    background-color: #3367D6; /* Google mavi renginin daha koyu tonu */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Hover durumu için daha belirgin gölge */
}

/* Google ikonunun renkli olması için ek stil */
.fab.fa-google {
    color: #fff;
    font-size: 22px; /* Google ikonunun boyutunu ayarlama */
}
