﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    /* border: 1px solid #ddd; */
}

a {
text-decoration:none;

}


.post-section ul {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    list-style-type: none; /* Dolu yuvarlak madde işareti */
    padding: 0;
    margin: 0;
    text-align:left;
}

.post-section li {
    padding: 10px;
    margin: 5px 0;
    background-color: #f4f4f4;
    border-radius: 5px;
    transition: background-color 0.3s;
    position: relative;
    padding-left: 30px; /* Yazıya yakın olmasını sağlar */
}

.post-section li::before {
    content: '';
    position: absolute;
    left: 5px; /* Madde işaretini soldan ayarlıyoruz */
    top: 50%;
    transform: translateY(-50%); /* Vertikal merkezleme */
    width: 10px; /* Boyutu büyütüyoruz */
    height: 10px; /* Boyutu büyütüyoruz */
    background-color: #E2001A; /* THY kırmızı rengi */
    border-radius: 50%; /* Dairesel şekil */
}

    .post-section li:hover {
        background-color: #ddd;
    }



.post-section h3 {
    color: #c70a0c;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 7px;
    margin-top: 21px;
    text-align: left;
}

.post-section p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    /*max-width: 700px;*/
    margin-bottom: 11px;
    text-align: left;
}


header {
    background: linear-gradient(135deg, #c70a0c, #990000);
    padding: 13px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    float:left;
}

.logo-text {
    float: left;
    line-height: 39px;
    margin-left: 11px;
    color: #fff;
    font-family: system-ui;
    font-size: 17px;
}

/*@media (max-width: 767px) {


    .logo-text {
        color: #fff;
        margin-left: 38px;
        margin-top: 29px;
        text-decoration: underline;
        position: absolute;
        font-size: 11px;
    }
}*/

.logo-container.mobile .logo-text {
    line-height: 27px;
    margin-left: 6px;
    color: #fff;
    font-family: Calibri;
    font-size: 13px;
    font-weight: bold;
}


    @media (max-width: 767px) {
        .logo-container.mobile {
            display: block;
        }

        .logo-container.desktop {
            display: none;
        }
    }

    @media (min-width: 768px) {
        .logo-container.mobile {
            display: none;
        }

        .logo-container.desktop {
            display: block;
        }
    }

    .header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-phone {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

    .contact-phone img {
        width: 17px;
        margin-right: 5px;
        margin-top: -3px;
    }

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}



.main-content {
    max-width: 1200px;
    margin: 3px auto;
    padding: 9px;
}
 
.official-note {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
    font-size: 13px;
    color: #666;
    text-align: center;
    font-style: italic;
}

.services {
    margin: 40px 0;
}

    .services h2, .destinations h2 {
        text-align: center;
        margin-bottom: 30px;
        color: #333;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

    .service-card h3 {
        color: #c70a0c;
        margin-bottom: 10px;
    }

.gallery-section {
    padding: 25px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-section h2 {
    color: #333;
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    color: #c70a0c;
    font-weight: normal;
}

    .gallery-section h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: #c70a0c;
    }

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    }

    .gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    color: white;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.gallery-item:hover .image-caption {
    transform: translateY(-5px);
}

.image-caption h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.image-caption p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.destination-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .destination-card:hover {
        transform: translateY(-5px);
    }

    .destination-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .destination-card h3, .destination-card p {
        padding: 10px;
        text-align: center;
    }

    .destination-card h3 {
        color: #c70a0c;
        margin-bottom: 5px;
    }

.footer {
    background: #ffffff;
    color: #606060;
    padding: 60px 0 0 0;
    border-top: 1px solid #eee;
    margin-top: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #3b3b3b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section .call-icon {
    float: left;
    width: 17px;
    margin-right: 5px;
}

.footer-section .mail-icon {
    float: left;
    width: 17px;
    margin-right: 5px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #c70a0c;
}

.footer-about p {
    color: #4d4d4d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

    .footer-links ul li {
        margin-bottom: 12px;
    }

        .footer-links ul li a {
            color: #606060;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s ease;
            display: block;
            line-height: 17px;
        }

            .footer-links ul li a:hover {
                color: #c70a0c;
                padding-left: 3px; 
            }

.footer-contact p {
    color: #606060;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    background: #e5e5e5;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

    .footer-bottom-links a {
        color: #666;
        text-decoration: none;
        font-size: 12px;
        transition: color 0.2s ease;
    }

        .footer-bottom-links a:hover {
            color: #c70a0c;
        }

.copyright {
    color: #666;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }


    .footer {
   
        padding: 60px 0 60px 0; 
    }
}

/* Tablet ve mobil için responsive tasarım */
@media (max-width: 768px) {
    .gallery-section {
        padding: 25px 0px;
    }

        .gallery-section h2 {
            font-size: 24px;
            margin-bottom: 25px;
        }

    .image-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-item {
        max-width: 500px;
        margin: 0 auto;
    }

        .gallery-item img {
            height: 200px;
        }

    .image-caption h3 {
        font-size: 18px;
    }

    .image-caption p {
        font-size: 13px;
    }
}

/* Küçük mobil cihazlar için ek düzenlemeler */
@media (max-width: 480px) {
    .gallery-item img {
        height: 180px;
    }

    .image-caption {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 0;
    } 

    .header-container {
        padding: 0 15px;
    }

    .logo {
        height: 32px;
    }

    .contact-phone {
        font-size: 16px;
    }

    .contact-text {
        font-size: 11px;
    }

    .contact-phone img {
        width: 14px;
        margin-right: 4px;
        margin-top: -3px;
    }
   
}

@media (max-width: 480px) {
    header {
        padding: 10px 0;
    }


    .header-container {
        padding: 0 12px;
    }

    .logo {
        height: 28px;
    }

    .contact-phone {
        font-size: 15px;
    }

        .contact-phone img {
            width: 13px;
            margin-right: 3px;
            margin-top: -1px;
        }

    .contact-text {
        font-size: 10px;
    }

    .header-right {
        gap: 15px;
    }
}

 

.footerFixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    background: #fff;
    box-shadow: 0px 0px 5px #ddd;
    z-index: 9999;
    height: 51px;
}

    .footerFixed .menuWrapper {
        margin: auto;
    }

        .footerFixed .menuWrapper .icon {
            width: 17px;
        }

            .footerFixed .menuWrapper .icon svg {
                position: relative;
                top: 1px;
                color: #606060;
                height: 20px;
                width: 20px;
            }

    .footerFixed .menu .text {
        color: #606060;
        font-size: 14px;
        line-height: 28px;
    }

    .footerFixed .biletbakB {
        width: 104.5px;
        height: 104.5px;
        border-radius: 100%;
        margin: auto;
        margin-top: -30px;
        border: 7px solid #f9f9fb;
        position: relative;
    }

    .footerFixed .phone,
    .footerFixed .menu {
        display: flex;
        height: 43px;
        float: right;
    }

        .footerFixed .phone .homeText {
            color: #fff;
            line-height: 16px;
            margin-top: 5px;
            margin-left: 5px;
            font-size: 11px;
            width: 85px;
        }

    .footerFixed .phoneBox {
        display: flex;
        align-items: center;
        position: relative;
        right: 29px;
        text-decoration: none;
    }

        .footerFixed .phoneBox .icon {
            width: 35px;
            height: 35px;
            background-image: url('/images/call-me.png');
            background-size: cover;
            background-position: center;
            position: relative;
            top: 5px;
        }

    .footerFixed .text-container {
        display: flex;
        flex-direction: column;
        margin-left: 10px;
        margin-top: 7px;
    }

    .footerFixed .phone-number {
        line-height: 19px;
    }

        .footerFixed .phone-number span {
            font-size: 16px;
            border-bottom: 1px solid #03b3fa;
            color: #0075ed;
            font-weight: bold;
            float: left;
        }

    .footerFixed .call-center {
        font-size: 12px;
        color: #00b771;
        position: relative;
        top: 2px;
    }

@keyframes grow {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

.footerFixed .call-center-online {
    display: block;
    width: 9px;
    height: 9px;
    float: right;
    position: relative;
    top: 3px;
    border-radius: 9px;
    right: -4px;
    background-color: #00b771;
    animation: grow 0.4s infinite;
}

@media (min-width: 768px) {
    .footerFixed {
        display:none;
    }
}
