* {
    font-family: 'Poppins', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f8f8f8;
}

::-webkit-scrollbar-thumb {
    background: #d4d4d4;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a3a3a3;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#mobile-menu:not(.hidden) {
    animation: slideDown 0.3s ease-out;
}

.image-hover {
    overflow: hidden;
    position: relative;
}

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

.image-hover:hover img {
    transform: scale(1.05);
}

.line-accent {
    height: 1px;
    background: #e5e5e5;
    margin: 3rem 0;
}

.number-circle {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    color: #737373;
}

@keyframes shimmer {
    from {
        transform: translateX(-100%) skewX(-12deg);
    }

    to {
        transform: translateX(200%) skewX(-12deg);
    }
}

.animate-shimmer {
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slideInRight {
    animation: slideInRight 0.4s ease-out;
}

.animate-slideInUp {
    animation: slideInUp 0.3s ease-out;
}

@media (max-width: 640px) {
    #widget-content {
        width: calc(100vw - 2rem);
        right: 1rem;
        bottom: 5rem;
    }

    #initial-popup {
        max-width: calc(100vw - 2rem);
        right: 1rem;
    }
}

#widget-trigger {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#widget-trigger:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}