/* Görsel Galeri Modal */
    /* Galeri düzeni */
    /* Galeri düzeni */
    #imageGallery img {
        max-width: 250px;
        margin: 10px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    #imageGallery img:hover {
        transform: scale(1.1);
    }

    /* Lightbox düzeni */
    .lightbox {
        display: none;
        position: fixed;
        z-index: 1000;
        padding-top: 60px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        overflow: auto;
    }
    .lightbox-content {
        display: block;
        margin: auto;
        max-width: 80%;
        max-height: 80%;
        animation: zoomIn 0.4s;
    }
    .close {
        position: absolute;
        top: 20px;
        right: 35px;
        color: #fff;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
    }
    .close:hover {
        color: #bbb;
    }

    /* Animasyon */
    @keyframes zoomIn {
        from {transform: scale(0.7);}
        to {transform: scale(1);}
    }

    /* Responsive düzen */
    @media only screen and (max-width: 768px) {
        .lightbox-content {
            max-width: 95%;
            max-height: 95%;
        }
    }

#searchInput {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
    background-color:#333333 ;
    color:white;
}

#searchInput:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

#content {
    background-color:#F7F7F7;
}


#blogTitle {
    color:white;
    color:red ;
    font-weight:600;
}
#blogDescription {
    color:black;
    font-size:17px;
}


#blogGallery h4 {
    margin-top:80px;
    color:#FF4C4C;
    font-weight:600;
}




body {
    background-color:#fff;
}

.header-box * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Header Yapısı */
.header-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 150px;
    background-color: #fff;
    margin: 15px;
    position: relative;
}

/* Logo Alanı */
.header-box-logo {
    margin-left: 50px;
}

.header-box-logo img {
    width: 60px;
    margin: 0;
    padding: 0;
}

/* Menü Alanı */
.header-box-navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.header-box-navbar ul li {
    display: inline;
}

.header-box-navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1.3px;
    transition: color 0.3s ease;
}

.header-box-navbar ul li a:hover {
    color: #ff0000; /* Hoverda renk değişimi */
}

/* Buton Stili */
.header-box-button .header-box-btn {
    background-color: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    margin-right: 50px;
}

.header-box-button .header-box-btn:hover {
    background-color: #d00000; /* Buton hover efekti */
}

/* Mobil ve tablet görünümü */
@media (max-width: 1000px) {
    .header-box-header {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px 20px;
    }

    .header-box-navbar ul {
        gap: 20px;
        margin-top: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header-box-button {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .header-box-header {
        flex-direction: column;
        align-items: center;
        padding: 15px 20px;
    }

    .header-box-navbar ul {
        flex-direction: column;
        gap: 20px;
        margin-top: 15px;
    }

    .header-box-button {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .header-box-logo img {
        width: 100px; /* Küçük ekranlarda logoyu küçült */
    }

    .header-box-navbar ul {
        gap: 15px;
    }

    .header-box-navbar ul li a {
        font-size: 14px; /* Yazı boyutunu küçült */
    }

    .header-box-button .header-box-btn {
        padding: 10px 20px;
        font-size: 14px; /* Buton boyutunu küçült */
    }
}

/* Hamburger menü stili */
.header-box-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.header-box-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.header-box-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header-box-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header-box-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobil menü stili */
@media (max-width: 1000px) {
    .header-box-hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .header-box-header {
        padding: 15px;
        flex-direction: row;
        justify-content: flex-start;
    }

    .header-box-logo {
        margin-left: 20px;
        z-index: 1001;
    }

    .header-box-logo img {
        margin-left: 0;
        width: 80px;
    }

    .header-box-navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        padding-top: 80px;
        transition: 0.3s ease;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-box-navbar.active {
        left: 0;
    }

    .header-box-navbar ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0;
    }

    .header-box-navbar ul li a {
        font-size: 20px;
    }

    .header-box-button {
        position: fixed;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 1000;
    }

    .header-box-button.active {
        opacity: 1;
        visibility: visible;
    }

    .header-box-button .header-box-btn {
        margin-right: 20px;
    }
}

/* Tablet ve mobil için ek düzenlemeler */
@media (max-width: 768px) {
    .header-box-navbar ul li a {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .header-box-navbar ul li a {
        font-size: 16px;
    }
}
