html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
/* Ana Sayfa Efektleri */
.dest-card img {
    transition: transform 0.5s ease;
}

.dest-card:hover img {
    transform: scale(1.05);
}

.tour-card {
    transition: all 0.3s ease;
}

    .tour-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
    }

.tracking-wider {
    letter-spacing: 2px;
}
#heroCarousel .carousel-item {
    transition: transform 0.8s ease-in-out; /* Varsayılan 0.6s'dir, 0.8s daha tok bir kayma sağlar */
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.navbar {
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand img {
    max-height: 40px;
}

.nav-link {
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

    .nav-link:hover {
        color: #0d6efd;
    }

.footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 60px 0 30px;
}

    .footer a {
        color: #adb5bd;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer a:hover {
            color: #fff;
        }

.btn-primary {
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 500;
}
/* Statik sayfa içindeki HTML elementlerini güzelleştirelim */
.static-page-content h1,
.static-page-content h2,
.static-page-content h3 {
    font-weight: bold;
    color: #0d6efd; /* Primary renk */
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.static-page-content p {
    margin-bottom: 1.5rem;
}

.static-page-content ul,
.static-page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.static-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem 0;
}