﻿/* The container now stacks items vertically */
.tiger-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    text-decoration: none;
    transition: transform 0.35s ease;
}

/* The Arrow (Upside down V) */
.tiger-link::before {
    content: '';
    width: 15px;
    height: 15px;
    border-top: 3px solid #777; /* Adjust color as needed */
    border-left: 3px solid #777;
    transform: rotate(45deg);
    margin-bottom: -6px;
    margin-top: 12px;
}

/* The Tiger Image */
.tiger {
    display: block;
    width: 10%; /* Adjust based on your preference */
    height: 10%; /* Adjust based on 
    min-width: 50px;

   /* The Boundary */
    border: 2px solid #777; /* Change color and thickness here */
    border-radius: 50%;        /* Forces the image/border into a circle */
    padding: 2px;             /* Space between the image and the border */
    object-fit: cover;        /* Ensures the image doesn't stretch */
    box-sizing: border-box;    /* Keeps the 150px size consistent */


    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
    transition: transform 0.35s ease, filter 0.35s ease;
}

/* The "Top" Text */
.tiger-link::after {
    content: 'TOP';
    font-family: sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #777;
    margin-top: 0px;
    margin-bottom: -4px;
}

/* Hover Effect: Moving the whole group together looks smoother */
.tiger-link:hover {
    transform: translateY(-6px);
text-shadow: none !important; 
    box-shadow: none !important;  
    text-decoration: none;
}

.tiger-link:hover .tiger {
    border-color: #ffcc00; 
    transform: scale(1.07);
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.70));
}

/* --- 11. RESPONSIVE / MOBILE --- */
@media (max-width: 768px) {

.tiger-link::before {
    border-top: 3px solid #D3D3D3; /* Adjust color as needed */
    border-left: 3px solid #D3D3D3;
}

.tiger {
    border: 2px solid #D3D3D3; /* Change color and thickness here */
}

.tiger-link::after {
    color: #D3D3D3;
}
}



