﻿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;
}




/* ==== FOOTER TASARIM ==== */
.footer {
    background-color: #780606; /* Ana tema rengi */
    color: #f5f5f5;
    position: relative;
    z-index: 10;
}

.footer-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 15px;
}

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.footer a {
    color: #ffd1d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer a:hover {
        color: #ffffff;
        text-decoration: underline;
    }

.footer-apps img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .footer-apps img:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

.text-light-50 {
    color: rgba(255, 255, 255, 0.6);
}

.hover-scale {
    transition: transform 0.3s ease;
}

    .hover-scale:hover {
        transform: scale(1.03);
    }
