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%;
}

body {
  margin-bottom: 60px;
}


body {
    background: linear-gradient(135deg, #ffe4ec, #fff0f5);
    position: relative;
}

    body::before {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        background-image: url("https://www.transparenttextures.com/patterns/paw-print.png");
        opacity: 0.2;
        z-index: -1;
    }
/* Kart tasarım */
.card-custom {
    background: #ffffff;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
    transition: 0.3s;
}

    .card-custom:hover {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
    }

/* Buton */
.btn-pink {
    background: linear-gradient(to right, #ff85a2, #ff5c8a);
    border: none;
    color: white;
    border-radius: 15px;
    padding: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255,105,180,0.3);
}

    .btn-pink:hover {
        transform: scale(1.05);
        background: linear-gradient(to right, #ff5c8a, #ff3d74);
        box-shadow: 0 8px 18px rgba(255,105,180,0.4);
    }

/* Başlık */
.title {
    color: #ff4d88;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}



/*Responsive*/
@media(max-width: 768px) {
    h2 {
        font-size: 22px;
    }

    .card-custom {
        padding: 15px;
    }

    img {
        max-width: 100%;
    }
}

.style-info {
    background: #fff0f5;
    border-radius: 15px;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(255,105,180,0.2);
}

.card-custom {
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.paw {
    position: fixed;
    font-size: 30px;
    opacity: 0.15;
    z-index: 0;
    animation: floatPaw 12s linear infinite;
}

.paw1 {
    left: 10%;
    animation-delay: 0s;
}

.paw2 {
    left: 50%;
    animation-delay: 4s;
}

.paw3 {
    left: 80%;
    animation-delay: 8s;
}

@keyframes floatPaw {
    0% {
        top: 100%;
        transform: rotate(0deg);
    }

    100% {
        top: -10%;
        transform: rotate(360deg);
    }
}