* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Playfair Display", serif;
            font-optical-sizing: auto;
            font-weight: 550;
            font-style: normal;
        }


        /* 2. NAVBAR STİLLERİ */
        nav {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.925) 0%, rgba(0, 0, 0, 0) 100%);
            background-color: transparent;
            height: 150px;
            width: 100%;
            display: flex;
            align-items: center;
            padding: 0 50px;
            position: absolute; 
            top: 0;
            left: 0;
            z-index: 10;
            justify-content: flex-end; /* Linkleri sağa itmek için */
        }

        .logo-container {
          position: absolute;
          left: 50%;          
          transform: translateX(-50%);
          height: 100%;
          display: flex;
          align-items: center;
          z-index: 101;
        }

        .logo-container img {
         height: 135px;
         width: auto;
        }

        .logo {
            margin-top: 3vh;
            text-decoration: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        /* LİNKLER (Desktop) */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.2); /* Okunabilirlik için gölge */
            color: #ffffff;
            text-decoration: none;
            font-size: 22px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: rgba(170, 0, 0);
        }

        /* HAMBURGER MENÜ (Mobilde görünecek) */
        .hamburger {
            display: none; /* Masaüstünde gizli */
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #ffffff;
            border-radius: 5px;
        }

        /* 3. RESPONSIVE (MOBİL) AYARLAR */
        @media screen and (max-width: 1200px) {

            .logo-container img {
             height: 110px; /* Mobilde daha kibar durması için küçültüyoruz */
             width: auto;
            }
            /* Logoyu mobilde sola alalım (İsteğe bağlı, ortada da kalabilir) */
            .logo {
                position: static;
                transform: none;
                margin-right: auto; /* Sağa yaslanan her şeyi iter */
            }

            nav {
                z-index: 9999;
                justify-content: space-between; /* Logo solda, hamburger sağda */
            }

            /* Linkleri gizle ve dikey menü yap */
            .nav-links {
                position: fixed;
                right: 0;
                top: 0; /* Navbar yüksekliği kadar aşağı */
                height: 100vh;
                background-color: #0a0a0a;
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.499) 100%);
                flex-direction: column;
                align-items: center;
                justify-content: center; /* Linkleri dikeyde ortala */
                width: 50%;
                display: flex;
                transform: translateX(100%); /* Ekran dışına it */
                transition: transform 0.3s ease-in-out;
                padding-top: 50px;
                z-index: 9999;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
            }

            .nav-links li {
                margin: 20px 0;
            }

            .hamburger {
                display: flex;
                position: fixed;
                z-index: 10000;  
                background-color: rgba(0, 0, 0, 0.15); 
                padding: 5px;
                border-radius: 5px;
            }
        }

        /* JavaScript ile eklenecek sınıf */
        .nav-active {
            transform: translateX(0%) !important;
        }

        html, body {
      position: relative;
      height: 100%;
      font-size: 14px;
      color: #fff;
      margin-top: 0;
      padding: 0;
      margin: 0;
      width: 100%;
      overflow-x: hidden;
      background-color: #1d000b; 
    }

/* --- HAKKIMIZDA SAYFASI STİLLERİ --- */

.about-section {
    margin-top: 120px;
    color: #e0e0e0;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
}

/* Üst Başlık Alanı */
.about-header {
    text-align: center;
    margin-bottom: 70px;
}

.main-title {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.sub-intro {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-style: italic;
}

/* --- SATIR YAPISI (TEXT + RESİM) --- */
.about-row {
    display: flex;
    align-items: center; /* Dikeyde ortalar */
    justify-content: space-between;
    gap: 50px; /* Yazı ve resim arası boşluk */
    margin-bottom: 80px; /* Bölümler arası boşluk */
}

/* Yazı Alanı */
.about-text {
    padding-left: 2vb;
    flex: 1; /* Alanın yarısını kapla */
}

.about-text h3 {
    font-size: 1.8rem;
    color: #e1b46a; 
    margin-bottom: 20px;
    border-left: 4px solid #ba8d4c; 
    padding-left: 15px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7; /* Okumayı kolaylaştırır */
    color: #cccccc;
    margin-bottom: 15px;
}

/* Resim Alanı */
.about-image {
    flex: 1; /* Alanın yarısını kapla */
    position: relative;
}

.about-image img {
    width: 100%;
    height: 350px; /* Tüm resimler eşit yükseklikte */
    object-fit: cover; /* Resmi sündürmeden kutuya sığdırır */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Derinlik gölgesi */
    border: 2px solid #F2F2F2;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02); /* Üzerine gelince hafif büyür */
}

/* Ters Çevirme Sınıfı (Resim Solda, Yazı Sağda için) */
.reverse {
    flex-direction: row;
}

/* Alt Slogan */
.about-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.about-footer p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.about-footer span {
    font-size: 1.1rem;
    color: #e1b46a;
}

/* --- MOBİL UYUM (RESPONSIVE) --- */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .about-row {
        flex-direction: column-reverse;
        gap: 30px;
        margin-bottom: 50px;
    }

    .reverse {
        flex-direction: column; 
    }

    .about-image img {
        height: 250px; /* Mobilde resim yüksekliğini azalt */
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
}






























    .main-footer {
    width: 100%;
    min-height: 100vh; /* Tam ekran yüksekliği */
    background-color: #0a0a0a; /* Simsiyah'a yakın koyu gri */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dikeyde ortala */
    align-items: center;
    padding: 50px;
    position: relative;
    box-sizing: border-box;
    
}

/* İÇERİK IZGARASI (GRID) */
.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Sütunlu yapı */
    gap: 60px; /* Kutular arası boşluk */
    width: 100%;
    max-width: 1000px; /* İçerik çok dağılmasın */
    margin-bottom: auto; /* Alt kısmı en aşağı itmek için */
    margin-top: auto;    /* Üst kısmı dengelemek için */
}

/* LINK KUTUSU TASARIMI */
.footer-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1); /* Çok silik çerçeve */
    transition: all 0.4s ease;
    border-radius: 5px;
}

/* Hover Efekti: Üzerine gelince parlasın ve yukarı kaysın */
.footer-item:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: #fff;
    transform: translateY(-10px);
}

/* İKON TASARIMI */
.icon-box {
    font-size: 2.5rem;
    margin-right: 25px;
    color: #888;
    transition: color 0.3s ease;
}

.footer-item:hover .icon-box {
    color: #fff; /* Hover olunca ikon beyazlaşsın */
}

/* YAZI ALANI */
.text-box h3 {
    font-size: 1.2rem;
    font-weight: 750;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.text-box p {
    font-size: 0.9rem;
    color: #a4a4a4;
    transition: color 0.3s;
    font-family:Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.footer-item:hover .text-box p {
    color: #ccc;
}

/* --- ALT KISIM (COPYRIGHT) --- */
.footer-bottom {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin-top: 50px;
}

/* İnce Çizgi */
.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #555, transparent); /* Ortası belirgin, kenarları silik çizgi */
    margin-bottom: 30px;
}

.urgco {
    font-family: "amandine", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fafafa;
    font-size: 1.3rem;
}

/* --- MOBİL UYUMLULUK --- */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Mobilde tek sütuna düş */
        gap: 20px;
    }

    .footer-item {
        padding: 20px; /* Mobilde kutuları küçült */
    }

    .icon-box {
        font-size: 1.8rem;
    }

    .main-footer {
        padding: 30px 20px;
    }
}

/* FOOTER LOGO AYARLARI */
.footer-logo {
    display: inline-block;
    margin-bottom: 50px; /* İkonlarla arasına boşluk */
    transition: transform 0.3s ease;
}

.footer-logo img {
    height: 120px; /* Logonun yüksekliği (İsteğine göre artır/azalt) */
    width: auto;   /* Genişlik orantılı kalsın */
    display: block;
}

/* Mouse üzerine gelince hafif büyüsün */
.footer-logo:hover {
    transform: scale(1.05);
}

/* --- MOBİL İÇİN DÜZELTME --- */
@media screen and (max-width: 768px) {
    .footer-logo img {
        height: 80px; /* Mobilde logoyu biraz küçültelim */
    }
    
    .footer-logo {
        margin-bottom: 30px; /* Mobilde boşluğu azaltalım */
    }
}