﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.container {
    display: flex;
    justify-content: center; /* Panelleri yatayda ortalar */
    align-items: flex-start; /* Panelleri üst hizaya getirir */
}

.left-panel {
    display: block;
    flex-direction: column;
    align-items: center; /* İçerikleri ortalar */
    margin-right: 50px; /* Sağdaki boşluğu en aza indirir */
}

.right-panel {
    display: block;
    justify-content: center;
    align-items: center;
}


/* Standart buton tasarımı */
.btn-reserve {
    background-color: #66bb6a; /* Yeşil tonları */
    color: white;
    border: none;
    padding: 15px 48px; /* Uzunluğu artır */
    font-size: 18px; /* Yazı boyutunu büyüt */
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 15px;
    transition: background-color 0.3s, transform 0.3s;
    width: calc(300px * 1.6); /* Buton genişliğini 1.6 katına çıkar */
    text-align: center;
    margin-bottom: 10px; /* Alt aralık */
}

    .btn-reserve:hover {
        background-color: #4caf50; /* Hover efekti için daha koyu yeşil */
        transform: translateY(-2px);
    }

    .btn-reserve:focus {
        outline: none;
    }
.btn-teklif {
    background-color: #66bb6a; /* Yeşil tonları */
    color: white;
    border: none;
    padding: 15px 48px; /* Uzunluğu artır */
    font-size: 25px; /* Yazı boyutunu büyüt */
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s, transform 0.3s;
    width: calc(1200px * 2); /* Buton genişliğini 1.6 katına çıkar */
    text-align: center;
}

    .btn-teklif:hover {
        background-color: #4caf50; /* Hover efekti için daha koyu yeşil */
        transform: translateY(-2px);
    }

    .btn-teklif:focus {
        outline: none;
    }
.btn-izinler {
    background-color: #66bb6a; /* Yeşil tonları */
    color: white;
    border: none;
    padding: 15px 48px; /* Uzunluğu artır */
    font-size: 25px; /* Yazı boyutunu büyüt */
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s, transform 0.3s;
    width: calc(531px * 1.6); /* Buton genişliğini 1.6 katına çıkar */
    text-align: center;
}

    .btn-teklif:hover {
        background-color: #4caf50; /* Hover efekti için daha koyu yeşil */
        transform: translateY(-2px);
    }

    .btn-teklif:focus {
        outline: none;
    }

/* Geniş butonlar (Sayfayı tamamen kaplayanlar) */
.wide-button {
    background-color: #171616; /* Daha koyu bir yeşil */
    color: white;
    border: none;
    font-size: 20px; /* Yazı boyutunu artır */
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    padding: 15px 20px;
    width: 100vw; /* Buton genişliği tarayıcı genişliğine eşit */
    max-width: 100%; /* Tam genişlikte kalması için */
    margin: 0.5px 0; /* Üst ve alt aralık */
    box-sizing: border-box; /* Padding dahil genişlik hesaplanır */
    text-align: center; /* Yazıyı ortalar */
}

    .wide-button:hover {
        background-color: #3b8f3b; /* Hover efekti için daha koyu ton */
    }

    .wide-button:focus {
        outline: none;
    }
.social-icons {
    display: flex;
    justify-content: flex-end; /* İkonları yatayda ortalar */
    gap: 10px; /* İkonlar arasındaki boşluk */
    margin-top: 5px; /* Butonlarla ikonlar arasındaki boşluk */
    margin-left: 310px; /* Butonlarla ikonlar arasındaki boşluk */
}

.icon {
    width: 40px; /* İkon genişliği */
    height: 40px; /* İkon yüksekliği */
    border-radius: 50%; /* Yuvarlak görünüm */
    object-fit: cover; /* Görüntünün düzgün oturmasını sağlar */
    transition: transform 0.3s ease; /* Hover animasyonu */
    border: 2px solid #ddd; /* İkon çevresine ince bir çerçeve */
}

.icon:hover {
    transform: scale(1.1); /* Hover efektiyle %10 büyütme */
    cursor: pointer; /* Fare imlecini değiştirir */
    border-color: #007bff; /* Hover sırasında çerçeve rengi */
}
footer {
    background-color: #fff; /* container ile aynı renk */
    padding: 20px 0; /* Üst ve alt padding ile genişlik */
    background-color: rgba(220, 53, 69, 0.9);
    /*border-top: 1px solid #ddd;*/ /* Üst kenara ince bir çizgi */
}

    footer .container {
        display: flex;
        justify-content: space-between; /* Paneller arasında eşit boşluk bırakır */
        align-items: flex-start; /* Panelleri üst hizaya getirir */
        gap: 20px; /* Paneller arasındaki boşluğu ayarlamak için */
    }

    footer .col-md-4 {
        flex: 1; /* Her bir sütunun eşit genişlik almasını sağlar */
        min-width: 200px; /* Minimum genişlik ile daralma engellenir */
    }

    footer h5 {
        font-size: 1.2rem;
        font-weight: 600;
        color: white;
    }

    footer ul {
        list-style: none;
        padding-left: 0;
        line-height: 2;
    }

        footer ul li a {
            text-decoration: none;
            color: white; /* Linklerin rengi gri olacak */
        }
        footer p {
            text-decoration: none;
            color: white; /* Linklerin rengi gri olacak */
        }

            footer ul li a:hover {
                color: #4caf50; /* Hover durumunda da renk değişmeyecek */
            }

    footer .text-center {
        font-size: 0.9rem;
        color: #777;
        text-align: center;
    }

    /* Linklerin mavi olmasını engellemek için */
    footer a {
        color: white !important; /* !important kullanarak renk zorunlu kılındı */
    }
.image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.image-box {
    position: relative;
    text-align: center;
}

    .image-box img {
        width: 400px;
        height: 400px;
        object-fit: cover;
        border-radius: 8px;
    }

    .image-box p {
        margin-top: 10px;
        font-size: 1rem;
        color: #333;
    }

.side-image-box {
    position: relative;
    text-align: center;
}

    .side-image-box img {
        width: 250px;
        height: 110px;
        object-fit: cover;
        border-radius: 8px;
    }

    .side-image-box p {
        margin-top: 10px;
        font-size: 1rem;
        color: #333;
    }

.hover-text {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    font-size: 1rem;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 5px;
}

.image-box:hover .hover-text {
    opacity: 1;
}

.about-us {
    max-width: 1200px;
    margin: 50px auto; /* Sayfanın ortasında yer alır */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85); /* Hafif gri arka plan */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}

    .about-us h1 {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50; /* Koyu renk başlık */
        text-align: center;
        margin-bottom: 20px;
    }
    

    .about-us h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50; /* Koyu renk başlık */
        text-align: center;
        margin-bottom: 20px;
    }

    .about-us p {
        font-size: 1.125rem; /* Daha okunabilir boyut */
        color: #34495e; /* Daha açık gri-mavi metin */
        line-height: 1.6; /* Satır aralığını artırarak metni daha okunabilir yapar */
        margin-bottom: 20px;
        margin-inline: 50px;
    }
.contact-card {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-top: 20px;
    max-width: 500px;
    font-size: 0.95rem;
}
    .contact-card a {
        color: #2c3e50 !important;
        text-decoration: none;
        font-weight: 500;
    }

        .contact-card a:hover {
            color: #dc3545 !important;
        }

    .contact-card h5 {
        font-size: 1.5em;
        margin: 10px 0;
        color: #2c3e50; /* daha okunabilir koyu ton */
    }
    .contact-card p {
        margin: 10px 0;
        color: #2c3e50; /* daha okunabilir koyu ton */
    }

    .contact-card i {
        color: #dc3545; /* ikonları kırmızı bırakıyoruz */
        margin-right: 6px;
    }


@media (min-width: 768px) {
    .about-us {
        padding: 40px;
    }

        .about-us h1 {
            font-size: 3rem;
        }

        .about-us p {
            font-size: 1.25rem;
        }
}
.selectable-image {
    position: relative;
    width: 300px;
    height: 300px;
}

    .selectable-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hover-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px;
    display: none;
}

.selectable-image:hover .hover-text {
    display: block;
}

.main-image-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

#main-image {
    width: 600px;
    height: 600px;
    object-fit: contain;
}

#other-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#other-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
}

#other-images img:hover {
    opacity: 0.7;
}
.contact-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

    .contact-container h2 {
        text-align: center;
        margin-top: -13px;
        margin-bottom: 15px;
        font-size: 28px;
    }

.form-control {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
}

.btn-reserve-contact {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #66bb6a;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-reserve-contact:hover {
        background-color: #4caf50;
    }

.message-status {
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}
/* Carousel item image styling */
.carousel-item img {
    width: 1600px;
    height: 700px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: none !important;
}

/* Styling for carousel controls (arrows) */
.carousel-control-prev, .carousel-control-next {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for better visibility */
    border-radius: 50%; /* Make the arrows round */
    width: 750px; /* Increase size */
    height: 750px; /* Increase size */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: white; /* White background for visibility */
    border-radius: 50%;
    display: block;
}

    .carousel-control-prev-icon::after {
        content: '<'; /* Left arrow */
        font-size: 20px;
        color: #007bff;
    }

    .carousel-control-next-icon::after {
        content: '>'; /* Right arrow */
        font-size: 20px;
        color: #007bff;
    }

/* Page indicators in the bottom right corner */
.carousel-indicators {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 1;
}

    .carousel-indicators li {
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%; /* Make the dots round */
        width: 12px; /* Adjust the size of dots */
        height: 12px; /* Adjust the size of dots */
    }

    .carousel-indicators .active {
        background-color: #007bff; /* Highlight the active dot */
    }

/* Büyük resim ve arka plan için kapsayıcı */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

/* Büyük resim */
#main-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    z-index: 10001;
}

/* Çarpı işareti */
#close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10002;
}

/* Sağ ve sol ok tuşları */
.navigation-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10002;
}

#prev-btn {
    left: 20px;
}

#next-btn {
    right: 20px;
}

/* Resim animasyonu ve hover efekti */
.selectable-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .selectable-image img:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        cursor: pointer;
    }

/* Resim kapsayıcı */
.image-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.hover-text {
    display: none;
}

#main-image.zoomed {
    transform: scale(2); /* Resmi 2 kat büyüt */
    cursor: zoom-out;
    transition: transform 0.3s ease;
}

/* Cursor büyüteç işareti (hover sırasında) */
#main-image:not(.zoomed):hover {
    cursor: zoom-in;
}
/**/
/* Büyük resim */
/* Resim animasyonu ve hover efekti */

.index-selectable-image img {
    width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .index-selectable-image img:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        cursor: pointer;
    }

.index-selectable-image p {
    text-align: center; /* Yazıyı ortala */
    margin-top: 10px; /* Üstten biraz boşluk bırak */
}

/* Resim kapsayıcı */
.index-image-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.index-hover-text {
    display: none;
}

#index-main-image.zoomed {
    transform: scale(2); /* Resmi 2 kat büyüt */
    cursor: zoom-out;
    transition: transform 0.3s ease;
}

/* Cursor büyüteç işareti (hover sırasında) */
#index-main-image:not(.zoomed):hover {
    cursor: zoom-in;
}
.top-bar .container-fluid {
    padding-left: 70px;
    padding-right: 0;
}
.top-bar {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600; /* Kalınlık */
    font-size: 0.9rem; /* Orta boy */
    letter-spacing: 0.03em; /* Harf arası hafif boşluk */
    background-color: #dc3545;
    color: white;
    padding: 0.4rem 0; /* Yatay boşluk biraz az */
}

    .top-bar .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        justify-content: flex-start; /* sola yasla */
    }

    .top-bar div, .top-bar a {
        display: flex;
        align-items: center;
        gap: 0.4rem; /* ikon ile metin arası */
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .top-bar a:hover {
            color: #ffc107; /* hover’da modern sarı ton */
        }

    .top-bar i {
        font-size: 1.2rem;
        color: #ffc107; /* ikonlar sarı */
    }

/* Responsive küçültme için */
@media (max-width: 576px) {
    .top-bar .container {
        justify-content: center;
        gap: 1rem;
        font-size: 0.85rem;
    }
}


.text-primary {
}

.hero-section {
    position: relative;
    width: 100vw;
    height: 700px;
/*    background-image: url('/images/Background.jpeg');*/
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}


    /* Karanlık filtre (isteğe bağlı) */
    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /*background: rgba(0, 0, 0, 0.4); *//* saydam siyah katman */
    }

    .hero-section .container {
        position: relative;
        z-index: 2;
        display: flex; /* flex aktif et */
        flex-direction: column; /* alt alta diz */
        justify-content: center; /* dikey ortalama (isteğe bağlı) */
        height: 100%; /* container yüksekliği hero-section yüksekliği kadar olsun */

    }

    /* Yazı gölgeleri */
    .hero-section h1, .hero-section p {
        text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
    }

/* Bilgi kartı simgeleri */
.info-cards i {
    font-size: 48px;
}
.info-cards .row > .col-md-4:nth-child(1),
.info-cards .row > .col-md-4:nth-child(2),
.info-cards .row > .col-md-4:nth-child(3) {
    position: relative;
    transform: translateY(-125px);
    z-index: 2;
}
#teklifBox {
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.insurance-section {
    background-color: rgba(37, 56, 103, 0.85);
    border-radius: 20px;
    padding: 50px 30px;
    margin: 40px auto;
    color: #fff;
    max-width: 95%;
}

.section-title {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

.insurance-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.insurance-card {
    background-color: #ffffff;
    color: #001f3f;
    border-radius: 15px;
    padding: 30px 20px;
    width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .insurance-card img {
        height: 50px;
        margin-bottom: 15px;
        filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
    }

    .insurance-card p {
        font-weight: 600;
        font-size: 1.05rem;
        margin: 0;
    }

    .insurance-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }
.insurance-row {
    display: flex;
    flex-wrap: wrap; /* Satırda taşma varsa alt satıra geç */
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.insurance-card-link {
    text-decoration: none;
    color: inherit; /* Karttaki yazının rengi değişmesin */
}

    .insurance-card-link:hover {
        color: inherit;
    }
.navbar-nav .nav-link {
    margin: 0 8px;
    max-width:200px;
    transition: all 0.2s ease;
}

    .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
    }
