﻿@layer utilities {
    .content-auto {
        content-visibility: auto;
    }

    .text-shadow {
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .text-shadow-lg {
        text-shadow: 0 4px 8px rgba(0,0,0,0.25);
    }

    .transition-navbar {
        transition: background-color 0.3s,padding 0.3s,box-shadow 0.3s;
    }

    .card-hover {
        transition: transform 0.3s,box-shadow 0.3s;
    }

        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1),0 10px 10px -5px rgba(0,0,0,0.04);
        }

    .scrollbar-hide {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }

    .search-expand-enter {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

        .search-expand-enter.active {
            max-height: 800px;
        }

    .scrollbar-hide {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }

    .image-zoom {
        transition: transform 0.5s ease;
    }

        .image-zoom:hover {
            transform: scale(1.02);
        }

    .tab-active {
        border-color: theme('colors.primary');
        color: theme('colors.primary');
        font-weight: 500;
    }

    .text-balance {
        text-wrap: balance;
    }

    .article-image {
        @apply rounded-xl overflow-hidden shadow-md my-8;
    }

    .quote-block {
        @apply border-l-4 border-primary pl-4 italic my-6 text-gray-700;
    }
}
@layer components {
    .popup {
        @apply fixed inset-0 flex items-center justify-center bg-black bg-opacity-50;
    }

    .popup-content {
        @apply bg-white p-6 rounded shadow-lg;
    }
}
img.logo {
    height: 32px;
}

img.logo2 {
    height: 28px;
}
