@font-face {
    font-family: 'SFCompact';
    src: url('fontlar/SF-Compact-Display-Medium.otf') format('truetype'); 
}
@font-face {
    font-family: 'ArialRounded';
    src: url('fontlar/Arial\ Rounded\ Bold.ttf');
}

/* 🎯 Sayfa taban yüksekliğini tarayıcıya öğretiyoruz */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

/* 🎯 ANA KAPSAYICI */
.container{
    background: url(turkiye-insaat-sektoru-2027-de-70-milyar-euro-yu-asacak-2025-12-08-17-15-30.jpeg);
    min-height: 100vh;            
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
    position: relative;
    display: flex;                
    flex-direction: column;       
    padding-top: 70px;                                   /* 🛠️ BUG FIX */
}

.container .navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.35);               
    backdrop-filter: blur(30px) saturate(210%);          
    -webkit-backdrop-filter: blur(30px) saturate(210%);                 
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.4); 
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 4px 30px rgba(0, 0, 0, 0.03);
    display: flex;                  
    justify-content: space-between; 
    align-items: center;            
    padding: 0 20px;                
    z-index: 9999;
}

/* Orijinal temiz düzene geri döndü */
.hakkimizda-wrapper {
    max-width: 750px;
    width: 90%;                    
    margin: 60px auto;            
    padding: 45px;
    border-radius: 24px;          
    background: rgba(255, 255, 255, 0.12);               
    backdrop-filter: blur(18px);                         
    -webkit-backdrop-filter: blur(18px);                 
    border: 1px solid rgba(255, 255, 255, 0.25);         
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);         
}

/* ==========================================================================
   📱 MOBİL NAVBAR RESPONSIVE DÜZENLEMESİ (768px ve Altı Telefonlar İçin)
   ========================================================================== */
.logo img{
    margin-top: 5px;
}

.navbar ul{
    display: flex; 
    list-style: none;
    align-items: center;
}

ul li{
    margin-left: 12px; 
    font-size: 15px;
    font-family: 'SFCompact', sans-serif; 
}

li a{
    text-decoration: none;
    color: black;
    display: inline-block;  
    padding: 6px 14px;      
    border-radius: 4px;     
    transition: all 0.2s ease; 
}
   @media (max-width: 768px) {
    .container .navbar {
        height: auto !important;          /* Sabit 70px boyutu iptal, içeriğe göre uzayacak */
        flex-direction: column !important; /* Logo üstte, linkler altta olacak şekilde dikey hizala */
        padding: 12px 15px !important;    /* Mobilde daha kibar bir iç boşluk */
        gap: 10px !important;             /* Logo ile menü arasına şık bir mesafe */
    }

    .logo img {
        height: 35px !important;          /* Mobilde logo biraz küçülsün ki yer kalsın */
        margin-top: 0 !important;
    }

    .navbar ul {
        width: 100% !important;           /* Link sepeti tam genişlik kaplasın */
        justify-content: center !important;/* Linkleri mobilde tam ortala */
        flex-wrap: wrap !important;       /* Ekran çok daralırsa linkler alt satıra güvenle geçsin */
        gap: 6px !important;              /* Linklerin kendi arasındaki mesafeyi ayarla */
    }

    ul li {
        margin-left: 0 !important;        /* Eski sol boşluğu sıfırla, gap komutu yönetecek */
    }

    li a {
        font-size: 13px !important;       /* Mobilde fontu bir tık küçültelim */
        padding: 6px 10px !important;     /* Hover cam efektinin mobilde taşmaması için kibar padding */
    }
}

/* 💧 NAVBAR LIQUID GLASS HOVER VE SELECTION EFEKTİ */
.navbar ul li a.active,
.navbar ul li a:hover{
    background: rgba(89, 162, 255, 0.18);
    color: #0052cc;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(89, 162, 255, 0.35);
    box-shadow: 0 4px 12px rgba(89, 162, 255, 0.1);
    border-radius: 8px;
}

/* ==========================================================================
   🔮 İŞTE O EFSANE BUZLU CAM (GLASSMORPHISM) TASARIMI BURADA KANKI
   ========================================================================== */
.hakkimizda-wrapper {
    max-width: 750px;
    width: 90%;                    
    margin: 60px auto;            
    padding: 45px;
    border-radius: 24px;          
    
    /* 📌 SİHİRLİ BUZLU CAM AYARLARI */
    background: rgba(255, 255, 255, 0.12);               
    backdrop-filter: blur(18px);                         
    -webkit-backdrop-filter: blur(18px);                 
    border: 1px solid rgba(255, 255, 255, 0.25);         
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);         
}

/* Buzlu cam içindeki başlık */
.hakkimizda-wrapper h1 {
    font-family: 'ArialRounded', sans-serif;
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);         
}

/* Buzlu cam içindeki paragraflar */
.hakkimizda-wrapper p {
    font-family: 'SFCompact', sans-serif;
    color: #f8fafc;                                      
    font-size: 17px;
    line-height: 1.7;                                    
    margin-bottom: 20px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);          
}

.hakkimizda-wrapper p:last-child {
    margin-bottom: 0;
}

/* 🎯 FOOTER ALANI */
.site-footer {
    background-color: #0f172a; 
    width: 100%;
    padding: 20px 0;          
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;                                    
}

.site-footer p {
    font-family: 'SFCompact', sans-serif;
    font-size: 14px;
    color: #94a3b8;           
    letter-spacing: 0.5px;
}