/********** Template CSS **********/

:root {
    --primary: #1E60AA;
    --secondary: #FF4917;
    --light: #EDF1FC;
    --dark: #17224D;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }

/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

    .btn.btn-primary,
    .btn.btn-secondary {
        color: #FFFFFF;
    }

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/


.top-bar {
    height: 75px;
    padding: 0 4rem;
}


.nav-bar {
    position: relative;
    padding: 0 4.75rem;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out; 
    z-index: 9999;
    background-color: #1E60AA;
}

    
    .nav-bar.sticky-top {
        position: sticky;
        padding: 0;
        z-index: 9999; 
    }


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0; 
    color: black; 
    font-size: 17px; 
    font-weight: 650;
    text-transform: uppercase;
    outline: none;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

    /* Linkler hover veya aktif oldu�unda de�i�en renkler */
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #ff6347; /* Primary renk ile hover/aktif link rengi */
    }

/* Ekran geni�li�i 991.98px'in alt�na d��t���nde navbar'�n mobil d�zeni */
@media (max-width: 991.98px) {
    .nav-bar {
        padding: 0; /* Padding'i kald�rarak mobil uyumluluk sa�lan�yor */
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0; 
    }

    .navbar-light .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #EEEEEE; 
    }
}


@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%; 
        opacity: 0;
        visibility: hidden;
        transition: .5s; 
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%; 
        visibility: visible;
        transition: .5s;
        opacity: 1; 
    }
}


.navbar-scrolled {
    background-color: #87CEEB;
    top: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #ffffff; 
}


/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
}

    .header-carousel .container::before,
    .header-carousel .container::after,
    .page-header .container::before,
    .page-header .container::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100px;
        height: 15px;
        background: #FFFFFF;
    }

    .header-carousel .container::after,
    .page-header .container::after {
        top: 100%;
        margin-top: -15px;
    }

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

        .header-carousel .owl-carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .header-carousel .owl-carousel-item h5,
        .header-carousel .owl-carousel-item p {
            font-size: 14px !important;
            font-weight: 400 !important;
        }

        .header-carousel .owl-carousel-item h1 {
            font-size: 30px;
            font-weight: 600;
        }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin: 7px 0;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        background: transparent;
        border: 1px solid #FFFFFF;
        border-radius: 45px;
        font-size: 22px;
        transition: .5s;
    }

        .header-carousel .owl-nav .owl-prev:hover,
        .header-carousel .owl-nav .owl-next:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

/*** Service ***/
.service-item-top img {
    transition: .5s;
}

.service-item-top:hover img {
    transform: scale(1.1);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    transition: .5s;
}

    .service-carousel .owl-dot.active {
        background: var(--light);
        border-color: var(--primary);
    }

/*** Booking ***/
.video {
    position: relative;
    padding: 8rem 0 12rem 0;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/carousel-1.jpeg) center center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .video .btn-play {
        position: relative;
        box-sizing: content-box;
        display: block;
        width: 32px;
        height: 44px;
        border-radius: 50%;
        border: none;
        outline: none;
        padding: 18px 20px 18px 28px;
        margin-bottom: 4rem;
    }

        .video .btn-play:before {
            content: "";
            position: absolute;
            z-index: 0;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 100px;
            height: 100px;
            background: #FFFFFF;
            border-radius: 50%;
            animation: pulse-border 1500ms ease-out infinite;
        }

        .video .btn-play:after {
            content: "";
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 100px;
            height: 100px;
            background: #FFFFFF;
            border-radius: 50%;
            transition: all 200ms;
        }

        .video .btn-play img {
            position: relative;
            z-index: 3;
            max-width: 100%;
            width: auto;
            height: auto;
        }

        .video .btn-play span {
            display: block;
            position: relative;
            z-index: 3;
            width: 0;
            height: 0;
            border-left: 32px solid var(--primary);
            border-top: 22px solid transparent;
            border-bottom: 22px solid transparent;
        }

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: .4;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/*** Testimonial ***/
.testimonial-item {
    position: relative;
}

    .testimonial-item img {
        position: relative;
        z-index: 1;
    }

/*** Footer ***/
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 4rem 0;
}

    .footer a {
        color: var(--light);
    }

        .footer a:hover {
            color: var(--secondary);
        }

    .footer .footer-logo {
        display: flex;
        justify-content: center;
    }

        .footer .footer-logo img {
            max-width: 200px;
        }

    .footer .footer-content {
        margin-top: 2rem;
    }

    .footer .footer-social {
        margin-top: 1rem;
    }

        .footer .footer-social a {
            display: inline-block;
            margin: 0 15px;
        }

            .footer .footer-social a i {
                font-size: 20px;
                transition: .5s;
            }

            .footer .footer-social a:hover i {
                color: var(--secondary);
            }

/*** Responsive ***/
@media (max-width: 991.98px) {
    .video {
        padding: 4rem 0;
    }

        .video .btn-play {
            padding: 12px 16px 12px 22px;
        }

            .video .btn-play:before {
                width: 80px;
                height: 80px;
            }

            .video .btn-play:after {
                width: 80px;
                height: 80px;
            }
}
.custom-logo {
    max-height: 65px; /* Logonun y�ksekli�ini ayarlar, gereksiniminize g�re de�i�tirin */
    background: transparent; /* Logonun arka plan�n� �effaf yapar */
}

.text-outline {
    color: white; /* Metin rengi */
    text-shadow:
        -1px -1px 0 #000,
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000; /* Dört köşeye siyah gölge vererek dış hat oluşturur */
}


